* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Arial", sans-serif;
	line-height: 1.4;
}
a {
	text-decoration: none;
	color: inherit;
}
img { max-width: 100%; }
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
.logo {
	display: flex;
	align-items: center;
	font-size: 1.8rem;
	font-weight: 700;
	margin-left: 2px;
}
.logo img {
	width: 60px;
	height: 60px;
	margin-right: 10px;
	background-color: #fff;
	border-radius: 50%;
	padding: 1px;
}
.hero {
	padding-top:20px;
	min-height: 80vh;
	display: flex;
	align-items: center;
}
.hero .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}
.hero-text {
	flex: 1;
	min-width: 300px;
	text-align: left;
	max-width: 600px;
}
.hero-text h1 {
	background: -webkit-linear-gradient(left, #fbd118, #097b3e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 3.5rem;
	margin-bottom: 20px;
}
.hero-text p {
	font-size: 1.4rem;
	margin-bottom: 30px;
}
.hero-image {
	flex: 1;
	min-width: 300px;
	text-align: center;
}
.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 60%;
	border: 1.5px solid #fbd118;
	box-shadow: 0 10px 30px #0006;
	max-height: 700px;
	object-fit: cover;
}
.btn {
	display: inline-block;
	background-color: #fbd118;
	color: #383d38;
	padding: 12px 30px;
	border-radius: 5px;
	font-weight: 700;
	transition: background 0.3s;
}
.btn:hover {
	background-color: #e6b800;
	transform: scale(1.1);
}
main {
	padding: 60px 0;
}
section {
	margin-bottom: 80px;
}
h2 {
	background: -webkit-linear-gradient(left, #fbd118, #097b3e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #000;
}
.custom-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 40px;
	color: #000;
}
.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
.card {
	background: linear-gradient(to right, #fbd118, #097b3e);
	padding: 5px;
	border-radius: 8px;
	box-shadow: 0 5px 15px #808080;
	text-align: center;
}
.card-content {
	background: #fff;
	padding: 30px;
	text-align: center;
}
.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	margin-bottom: 10px;
}
footer {
	background: linear-gradient(to right, #fbd118, #097b3e);
	text-align: center;
	padding: 30px 0;
	box-shadow: 0 -10px 15px 0 #0003;
}
footer p {
	margin-bottom: 10px;
}
.ft-ct {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
.ft-itm {
	flex: 1 1 300px;
	text-align: center;
}
.social-icon {
	margin: 0px 10px 0px 10px;
}
header {
	background: linear-gradient(to right, #fbd118, #097b3e);
    color: #fff;
    position: sticky;
	padding: 1rem 0.8rem;
	position: sticky;
	top: 0;
	z-index: 1000;
}
nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
.nav-menu {
	list-style: none;
	display: flex;
	gap: 2.5rem;
}
.nav-menu li {
	position: relative;
}
.nav-menu a {
	color: white;
	text-decoration: none;
	padding: 0.8rem 0;
	display: block;
	transition: color 0.3s;
	font-weight: bold;
}
.nav-menu a:hover {
	color: #00d4ff;
}
.dropdown-content {
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #549530;
	min-width: 160px;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
}
.dropdown:hover .dropdown-content {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown-content a {
	padding: 0.9rem 1.2rem;
	font-size: 1rem;
}
.dropdown-content a:hover {
	background-color: #19813c;
	color: #00d4ff;
}
.hamburger {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	z-index: 1100;
}
.hamburger span {
	width: 28px;
	height: 3px;
	background-color: white;
	border-radius: 3px;
	transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 10px 7.5% 30px 7.5%;
    margin-top: 60px;
}
.value-item {
    text-align: center;
    padding: 40px 25px;
    background: #F7F7F7;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.35s;
}
@media (max-width: 800px) {
	.hero {
		padding: 100px 20px;
		min-height: auto;
	}
	.hero .container {
		flex-direction: column;
		text-align: center;
	}
	.hero-text {
		text-align: center;
	}
	.hero-text h1 {
		font-size: 2.5rem;
	}
	.hero-text p {
		font-size: 1.2rem;
	}
	.hero-image {
		order: -1;
		margin-bottom: 30px;
	}
	.h2c {
		font-size: 30px;
	}
	.h3c {
		font-size: 16px;
	}
	.ft-itm {
		flex: 1 1 100%;
	}
	.hamburger {
		display: flex;
	}
	.nav-menu {
		position: fixed;
		inset: 0;
		width: 100vw;
		height: 100vh;
		background: linear-gradient(to right, #fbd118, #097b3e);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		transform: translateX(100%);
		transition: transform 0.4s ease-in-out;
		z-index: 1000;
	}
	.nav-menu.active {
		transform: translateX(0);
	}
	.nav-menu li {
		width: 100%;
		max-width: 400px;
		text-align: center;
	}
	.nav-menu a {
		font-size: 1.5rem;
		padding: 1.4rem 1rem;
		display: block;
	}
	.dropdown-content {
		position: static;
		box-shadow: none;
		background-color: transparent;
		opacity: 1;
		visibility: visible;
		transform: none;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}
	.dropdown.active .dropdown-content {
		max-height: 400px;
	}
	.dropdown-content li {
		max-width: none;
	}
	.dropdown-content a {
		font-size: 1.4rem;
		padding: 1rem 2rem;
		color: #ddd;
	}
	.dropdown-content a:hover {
		color: #00d4ff;
		background: rgba(255, 255, 255, 0.08);
	}
}