* {
	box-sizing: border-box;
}

body.no-scroll {
	overflow: hidden;
	height: 100vh;
  }

  
body {
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	right: 0;
	font-size: 16px;
	font-family: 'Poppins', 'Lora', sans-serif;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  }

h1{
	font-size: 4rem;
	margin: 0;
	font-family: 'Nunito', sans-serif;

}
h2{
	font-size: 3rem;
	margin: 0;
	font-family: 'Nunito', sans-serif;

}
h3{
	font-size: 2.5rem;
	margin: 0;
	font-family: 'Nunito', sans-serif;

}
h4{
	font-size: 2rem;
	margin: 0;
}
h5{
	font-size: 1.5rem;
	margin: 0;
}
h6{
	font-size: 1rem;
	margin: 0;
}
p {
	font-size: 16px;
	color: #2f2f2f;
	font-weight: 400;
	line-height: 1.5;
}
ul{
	padding: 10px;
	margin: 0;
}
ul li{
	line-height: 1.5;
	color: #2f2f2f;
}

button {
	padding: 5px 10px;
	font-size: 18px;
	border-radius: 5px;
	border: 1px #ffffff solid;
	background: none;
	cursor: pointer;
}

button.button_1 {
	height: 38px;
	width: 130px;
	border: 1px white solid;
	margin: 0;
	color: white;
	font-weight: bold;
	text-align: center;
	border-radius: 20px;
}

a img:hover {
	opacity: .5;
	transition: .6;
}

button.button_1:hover {
	background: #0056a3;
	color: white;
}

/*Top Header */
.navigation {
	height: 85px;
	margin-top: 0px;
	padding: 10px 90px;
	text-align: center;
	border-radius: 20px;
	background: #004e00d6;
	margin: 10px 30px;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.brand {
	width: 7%;
	position: absolute;
	padding-left: 20px;
	float: left;
	background: #fff;
	border-radius: 10px;
	margin-top: -7px;
	padding: 5px;
	z-index: 200;
}

.brand img {
	width: 100%;
	margin-top: 0%;
}

.brand a, .brand a:visited {
	color: #2e00ab;
	text-decoration: none;
}

.nav-container {
	max-width: 100%;
	margin: 0 auto;
}

nav {
	float: left;
	width: 100%;
	margin-right: 27px;
}

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	float: right;
}
.nav-list {
  margin-top: 0.7%;
}
nav ul li {
	float: left;
	position: relative;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav ul li a,nav ul li a:visited,nav ul li h5{
	display: block;
	padding: 10px 10px;
	font-size: 16px;
	font-weight: 500;
	margin-top: 10%;
	position: relative;
	margin: 0px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav ul li.social-icon{
	left: 3%;
	position: relative;
}
 nav ul li.social-icon{
	padding: 4px 10px;
	font-size: 15px;
	margin-top: -5px;
	font-weight: 300;
	border-radius: 10px;
	background: #ff9100;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav ul li.social-icon a{
	display: inline-block;
	color: #fff;
}
nav ul li.social-icon i:hover{
	background: #0496ff;
	cursor: pointer;
}
nav ul li a {
	background: transparent;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

nav ul li h5:hover, nav ul li a:hover, nav ul li:visited:hover {
	cursor: pointer;
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
}

nav ul li a:hover, nav ul li a:visited:hover,nav ul li h5:hover {
	color: #fff;
	background: #ffa908;
	border-radius: 10px;
	padding: 10px 18px;
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
}

ul .navbar-dropdown {
	background: #006e00;
	padding: 10px;
	margin-top: 10px;
	margin-left: -20px;
	text-align: left;
}

nav ul li h5:not(:only-child):after, nav ul li a:visited:not(:only-child):after {
	padding-left: 4px;
	content: ' \025BE';
	font-size: 20px;
	float: right;
	margin-top: -4px;
}

nav ul li ul li {
	min-width: 300px;
}

nav ul li ul li a {
	padding: 15px;
	text-transform: capitalize;
	line-height: 20px;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.navbar-dropdown {
	position: absolute;
	display: none;
	padding-top: 50px;
	z-index: 1;
	box-shadow: 0 0 35px 0 rgba(0,0,0,0.25);
}

.navbar-dropdown  li a {
	padding: 10px 10px;
}

.navbar-dropdown  li a:hover {
	border-bottom: none;
}
/* Mobile navigation */

  /* Hamburger */
 
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    right: 40px;
    top: 30px;
    z-index: 1100;
    position: absolute;
}
  .hamburger span {
	background: #ffc400;
	height: 3px;
	border-radius: 3px;
	transition: 0.3s ease;
  }
  .hamburger.active span {
	background-color: #fff; /* Change to your desired color */
  }
  
  .hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
	opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
  }
/* Hide dropdowns by default */
 /* Hide dropdowns by default */
/* Hide dropdown by default */
.navbar-dropdown {
	display: none;
	list-style: none;
	padding-left: 0;
	background-color: #fff;
	position: absolute;
	z-index: 1000;
	top: 100%;
	left: 0;
	min-width: 200px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  /* Show dropdown when active */
  .has-dropdown.active .navbar-dropdown {
	display: block;
	margin-top: 20px;
  }
  .has-dropdown .navbar-dropdown {
	display: none;
	padding-left: 15px;
	transition: all 0.3s ease;
  }
  
  .has-dropdown.active .navbar-dropdown {
	display: block;
  }
  
  .dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
  }
  
  .dropdown-icon {
	font-size: 18px;
	margin-left: 8px;
	transition: transform 0.3s ease;
  }
  
  .has-dropdown.active .dropdown-icon {
	transform: rotate(45deg); /* Turns + into an X */
  }
  
/* Slide-In Side Menu */
.side-menu {
	position: fixed;
	top: 0;
	right: -100%;
	display: none;
	width: 350px;
	height: 100vh;
	background: #004e00;
	color: #fff;
	transition: 0.4s ease;
	padding: 80px 20px 20px;
	z-index: 1001;
	overflow-y: auto; /* Enables vertical scroll */
  }
  
  .side-menu.active {
	right: 0;
	display: block;
  }
  
  .side-menu ul {
	list-style: none;
  }
  
  .side-menu ul li {
	margin: 26px 0;
	text-align: left;
  }
  
  .side-menu ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	display: block;
	transition: 0.3s;
  }
  
  .side-menu ul li a:hover {
	color: #FFA500;
  }
  .side-menu .dropdown-menu {
	display: none;
	flex-direction: column;
	padding-left: 20px;
	background: #190060;
	margin-top: 16px;
  }
  
  .side-menu .dropdown.active .dropdown-menu {
	display: flex;
  }
  
  .side-menu .dropdown-toggle {
	display: flex;
	justify-content: space-between;
	cursor: pointer;
  }
  
  .side-menu .dropdown-toggle span {
	font-weight: bold;
	margin-left: 10px;
  }
  

  
  /* Overlay for menu */
  .menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	z-index: 1000;
  }
  
  .menu-overlay.active {
	display: block;
  }

header {
	position: absolute;
	z-index: 20000;
	width: 100%;
	top: 0;
	margin: 0;
	padding: 0;
}

header .head {
	background: #002;
}

nav ul li a.current {
	background: #0496ff;
	border-radius: 10px;
	color: #fff;
	box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);

}

  	/*Sticky */
.sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 250;
	box-shadow: 0 19px 38px rgba(0,0,0,0.10), 0 15px 12px rgba(0,0,0,0.02);
}

.sticky .navigation{
	margin: 0px;
	border-radius: 0px;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background: #004e00;
}
/* start home */
.link-btn{
	width: 100%;
	float: left;
	margin-top: 10px;
}
.link-btn a{
	color: #fff;
	background: #ff9100;
	border-radius: 10px;
	padding: 10px 25px;
	font-size: 1rem;
}
.link-btn a:hover{
	background: #d37700;
}


/*FlexSlider */
#FlexSlider {
	margin: 0;
	padding: 0;
	top: 0;
  }
  .slider1{
	float: left;
	width: 100%;
	height: 1000px;
	position: relative;
	z-index: 5000;
  }
  .slider1:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #020024;
		background: linear-gradient(0deg, #02002482 0%, #00004a 35%, #0e003600 100%);	
	opacity: 0.5;
	z-index: -10;
  }
  .slider1 .flex-caption {
	width: 60%;
	height: auto;
	margin-left: 30px;
	background: #004e0092;
	border-radius: 30px;
	margin-top: -30%;
	padding: 40px 100px;
  
	/* Centering with Flexbox */
	display: flex;
	flex-direction: column;
	justify-content: center;  /* Vertically center */
	align-items: left;      /* Horizontally center */
	text-align: left;
  }
  
  .slider1 .flex-caption h2 {
	color: #f3f3f3f3;
	font-size: 55px;
	font-weight: 700;
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 1;
	text-transform: capitalize;
  }
  .slider1 .flex-caption h6{
	color: #ffc400;
	font-size: 18px;
	letter-spacing: 1;
  }
  .slider1 .flex-caption h3 {
	color: #f3f3f3f3;
	font-weight: 600;
	margin-top: 10px;
	line-height: 1;
	margin-bottom: 0px;
	position: relative;
  }
  .slider1 .flex-caption h4 {
	color: #fff;
		font-weight: 400;
  }
  .slider1 .flex-caption h5 {
	color: #f3f3f3f3;
	font-size: 30px;
	font-weight: 600;
	margin: 2;
  }
  .slider1 .flex-caption p {
	color: #f3f3f3f3;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	margin: 5px 0px;
  }
  .slider1 .flex-caption .btn{
	background: none;
	display: inline;
	width: auto;
	margin-top: 26px;
	position: relative;
  }
  .slider1 .flex-caption .btn a.donation-link{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	background: none;
	border-radius: 0px;
	padding: 10px 30px;
	margin: 20px 5px;
	color: white;
	border: 1px white solid;
  }
  .slider1 .flex-caption .btn a.donation-link2{
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	background: #ffc400;
	border-radius: 0px;
	padding: 10px 30px;
	margin: 20px 5px;
	color: #000150;
	border: 1px white solid;
  }
  .slider1 .flex-caption .btn a.donation-link:hover{
	background: #c39600;
	color: #fff;
  }
  .slider1 .flex-caption .btn a.donation-link2:hover{
	background: none;
	color: #fff;
  }

/*Banner*/
.banner{
	width: 100%;
	float: left;
	border: 0px solid #fff;
	padding: 0px;
	margin-top: -80px;
	margin-bottom: -30px;
  }
  
.banner .b-cont{
	width: 100%;
	float: left;
	text-align: center;
}
.b-cont h5{
	font-size: 30px;
	color: #fff;
	font-weight: 500;
}
 .b-cont a{
	text-align: center;
	margin-top: 0px;
	background: #000269;
	color: #fff;
	font-size: 25px;
	font-weight: 500;
	padding: 10px 20px;
}
.b-cont a:hover{
	color: #fff;
	border: 2px #0056a3 solid;
	background: #0056a3;
}

  #head-flex{
	background: url(../images/services/slider_8.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 500px;
	float: left;
	width: 100%;
	position: relative;
	z-index: 5000;
  }
  #head-flex:after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #000;
	opacity: 0.4;
	z-index: -10;
  }

  #head-flex .flex-caption {
	margin-top: 250px;
	float: left;
	width: 100%;
	text-align: center;
	}

	#head-flex .flex-caption h1{
		font-size: 40px;
		font-weight: 500;
		color: #fff;
	}
	
#mu-page-breadcrumb{
	width: 100%;
	float: left;
	background: #eee;
	padding: 0px 100px;
}
#mu-page-breadcrumb .mu-page ul li{
	display: inline-block;
	margin-left: 20px;
}

#mu-page-breadcrumb .mu-page ul li a{
	color: #002;
}
#mu-page-breadcrumb .mu-page ul li a:hover{
	border-bottom: 1px #002 solid;
	color: #002;
}

#demo {
	margin-top: -130px;
	float: left;
	width: 100%;
}

.indicator {
	position: relative;
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	z-index: 5000;
	left: 50%;
}

.indicator span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	border: none;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
	animation: animate 1s linear infinite;
}

.indicator span:nth-child(1) {
	top: -30px;
	left: -30px;
	animation-delay: 0s;
}


@keyframes animate {
	0% {
		border-color: #ffffff;
		transform: translate(0,0);
	}

	100% {
		border-color: #fff;
		transform: translate(15px,15px);
	}
}

/*==================
 REQUEST  Start
====================*/
/* Container */
 /* Container for the widget */
.whatsapp-widget {
	position: fixed;
	bottom: 40%;
	right: 20px;
	z-index: 9999;
  }
  span.chat-text{
	color: #000;
	font-size: 10px;
	background: #fff;
	left: -26px;
    position: relative;
	padding: 10px;
	border-radius: 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  /* Toggle button styling */
  .whatsapp-toggle {
	position: relative;
	background-color: #25d366;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	cursor: pointer;
  }
  .whatsapp-toggle i {
	font-size: 28px;
  }
  
  /* Online dot indicator */
  .online-dot {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 12px;
	height: 12px;
	background-color: #44b700;
	border: 2px solid #fff;
	border-radius: 50%;
  }
  /* Chat box styling (hidden by default) */
.whatsapp-chat {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 320px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
  }
  
  /* Chat box visible state */
  .whatsapp-chat.open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	margin-bottom: -16px;
	right: 81px;
  }
  
  /* Keyframes for fadeDown animation */
  @keyframes fadeDown {
	0% {
	  opacity: 1;
	  transform: translateY(0);
	}
	100% {
	  opacity: 0;
	  transform: translateY(20px);
	}
  }
  
  /* Chat box closing state uses fadeDown animation */
  .whatsapp-chat.closing {
	animation: fadeDown 0.3s forwards;
  }
  
  /* Chat header styling */
  .whatsapp-header {
	background-color: #25d366;
	color: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
  }
  .header-left {
	margin-right: 10px;
  }
  
  /* Company logo styling */
  .company-logo {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	padding: 5px;
	object-fit: contain;
  }
  
  /* Header text styling */
  .header-text {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	margin-right: 10px;
  }
  .header-text .company-name {
	font-weight: bold;
  }
  .header-text .chat-prompt {
	font-size: 12px;
  }
  
  /* Close button styling */
  .close-chat {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
  }
  
  /* Welcome message styling */
  .welcome-message {
    padding: 30px 20px;
    background-color: #f2f2f2;
    color: #333;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}
  /* Input container for inline message input and send icon */
  .input-container {
	display: flex;
	align-items: center;
	padding: 10px;
  }
  .input-container .whatsapp-message {
	flex: 1;
	border: 1px solid rgba(221, 221, 221, 0.62);
	border-radius: 5px;
	padding: 8px;
	font-size: 14px;
	font-family: inherit;
	outline: none;
  }
  .input-container .whatsapp-send {
	background-color: #25d366;
	border: none;
	margin-left: 10px;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .input-container .whatsapp-send:hover {
	background-color: #1ebe5d;
  }
  .input-container .whatsapp-send i {
	font-size: 16px;
  }
.fixed_request {
	padding: 5px;
	bottom: 0;
	float: left;
	text-align: left;

}

.fixed_request a, .fixed_request span {
	z-index: 50000;
	position: fixed;
	padding: 2px 8px;
	top: 50%;
	transform: rotate(0deg);
}

.fixed_request span {
	font-size: 12px;
	margin-top: 50px;
	border-radius: 20px;
	background-color: #fff;
}

.fixed_request i {
	background: green;
	color: white;
	border-radius: 50%;
	position: fixed;
	padding: 10px;
	top: 50%;
	transform: rotate(0deg);
	font-size: 20px;
}

.fixed_request i:hover {
	color: green;
	border: 1px green solid;
	background: white;
}
/*==================
 REQUEST  END
====================*/

/*Top Content*/
.our-process-preview{
	background: #f3f3f3;
	width: 100%;
	float: left;
	padding: 30px 250px;
	margin-top: -30px;
	z-index: 4000;
}
.our-process-preview {
	padding: 60px 20px;
	background: #f9f9f9;
  }
  
  .process-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
  }
  
  .process-text {
	flex: 1 1 50%;
  }
  
  .process-text h2 {
	font-size: 28px;
	color: #2d572c;
	margin-bottom: 15px;
  }
  
  .process-text p {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 15px;
  }
  
  .process-steps {
	list-style: none;
	padding: 0;
	margin: 20px 0;
  }
  
  .process-steps li {
	margin: 8px 0;
	font-size: 16px;
	color: #444;
  }
  
  .btn-process {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 24px;
	background: #2d572c;
	margin-bottom: 10px;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	transition: 0.3s;
  }
  
  .btn-process:hover {
	background: #1b3d1a;
  }
  
  .process-video {
	flex: 1 1 45%;
  }
  
  .process-video video {
	width: 100%;
	border-radius: 10px;
	box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.process-flex {
	  flex-direction: column;
	}
  }
  
/*Our Products*/
.products {
	text-align: center;
	background-image: url("../images/services/slider_8.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 0px solid #fff;
	position: relative;
	z-index: 10;
	padding: 80px 100px;
	}
	
	.products:after{
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #002a00;
		opacity: .5;
		z-index: -10000;
	}
	.products .owl-carousel .owl-stage-outer {
		position: relative;
		overflow: hidden;
		height: 550px;
	}
	.owl-carousel .owl-stage{
		margin-top: 30px;
	}
  .products h2 {
	color: #fff;
	margin-bottom: 20px;
	font-size: 3rem;
  }
  .products h1 {
	color: #fff;
	margin-bottom: 20px;
	font-weight: 400;
	font-size: 2rem;
  }
  .products p{
	color: #fff;
  }
  .product-item {
	background: white;
	padding:5px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
  }
  
  .product-item:hover {
	transform: translateY(-5px);
  }
  
  .product-item img {
	max-width: 100%;
	height: 250px;
	border-radius: 10px;
	margin-bottom: 15px;
  }
  
  .product-item h3 {
	color: #000;
	font-size: 1.5rem;
	margin-bottom: 10px;
  }
  
  .product-item p {
	font-size: 0.95rem;
	color: #333;
	margin-bottom: 15px;
  }
  .link-btn{
	margin-top: 10px;

  }
  input.order-qty {
    padding: 10px;
    border-radius: 20px;
    border: 1px #000 solid;
    width: 54%;
}
  .link-btn button {
	background-color: #004e00;
	color: white;
	padding: 10px;
	font-size: 15px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 500;
  }
  .link-btn button:hover {
	background-color: #006e00;
  }
  
  
/*Section_ful */
#section_ful {
	margin-top: 50px;
	margin-bottom: 0px;
	padding: 20px 180px;
	float: left;
	width: 100%;
	text-align: left;
}

#section_ful h3 {
	color: #000;
	font-size: 2rem;
	text-align: center;
	font-weight: 550;
}

/* Image Container */
#section_ful img {
width: 100%;
border-radius: 20px;
}

#section_ful .section_img {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	position: relative;
	width: 50%;
	float: left;
	padding: 50px;
  }
  
  /* Main Image */
  #section_ful .section_img img:first-child {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Smaller Image (overlay or beside) */
  #section_ful .section_img img:last-child {
	width: 50%;
	position: absolute;
	bottom: -20px;
	left: -20px;
	border: 4px solid #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	z-index: 2;
  }


#section_ful .full-content {
	width: 50%;
	float: right;
	margin-top: 4%;
	margin-bottom: 10px;
}

#section_ful .full-content ul li{
	list-style:disc;
}
#section_ful h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #004e00;
}

#section_ful  .content2 {
	margin-top: 50px;
	float: left;
}

#section_ful  .content2 h3 {
	font-size: 30px;
	text-align: center;
}

.owl-web {
	width: 100%;
	float: left;
	background: #f3f3f3;
}

/*TESTIMONIALS*/
#client-and-partners{
	width: 100%;
	float: left;
	margin-top: 5%;
	background-image: url("../images/services/slider_8.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border: 0px solid #fff;
	position: relative;
	z-index: 10;
	padding: 80px 100px;
	}
	
	#client-and-partners:after{
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: #020024;
		background: linear-gradient(0deg, #020024 0%, #00004a 35%, #0e0036 100%);
		opacity: .4;
		z-index: -10000;
	}
	#customers-testimonials .owl-item {
		opacity: 0.1;
		transition: opacity 0.3s ease-in-out;
	  }
	  
	  #customers-testimonials .owl-item.center {
		opacity: 1;
	  }
	  
#client-and-partners .testimonials h3{
	text-align: center;
	font-weight: 400;
	color: #fff;
}
#client-and-partners .testimonials .item{
	margin: 20px;
	padding: 30px;
	border-radius: 20px;
	background: #f3f3f3;
}
#client-and-partners .testimonials .item h5{
	font-size: 15px;
	font-weight: 400;
	font-style: italic;
}
/* Testimonials Section */
  
  .testimonials h3 {
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 40px;
	color: #222;
  }
  
  /* Owl Carousel Item */
  #customers-testimonials .item {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease-in-out;
	min-height: 250px;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  #customers-testimonials .item:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }
  
  .shadow-effect h5 {
	font-size: 1.1rem;
	font-weight: 400;
	color: #333;
	margin-bottom: 20px;
	line-height: 1.6;
  }
  
  .shadow-effect span {
	font-weight: 500;
	font-style: italic;
	color: #1d3557;
	font-size: 0.95rem;
  }
  
  /* Owl Carousel Dots */
  .owl-theme .owl-dots {
	text-align: center;
	margin-top: 20px;
  }
  
  .owl-theme .owl-dots .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #dcdcdc;
	border-radius: 50%;
	margin: 5px;
	transition: all 0.3s ease;
  }
  
  .owl-theme .owl-dots .owl-dot.active {
	background: #1ebe5d; /* Primary accent color */
  }
  
  /* Responsive */
  @media (max-width: 768px) {
	.testimonials h3 {
	  font-size: 1.8rem;
	}
  
	.shadow-effect h5 {
	  font-size: 1rem;
	}
  }
  
/*GloneSoft Home*/
#wdc {
	width: 100%;
	float: left;
}

#wdc br {
	margin-top: 20px;
	margin-bottom: 20px;
}

#wdc .w-ac {
	width: 100%;
	float: left;
	background: #fff;
	padding: 90px;
}

#wdc .w-ac .w-ac-img {
	width: 40%;
	float: left;
}

#wdc .w-ac .w-ac-img img {
	width: 100%;
	float: left;
}

#wdc .w-ac .w-ac-content {
	width: 50%;
	float: right;
}

#wdc .w-ac .w-ac-content p {
	line-height: 1.7;
}

#wdc .w-ac .w-ac-img {
	width: 40%;
	float: left;
}

#wdc .w-ac .w-ac-img img {
	width: 100%;
}

#wdc .w-ac .w-ac-content {
	width: 50%;
	float: right;
}

#wdc .w-ac .w-ac-content p {
	line-height: 1.7;
}
	/*Second*/
#wdc .w-ac2-img {
	width: 40%;
	float: right;
}

#wdc .w-ac2-img img {
	width: 100%;
}

#wdc .content_2 {
	width: 100%;
	float: left;
	background: #f3f3f3;
	padding: 90px;
}

#wdc .w-ac-content2 {
	width: 50%;
	float: left;
	margin-top: 50px;
}

#wdc .w-ac-content2 p {
	line-height: 1.7;
}
	/*Portfolio*/
#wdc .portfolio {
	padding: 80px 10px;
	width: 100%;
	float: left;
}

#build {
	padding: 80px;
	margin: 0px;
	width: 100%;
	float: left;
	background: #f3f3f3;
}

#build .build1 {
	width: 50%;
	float: left;
}

#build .build1 h3 {
	font-size: 55px;
	font-weight: 400;
}

#build .build1 h3 span {
	color: #000269;
	font-weight: 600;
}

#build .build2 {
	width: 46%;
	float: right;
}

#build .build2 img {
	width: 100%;
	padding: 10px;
}

#build .build2 p {
	line-height: 1.5;
}

#build .build2 .build-con p {
	font-size: 25px;
}

#build .build3 {
	width: 100%;
	float: left;
}
/*Home Services*/
#service{
	margin: 0;
	background: rgb(3, 0, 34);
  }

/*home_page*/
.home_page1 {
	padding: 0px;
	margin-top: -20px;
	margin-bottom: 0px;
	text-align: center;
}

.home_page1 h2 {
	font-size: 65px;
	color: #000150;
	font-weight: 500;
	margin: 10px;
}

.home_page1 p {
	font-size: 16px;
	color: #fff;
}
/*Home-Team*/

/*ABout Us*/
#about-us{
	width: 100%;
	float: left;
	padding: 20px 180px;
}
#about-us .about{
	width: 100%;
	float: left;
}
#about-us .about .about-img{
	width: 45%;
	padding: 50px;
	float: right;
	margin-top: 0px;
}
#about-us .about .about-img img{
	width: 100%;
	border-radius: 20px;
}
#about-us .about .content-left{
	width: 50%;
	float: left;
	margin-top: 7%;
	text-align: left;
}
#about-us .about .content-left p{
	line-height: 2;
}
#about-us .about .content-left  h2{
	font-weight: 600; 
	line-height: 1;
	font-size: 2.5rem;
}
#about-us .about .content-left ul li{
	list-style:square;
	line-height: 2;
}

/*Who We Are*/
#about-us .about-left{
	width: 100%;
	float: left;
	background: #f3f3f3;
	border-radius: 20px;
	padding: 0px 30px;
}
#about-us .about-left .about-img2{
	width: 45%;
	padding: 30px;
	float: left;
	margin-top: 0px;
}
#about-us .about-left .about-img2 img{
	width: 100%;
	border-radius: 20px;
}
#about-us .about-left .content-right{
	width: 50%;
	float: right;
	margin-top: 7%;
	text-align: left;
}
#about-us .about-left .content-right p{
	line-height: 2;
}
#about-us .about-left .content-right  h2{
	font-weight: 600; 
	font-size: 2.5rem;
	line-height: 1;
}
#about-us .about-left .content-right ul li{
	list-style:square;
	line-height: 2;
}


#about-us  .about-grid-all{
	width: 100%;
	float: left;
	text-align: center;
}
#about-us .about-grid-all .mv{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
	gap: 2rem;
	text-align: left;
	margin-top: 30px;
	padding: 0px;
}
#about-us .about-grid-all .about-grid{
	background: #f1f1f17c;
	padding: 30px;
	border-radius: 20px;
}

#about-us .about-grid-all .about-grid h4{
	font-size: 30px;
	font-weight: 400;
	margin: 0px;
}

#about-us .about-grid-all .about-grid ul li{
	list-style: disc;
	line-height: 1.5;
}
.what-we-do { padding: 60px 20px; border-radius: 20px; margin-top: 20px; background: #f7f9fb;  width: 100%; float: left;}
.what-we-do h4 { text-align: center; margin-bottom: 30px;font-weight: 400; }

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.wwd-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.wwd-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.what-we-do img{ 
 width: 100%;
 border-radius: 10px;
 }
 .what-we-do .link-btn{
	margin:10px 0px;
 }
.wwd-card h3 { margin: 6px 0 8px; font-size: 1.2rem; }
.wwd-card p { color: #4a5568; }

@media (max-width: 900px) { .wwd-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .wwd-grid { grid-template-columns: 1fr; } }

/*Products*/
#products_page{
	width: 100%;
	float: left;
}
/* Container */
  .container {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	padding: 20px 0;
  }
  
  .products_page .intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 40px;
	font-size: 1.1rem;
	color: #555;
  }
  
  /* Product Grid */
  .product-page-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
  }
  
  /* Product Item */
  .product-items {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .product-items:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .product-items img {
	width: 100%;
	height: 300px;
	padding:5px;
	border-radius: 20px;
	object-fit: cover;
  }
  
  .product-items h3 {
	margin: 15px 0 10px;
	font-size: 1.5rem;
	text-align: center;
	color: #004e00;
  }
  
  .product-items p {
	font-size: 1rem;
	padding: 0 15px;
	color: #555;
	text-align: left;
	margin-bottom: 15px;
  }

.product-items ul {
	list-style: none;
	padding: 0px 20px;
	margin: 10px 0 20px;
	text-align: left;
  }
  
  .product-items ul li {
	font-size: 0.9rem;
	color: #333;
	margin: 5px 0;
  }
  
  
  /* Buttons */
  .product-items .link-btn button {
	display: inline-block;
	padding: 10px 20px;
	margin-bottom: 20px;
	text-align: center;
	background: #004e00;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	border-radius: 8px;
	transition: background 0.3s ease;
  }
  
  .product-items .link-btn button:hover {
	background: #007a00;
  }
  .season-months span.current-month {
	border: 2px solid #ff9800;
	background: #fff8e1;
	font-weight: bold;
	border-radius: 5px;
  }
  .season-months {
	display: none;
  }
  .season-text {
	font-weight: bold;
	color: #2d6a4f;
	
  }
  .product-item p{
	font-size: 12px;
  }
  .season-text.out-of-season {
	color: #d00000;
  }
  
  input.quantity-input {
    padding: 10px;
    border-radius: 20px;
    outline: none;
    border: 1px #000 solid;
}
  
small.season-note {
    margin-bottom: 20px;
    padding: 11px;
    margin: 0px 0px;
	border: 1px solid;
}
.season-note{
	background: #f6f6f6;
	border-radius: 20px;
}
.season-legend {
	margin-top: 10px;
	font-size: 14px;
	font-style: italic;
	color: #333;
	text-align: center;
  }
  
  .season-legend .legend-active {
	color: #4caf50;
	font-weight: bold;
  }
  
  .season-legend .legend-not-active {
	color: #c0392b;
	font-weight: bold;
  }
  
  .season-legend .legend-current {
	color: #ff9800;
	font-weight: bold;
  }
  .organic_order{
	text-align: center;
	padding: 50px;
  }
  .organic_order button{
	background: #ff9800;
	padding: 10px 20px;
  }
  .organic_order button:hover{
	background: #ff8c00;
	color: #fff;
  }
  /*Organic Page*/
  #organic_page{
	width: 100%;
	float: left;
	padding: 50px 100px;
  }
  .organic_all{
	width: auto;
  }
  .organic_img{
	width: 50%;
	float: right;
	padding: 30px;
  }
  .organic_img img{
	width: 100%;
	border-radius: 20px;
  }
  .organic_sec h2{
	font-size: 1.8rem;
  }
  /*Order Modal*/
  /* Popup Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 999;
	left: 0; top: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.6);
	justify-content: center;
	align-items: center;
  }
  
  .modal-content {
	background: #fff;
	padding: 20px;
	width: 90%;
	max-width: 450px;
	border-radius: 12px;
	text-align: left;
	position: relative;
  }
  
  .modal-content h3 {
	margin-bottom: 15px;
	color: #2e7d32;
	font-size: 19px;
  }
  select#productSelect,select#orderType,textarea#customMsg {
    width: 100%;
    padding: 7px;
    margin-top: 10px;
    outline: 1px #e2e2e2 solid;
}
  .close {
	position: absolute;
	top: 10px; right: 15px;
	font-size: 22px;
	cursor: pointer;

  }
  
  #availabilityMsg {
	font-weight: bold;
	margin: 8px 0;
  }
  
  #availabilityMsg.available {
	color: green;
  }
  
  #availabilityMsg.unavailable {
	color: red;
  }
  
  #sendOrder {
	margin-top: 15px;
	width: 100%;
	background: #25D366;
	color: white;
	padding: 10px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
  }
 
  /*Process*/
  p.lead {
	font-size: 1.1rem;
	color: #555;
  }
  
  .section_process {
	padding: 80px 20px;
  }
  
  .container {
	max-width: 1200px;
	margin: 0 auto;
  }
  
  .kicker {
	text-transform: uppercase;
	font-size: 0.85rem;
	font-weight: 700;
	color: #2e7d32;
	letter-spacing: 1px;
	display: block;
	margin-bottom: 10px;
  }
  
  /* =======================
	 Grid Layouts
  ======================= */
  .grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
  }
  
  @media (max-width: 900px) {
	.grid-2 {
	  grid-template-columns: 1fr;
	}
  }
  
  /* =======================
	 Tags & Pills
  ======================= */
  .tags {
	margin-top: 15px;
  }
  
  .tag {
	display: inline-block;
	background: #e8f5e9;
	color: #2e7d32;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 6px 12px;
	margin: 4px;
	border-radius: 20px;
	border: 1px solid #c8e6c9;
  }
  
  .pill {
	display: inline-block;
	background: #f1f8e9;
	color: #33691e;
	font-size: 0.9rem;
	padding: 8px 14px;
	margin: 6px 6px 0 0;
	border-radius: 25px;
  }
  
  .pill .dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #66bb6a;
	border-radius: 50%;
	margin-right: 8px;
  }
  
  /* =======================
	 Process Steps
  ======================= */
  .card {
	background: #fff;
	border-radius: 12px;
	padding: 25px 30px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  }
  
  .step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 30px;
  }
  
  .step:last-child {
	margin-bottom: 0;
  }
  
  .step .num {
	background: #2e7d32;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 20px;
	flex-shrink: 0;
  }
  
  .step h3 {
	margin-top: 0;
	font-size: 1.2rem;
  }
  .grid-2 video{
	width: 100%;
  }
  .list {
	margin: 10px 0 0 0;
	padding-left: 20px;
  }
  
  .list li {
	margin-bottom: 5px;
  }
  
  /* =======================
	 Media Sections
  ======================= */
  .media img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  /* =======================
	 Video Embed
  ======================= */
  .video-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.1);
	margin-top: 20px;
  }
  
  .video-embed video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
  }
  
  /* =======================
	 FAQs
  ======================= */
  details {
	background: #fff;
	padding: 15px 20px;
	margin: 10px 0;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
  details:hover {
	border-color: #66bb6a;
  }
  
  details summary {
	font-weight: 600;
	color: #2e7d32;
	outline: none;
  }
  
  details p {
	margin: 10px 0 0;
	color: #444;
  }
  /*Gallry*/
  /* ===== Gallery Filters ===== */
.gallery-filters {
	text-align: center;
	margin: 20px 0;
  }
  .filter-btn {
	padding: 10px 18px;
	margin: 5px;
	border: none;
	background: #f1f1f1;
	border-radius: 25px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: all 0.3s ease;
  }
  .filter-btn.active,
  .filter-btn:hover {
	background: #4caf50;
	color: #fff;
  }
  
  /* ===== Masonry Gallery Grid ===== */
  .gallery-grid {
	column-count: 3;
	column-gap: 20px;
  }
  .gallery-item {
	position: relative;
	margin-bottom: 20px;
	cursor: pointer;
	overflow: hidden;
	border-radius: 12px;
	break-inside: avoid;
	transition: transform 0.3s ease;
  }
  .gallery-item h3{
	font-size: 1.2rem;
	font-weight: 400;
  }
  .gallery-item p{
	color: #fff;
  }
  .gallery-item img {
	width: 100%;
	border-radius: 12px;
	display: block;
	transition: transform 0.3s ease;
  }
  .gallery-item:hover img {
	transform: scale(1.1);
  }
  .gallery-item .overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.6);
	color: #fff;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
  }
  .gallery-item:hover .overlay {
	transform: translateY(0);
  }
  
  /* ===== Lightbox ===== */
  .lightbox {
	display: none;
	position: fixed;
	z-index: 40000;
	padding-top: 60px;
	left: 0; top: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.9);
  }
  .lightbox-content {
	display: block;
	margin: auto;
	max-width: 80%;
	max-height: 80%;
	margin-top: 5%;
	border-radius: 12px;
  }
  .caption {
	text-align: center;
	color: #fff;
	margin-top: 10px;
  }
  .close, .prev, .next {
	position: absolute;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	user-select: none;
	transition: 0.3s;
  }
  .close { top: 20px; right: 35px; }
  .prev { top: 50%; left: 20px; transform: translateY(-50%); }
  .next { top: 50%; right: 20px; transform: translateY(-50%); }
  .close:hover, .prev:hover, .next:hover { color: #4caf50; }
  
  /* ===== Responsive ===== */
  @media (max-width: 992px) {
	.gallery-grid { column-count: 2; }
  }
  @media (max-width: 600px) {
	.gallery-grid { column-count: 1; }
  }
  
  /*Nation Delievery*/
  #nationwide {
	background: white;
	margin: 20px 0;
	width: 100%;
	float: left;
	padding:50px 100px;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  #nationwide h2 {
	color: #2e7d32;
	margin-bottom: 15px;
	font-size: 2rem;
  }
  #nationwide h3{
	font-size: 27px;
	font-weight: 400;
	margin-bottom: 20px;
  }
  #nationwide .nationwide_img{
	width: 50%;
	float: right;
	padding: 30px;
  }
  #nationwide .nationwide_img img{
	width: 100%;
	border-radius: 30px;
  }
  .delivery-info ul,
  .delivery-process ol {
	padding-left: 20px;
  }
  
  .delivery-map .regions-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	margin-top: 15px;
  }
  
  .delivery-map .regions-grid span {
	background: #e8f5e9;
	padding: 10px;
	border-radius: 6px;
	text-align: center;
	font-weight: bold;
	border: 1px solid #c8e6c9;
  }
  .process ul, ol {
	margin: 1rem 0;
	padding-left: 1.5rem;
  }
  
  .process ul li, ol li {
	margin-bottom: 0.5rem;
  }
  
  /* Call-to-Action Banner */
  .cta-banner {
	background: linear-gradient(135deg, #004e00, #007a00);
	color: #fff;
	text-align: center;
	padding: 50px 20px;
	margin-top: 50px;
	border-radius: 12px;
  }
  
  .cta-banner h2 {
	font-size: 2rem;
	margin-bottom: 15px;
  }
  
  .cta-banner p {
	font-size: 1.1rem;
	margin-bottom: 20px;
  }
  
  .cta-banner .btn {
	display: inline-block;
	padding: 12px 30px;
	background: #fff;
	color: #004e00;
	font-weight: bold;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
  }
  
  .cta-banner .btn:hover {
	background: #f1f1f1;
	transform: scale(1.05);
  }
  .cta-banner button{
	background: #ff9100;
	padding: 10px;
  }
  .cta-banner button:hover{
	background: #ff6f00;
	padding: 10px;
  }
  /* Responsive */
  @media (max-width: 768px) {
	.products h1 {
	  font-size: 2rem;
	}
	.product-item img {
	  height: 180px;
	}
  }
  .seasonal-chart{
	width: 100%;
	float: left;
	padding: 50px 100px;
	background: #f9f9f9;
  }
  .seasonal-chart h2{
	text-align: center;
  }
  .seasonal-chart table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 20px;
  }
  .seasonal-chart th, .seasonal-chart td {
	border: 1px solid #ddd;
	padding: 8px;
	text-align: center;
	font-size: 14px;
  }
  .seasonal-chart th {
	background: #28a745;
	color: #fff;
  }
  .seasonal-chart td.active {
	background: #d4edda;
	font-weight: bold;
	color: #155724;
  }
  .seasonal-chart td.not_active {
	background: #f8f9fa;
	font-weight: bold;
	color: #c0392b;
  }
  .seasonal-chart th.current-month {
	background: #ff9800 !important;
	color: #fff !important;
  }
  
  
  
  /*End Owl 2*/

  /*Team Section*/
  #team-section{
	width: 100%;
	float: left;
	padding: 50px 100px;
  }
  .team-container {
	text-align: center;
  }
  #team-section .team-grid{
	width: 30%;
	display: inline-grid;
	margin: 10px;
  }
  #team-section .team-grid .team-grid-img img{
	width: 100%;
  }
  #team-section .team-grid .team-grid-content{
	background: #eee;
	padding: 10px;
  }
  #team-section .team-grid .team-grid-content h3{
	margin: 0;
	font-size: 25px;
  }
/*home-service*/
#services {
	margin: 0;
	width: 100%;
	float: left;
	padding: 50px 180px;
	margin-top: 50px;
	background: #f3f3f3;
	position: relative;
	width: 100%;
	float: left;
	margin-bottom: -30px;
  }

  #services h2{
	text-align: center;
  }
  #services p{
	text-align: center;
	margin-bottom: 30px;
  }
  .service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
  }
  .service-content{
	width: 60%;
	float: left;
  }
  .service-item {
	text-align: center;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
  }
  .service-item:hover {
	background: #ffffff;
	transform: translateY(-8px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .service-item h3{
	font-size: 1.6rem;
	font-weight: 400;
  }
  .service-item i {
	font-size: 2.5rem;
	color: #1ebe5d; /* Primary brand color */
	margin-bottom: 1rem;
  }
  
  .service-img{
	float: right;
	width: 40%;
	margin-top: 2%;
  }
  .service-img img {
	width: 100%;
	height: 540px;
	border-radius: 8px;
	padding: 10px;
	object-fit: cover;
  }
  
/*Homepage */
#Home {
	margin: 0;
	float: left;
	width: 100%;
}

#Home .home1 {
	text-align: center;
	padding: 70px;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f3f3f3;
}

#Home .home1  h2 {
	text-align: center;
	font-size: 35px;
	float: left;
	width: 100%;
}

#Home  .home2 {
	width: 30%;
	display: inline-grid;
	border: 2px #f3f3f3f3 solid;
	background: white;
	border: 1px grey solid;
	border-radius: 10px;
	box-shadow: 5px 5px 8px grey;
	text-align: center;
	margin-left: 30px;
	padding: 10px;
	margin-bottom: 50px;
}

#Home  .home2 a h3 {
	color: #000;
}

#Home .home1 img {
	width: 100%;
	height: 200px;
}



/*Sent */

#Contact-sent {
	margin: 30px;
	text-align: center;
}

.contact-sent1 h2 {
	color: #325;
	font-size: 30px;
}

.contact-sent1  p {
	font-size: 20px;
	color: #000000;
}

.Social h3 {
	color: #325;
	font-weight: lighter;
	font-size: 30px;
}

.Social a i {
	letter-spacing: 20px;
	font-size: 30px;
	color: #01bafd;
}

.Social a i:hover {
	color: #325;
}


/*Service */
#service-page{
	width: 100%;
	float: left;
	padding: 20px 100px;
}

.serv-cont h3{
	font-size: 30px;
}
.serv-cont ul{
	padding: 10px;
}
.serv-cont ul li{
	margin-left: 20px;
	list-style: disc;
	width: auto;
	padding: 10px 20px;
	background: #eee;
	color: #000;
	margin: 10px;
	display: inline-grid;
}

.serv-detail ul{
	padding: 0px;
	text-align: center;
}
.serv-detail ul li{
	font-size: 29px;
	font-weight: 600;
	text-align: left;
	list-style:upper-alpha;
}
.serv-detail ul p{
	text-align: left;
}
.serv-detail ul .img-details{
	width: 20%;
	padding: 5px 20px;
	display: inline-block;
}
.serv-detail ul .img-details img{
	width: 100%;
	margin-bottom: -20px;
}

.home_page {
	margin-top: 60px;
	margin-bottom: 60px;
	text-align: center;
}

.home_page h3 {
	font-size: 16px;
	letter-spacing: 2px;
}

.home_page h1 {
	font-size: 35px;
	color: #000;
}

.home_page p {
	font-size: 16px;
}

/*Service All Details*/
#services-details{
	width: 100%;
	float: left;
	padding: 50px 180px;
	margin-top: 5%;
}
#services-details .sd-img{
	width: 45%;
	float: right;
	padding: 30px;
	margin-top: -6%;
}
#services-details .sd-img img{
	width: 100%;
	border-radius: 10px;
}
#services-details .sd-content h3{
	font-size: 1.8rem;
}

  
 #services-details h2 {
	font-size: 2rem;
	color: #2e00ab;
	margin-bottom: 1rem;
  }
  
  .service-list-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	padding-left: 0;
	margin-top: 1rem;
	float: left;
	width: 100%;
	background: #f0f0fa;
	padding: 20px;
	border-radius: 20px;
  }
  .services-list,
  .audience,
  .benefits {
	list-style: none;
	padding-left: 0;
	margin-top: 1rem;
  }
  
  .services-list li,
  .audience li,
  .benefits li {
	font-size: 1.1rem;
	margin-bottom: 0.9rem;
	padding-left: 1.8rem;
	position: relative;
	line-height: 1.6;
	color: #333;
  }
  
  .services-list li::before,
  .benefits li::before,
  .audience li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 18px;
	height: 18px;
  }
  
  .benefits{
	background: #ffffff86;
	padding: 20px;
	border-radius: 20px;
  }
  .services-list li .icon,
  .benefits li .icon {
	color: #2e00ab;
	margin-right: 10px;
	font-size: 1.2rem;
  }
  
  .audience li::before {
	content: '•';
	color: #2e00ab;
	font-size: 1.5rem;
	font-weight: bold;
  }

  .audience-page{
	float: left;
	width: 100%;
	margin-top: 5%;
  }

  .audience-page .ap-img{
	width: 50%;
	float: left;
	padding: 30px;
  }
  .audience-page .ap-img img{
	width: 100%;
	border-radius: 20px;
  }
 
  .audience {
   width: 50%;
   float: right;
   margin-top: 3%;
  }
  
  .audience li {
	font-size: 1.1rem;
	color: #333;
	background-color: #f6f6fc;
	border-left: 4px solid #2e00ab;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	list-style: none;
	font-weight: 500;
  }
  
  

/* Contact*/
#contact {
	margin: 0;
	padding: 80px 180px;
	top: 20%;
	width: 100%;
	background: #f0f0fa;
	float: left;
	z-index: 210;
}
#contact h3{
	font-size: 25px;
	font-weight: 500;
	margin: 0;
	text-align: left;
}

.contact {
	width: 50%;
	margin: 30px 40px;
	float: right;
	padding: 20px;
	background: #004e00;
}
.contact  h3{
	font-size: 30px;
	font-weight: 400;
	margin: 10px;
}

.contact {
	left: 90px;
}

.contact .form-btn1 span,#request-quote .form-btn2 span, .new-btn span {
	display: none;
	margin-top: 10px;
	margin-left: 40px;
	font-size: 16px;
}

.contact form span {
	color: red;
}

.new-btn {
	font-size: 16px;
	color: #fff;
}

.new-btn {
	display: inline;
}

.contact form span i {
	color: seagreen;
	font-size: 16px;
}

form  .form-btn1 button,.form-btn2 button {
	cursor: pointer;
	border: 2px #ffffff solid;
	background-color: #d38900;
	color: #fff;
	border-radius: 30px;
	-webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	-moz-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
	width: 35%;
	padding: 15px 20px;
}
form.disabled {
	pointer-events: none;
	opacity: 0.6;
  }
/* Form Inputs */

.contact form #contact-us {
	min-height: 400px;
}

.contact .form {
	outline: none;
	border: 0.5px solid #000269;
	border-radius: 15px;
	width: 100%;
	padding: 14px 10px;
	color: #000;
	font-weight: 300;
	font-size: 15px;
	margin: 10px auto;
	background: #dcffe6;
}

.contact textarea {
	max-width: 100%;
	min-width: 100%;
	max-height: 200px;
	min-height: 100px;
}
.contact label{
	color: #fff;
	font-size: 0.9rem;
	font-weight: 400;
}
.contact form input{
	color: #000150;
}

.form-btn1 {
	font-size: 20px;
	font-weight: normal;
	color: white;
	margin-top: 10px;
	height: auto;
}

.address {
	width: 40%;
	float: left;
	padding: 0px 80px;
	margin-top: 60px;
}

#contact .address h2{
	font-weight: 700;
	line-height: 1;
	font-size: 4rem;
	color: #002a00;
	margin: 0;
	text-align: left;
	margin-bottom: 20px;
}

.address span i {
	font-size: 30px;
	text-align: center;
	color: #ff9100;
	margin-right: 20px;
}

.address .address1 {
	padding:10px;
	margin-top: 30px;
}


.address .address1 p {
	letter-spacing: 2;
	line-height: 1;
	color: #000;

}

.address .address1 p span {
	font-weight: 500;
	color: #002a00;
	font-size: 16px;
}

.address .address1 h4 {
	margin-top: 10px;
	font-size: 20px;
	text-align: left;
	color: #004e00;
	font-weight: 400;
}

.address .address1 a {
	color: #ff6f00;
	font-size: 30px;
	margin-left: 20px;
}

.address .address1 a:hover {
	color: #ff9100;
}
/**End Contact **/

form  button {
	cursor: pointer;
	border: 2px #ffffff solid;
	background-color: #00ccff;
}

form button:hover {
	color: #000269;
	background-color: white;
	border: 2px #ffff solid;
}

/*FAQs*/
#faq-sec{
	width: 100%;
	float: left;
	padding: 20px 180px;
}
.fass{
	float: left;
	width: 50%;
	margin: 80px auto;
}
.fass h3{
	font-size: 1.4rem;
	margin-top: 20px;
}
.faq-section {
	margin: 60px auto;
	background: #fff;
	padding: 20px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
	width: 50%;
	float: right;
  }

  .faq-section h2 {
	font-size: 32px;
	margin-bottom: 20px;
	color: #01356f;
	text-align: center;
  }

  .accordion-item {
	border-bottom: 1px solid #ddd;
  }

  .accordion-title {
	cursor: pointer;
	padding: 15px 20px;
	background: #f9f9f9;
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 400;
	color: #01356f;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.3s;
  }

  .accordion-title:hover {
	background: #eef2f7;
  }

  .accordion-title i {
	transition: transform 0.3s;
  }

  .accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	background: #fff;
	padding: 0 20px;
	color: #333;
  }

  .accordion-content p {
	padding: 15px 0;
	margin: 0;
  }

  .accordion-item.active .accordion-content {
	max-height: 300px;
  }

  .accordion-item.active .accordion-title i {
	transform: rotate(180deg);
  }

  @media (max-width: 600px) {
	.faq-section {
	  margin: 30px 15px;
	  padding: 25px;
	}

	.accordion-title {
	  font-size: 16px;
	}
  }
/*Pop Up */
.popup-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.627);
	z-index: 99990;
  }
  
  .popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	padding: 30px 60px;
	border-radius: 30px;
	text-align: center;
  }
  
  .close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: #000;
  }
  
  .popup-content img{
	width: 60%;
	padding: 10px;
  }
  .popup-content a{
	padding: 10px 20px;
	background-color: #000150;
	border: 1px #000150 solid;
	border-radius: 10px;
	margin-left: 15px;
	color: #fff;
	font-size: 18px;
	outline: none;
	transform: translate(-50%, -50%);
	cursor: pointer;
  }
  .popup-content h2{
	font-size: 35px;
	font-weight: 600;
	line-height: 1;
	margin: 0;
	color: #000150;
  }
  .popup-content h3{
	font-size: 25px;
	margin: 0;
	padding: 20px;
	border-radius: 30px;
	color: #000;
	margin-bottom: -10px;
	font-weight: 500;
  }
  .popup-content p{
	margin-bottom: 20px;
	font-size: 20px;
  }
  .popup-content a:hover {
   color: #000150;
	background-color: #fff;
	border: 2px #000150 solid;
  }
  .popup-content button:hover{
	background: none;
	outline: none;
	border: none;
  }
  .popup-content .close{
   color: #000;
   font-size: 50px;
  }
  
  .popup-content form {
	margin-top: 20px;
  }
  
  .popup-content form span{
	color: red;
	font-size: 0.9rem;
	margin-bottom: 10px;
  }
  .popup-content input[type="email"] {
	width: 250px;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-right: 10px;
  }
  
  .popup-content button {
	padding: 10px 20px;
	background-color: #000a33;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
  }
  .popup-content button:hover{
	border: 1px #000a33 solid;
	color: #000a33;
  }
/*Request*/
.cta-banner {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 100px 20px;
	text-align: center;
	color: #fff;
	background-image: url(../images/services/slider_7.webp);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
  }
  
  .cta-banner .overlay {
	background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  .cta-content {
	max-width: 700px;
	margin: 0 auto;
  }
  
  .cta-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 600;
	color: #ffffff;
  }
  
  .cta-content p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	color: #e0e0e0;
  }
  
  .cta-btn {
	background-color: #1ebe5d;
	color: #fff;
	padding: 14px 30px;
	font-size: 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
	background-color: #159d4a;
  }
  
/*Vacancy*/
#vacancyList {
	width: 100%;
	float: left;
	padding: 20px;
	box-sizing: border-box;
}

.vacancy-list-container {
	max-width: 1200px;
	margin: 50px auto 0;
	padding: 0 20px;
	box-sizing: border-box;
}

.vacancy-list-container h2 {
	text-align: center;
	font-size: 2rem;
	color: #002b5b;
	margin-bottom: 30px;
}

.vacancy-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 25px;
}

.vacancy-container ul li{
	line-height: 2;
}
.vacancy-card {
	background: #ffffff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vacancy-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.vacancy-card h3 {
	font-size: 1.5rem;
	color: #002b5b;
	margin-top: 0;
	margin-bottom: 10px;
}

.vacancy-card p {
	margin: 8px 0;
	font-size: 0.95rem;
	color: #333;
}

.btn-apply {
	display: inline-block;
	margin-top: 12px;
	background-color: #007acc;
	color: #fff;
	padding: 10px 18px;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.3s ease;
	font-weight: bold;
}

.btn-apply:hover {
	background-color: #005fa3;
}
#vacancy {
	width: 100%;
	float: left;
	padding: 30px 180px;
	background-color: #f8f8f8;
  }
  
  .vacancy-section {
	margin-top: 20px;
  }
  
  .vacancy-text {
	width: 70%;
	float: left;
	padding: 20px;
  }
  
  .vacancy-text h2 {
	font-size: 36px;
	margin-bottom: 20px;
  }
  
  .vacancy-text p {
	font-size: 18px;
	line-height: 1.7;
	color: #333;
  }
  
  .vacancy-wrapper{
	width: 30%;
	float: right;
}
.vacancy-item {
	margin-top: 30px;
	background: #fff;
	padding: 15px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
	text-align: center;
  }

  .vacancy-item img {
	width: 100%;
	height: auto;
	border-radius: 8px;

  }
  
  .vacancy-item h4 {
	margin-top: 10px;
	font-size: 1.1rem;
	font-weight: bold;
  }
  
  /* Owl Carousel Nav Buttons */
  .owl-nav {
	position: absolute;
	top: 30%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	pointer-events: none;
  }
  
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
	font-size: 30px;
	color: #44b700;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	cursor: pointer;
	pointer-events: all;
	transition: all 0.3s ease;
  }
  
  .owl-nav .owl-prev:hover,
  .owl-nav .owl-next:hover {
	background: #ffa908;
	color: #fff;
  }
  

/* === Responsive Typography === */
@media (max-width: 768px) {
	.vacancy-list-container h2 {
		font-size: 1.6rem;
	}
	.vacancy-card h3 {
		font-size: 1.3rem;
	}
}

@media (max-width: 480px) {
	.vacancy-grid{
		display: block;
	}
	#vacancyList {
		padding: 12px;
	}
	.vacancy-card{
		padding: 13px;
		margin-top: 20px;
	}
	.vacancy-list-container {
		padding: 0 10px;
	}
	.vacancy-list-container h2 {
		font-size: 1.4rem;
	}
	.btn-apply {
		width: 100%;
		text-align: center;
	}		
}

	
/*scrollToTop*/
.scrollToTop {
	position: fixed;
	bottom: 60px;
	border-radius: 30px;
	right: 10px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background-color: #ff9100;
	color: #fff;
	z-index: 80000;
	display: none;
}
.scrollToTop i:hover{
color: #ffc400;
}
 /*Footer*/


ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.flex-rw {
	display: flex;
	flex-flow: row wrap;
}

footer {
	width: 100%;
	float: left;
	padding: 10px 180px;
	background: #004e00;
}

.flex-all {
	display: grid;
	grid-template-columns: 1.5fr 1.4fr 1.3fr 1fr; 
	gap: 2rem;
	margin-top: 2rem;
	align-items: start;
  }
  
.footer-list-top h4 {
	font-size: 18px;
	text-transform:capitalize;
	font-weight: 700;
	padding-bottom: 40px;
	margin: 0px;
	color: #fff;
	margin-top: 0px;
}

.footer-list-top > li a {
	width: 100%;
	text-transform: capitalize;
	color: #fff;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 30px;
	text-decoration: none;
	outline: none;
	-webkit-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: block;
}

.footer-list-top a:hover {
	text-decoration: underline;
	-webkit-transform: translateX(5px);
	-moz-transform: translateX(5px);
	-ms-transform: translateX(5px);
	-o-transform: translateX(5px);
	transform: translateX(5px);
	color: #fff;
}

.footer-list-top p {
	color: #fff;
	width: 100%;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 25px;
	margin-top: -10px;
}

.footer-list-top h5 {
	color: #fff;
	width: 100%;
	font-size: 1.2rem;
	font-weight: 400;
	line-height: 25px;
	margin-top: -10px;
	margin-bottom: 20px;
}

.footer-list-top p i {
	margin-right: 10px;
	color: #fff;
}

.footer-list-top a i {
	margin-right: 20px;
	color: orange;
	font-size: 25px;
}

.footer-list-top a i:hover {
	color: #fff;
}

.footer-list-top p i a {
	font-size: 0.9rem;
	font-weight: 400;
}

.footer-list-top p a {
	color: #fff;
}

.footer-list-top  img {
	width: 100%;
  background: #ffff;
  padding: 10px;
  border-radius: 10px;

}
.footer-list-top .newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1rem;
  }
  .footer-list-top .newsletter-form small {
	font-size: 0.85rem;
	color: #fff;
	margin-bottom: 0.5rem;
	margin-top: -20px;
  }
  
  .footer-list-top .newsletter-form input[type="email"] {
	padding: 0.6rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 0.95rem;
  }
  
  .footer-list-top .newsletter-form button {
	background-color: orange;
	color: white;
	padding: 0.6rem;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background-color 0.3s ease;
  }
  
  .footer-list-top .newsletter-form button:hover {
	background-color: #d38900;
  }

  
.footer-list-top .logo-txt p{
	font-size: 15px;
	line-height: 1.3;
}
.footer-list-anchor {
	font: 1.3em "Open Sans", sans-serif;
}

.foot3 {
	width: 100%;
	float: left;
	text-align: center;
	border-top: 2px #86868695 solid;
	margin: 0px 40px;
}

.foot3 p {
	font-size: 13px;
	font-weight:500;
	color: #ffc400;
	margin: 0px;
	width: auto;
	float: left;
	display: inline-flex;
}

.foot3 a {
	font-size: 13px;
	font-weight:500;
	color: #ffc400;
	margin-left: 10px;
	float: right;
}

.foot3 a:hover {
	border-bottom: 1px #fff solid;
	color: #fff;
}