@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,700&display=swap');


body {
    font-family: Arial, sans-serif;
    margin: 0; padding: 0;
    background: #f9f9f9;
    color: #333;
}
.navbar { height: 120px;
    background: #378c51;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}
.navbar a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}
.navbar a:hover { text-decoration: underline; }
.container {
    width: 90%; max-width: 1000px;
    margin: 20px auto;
}
.form-container {
    background: white;
    padding: 20px;
    max-width: 500px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    
}
input, textarea, button {
    width: 100%;
    margin: 10px 0; padding: 10px;
    border: 1px solid #ccc; border-radius: 5px;
}
button {
    background: rgba(26, 160, 71, 0.703); color: white; border: none;
    cursor: pointer;
}
button:hover { background: #0066cc; }
@media(max-width: 600px){
    .navbar { flex-direction: column; text-align: center; }
}
.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.table th, .table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}
.table th { background: #f0f0f0; }

.btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 10px 0;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover { background: rgba(26, 160, 71, 0.703);}
textarea {
    min-height: 80px;
}

.table td form {
    display: block;
    margin-bottom: 10px;
}

.table td textarea {
    width: 100%;
    margin: 5px 0;
}
.footer {
    
    background:#0066cc;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left a, .nav-right a {
    margin-right: 15px;
    color: white;
}

.nav-left a:hover, .nav-right a:hover {
    text-decoration: underline;
}
body { font-family: Arial; margin:0; padding:0; background:#f9f9f9; color:#333; }
/* .navbar { background:#000305; color:white; display:flex; justify-content:space-between; padding:15px; } */
.nav-left, .nav-right { display:flex; align-items:center; }
.nav-left a, .nav-right a { color:white; margin-right:15px; text-decoration:none; }
.nav-left a:hover, .nav-right a:hover { text-decoration:underline; }

.container { width:90%; max-width:1000px; margin:20px auto; }
/* .form-container { background:white; padding:20px; max-width:500px; margin:20px auto; border-radius:10px; box-shadow:0 2px 6px rgba(0,0,0,0.2); } */
input, textarea, button { width:100%; margin:10px 0; padding:10px; border:1px solid #ccc; border-radius:5px; }
button {  background: rgba(26, 160, 71, 0.703); color:white; border:none; cursor:pointer; }
button:hover { background:#0066cc; }
textarea { min-height:80px; }

.table { width:100%; border-collapse: collapse; margin-top:15px; }
.table th, .table td { padding:10px; border:1px solid #ddd; text-align:left; }
.table th { background:#f0f0f0; }

.table td form { display:block; margin-bottom:10px; }
.table td textarea { width:100%; margin:5px 0; }

.btn { display:inline-block; padding:8px 12px; background:#0066cc; color:white; text-decoration:none; border-radius:5px; }
.btn:hover {  background: rgba(26, 160, 71, 0.703); }

.footer { background:#0066cc;color:white; text-align:center; padding:15px; margin-top:40px; }

@media(max-width:600px){ .navbar { flex-direction:column; text-align:center; } }
.success { color: green; font-weight: bold; margin: 10px 0; }
.error { color: red; font-weight: bold; margin: 10px 0; }



 img {
   
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);

    /* ✨ Make it brighter & more colorful */
    filter: brightness(1.0) contrast(1.0) saturate(1.0);

    /* smooth appearance */
    transition: filter 0.5s ease;
  }

  /* Optional: hover makes it glow even more */
  img:hover {
    filter: brightness(1.0) contrast(1.2) saturate(1.4);
  }


.footer-widget-item p {
	font-size: 15px;
	line-height: 28px;
	padding-bottom: 20px;
}
.footer-social span {
	display: inline-block;
	margin: 0px 4px;
}
.footer-social span a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background: #d5d5d5;
	border-radius: 50%;
	font-size: 14px;
	color: #679509;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.footer-social span a:hover{
	background:#0066cc;
	color: #fff
}
.footer-widget-item h2 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.2;
	padding-bottom: 10px;
	margin-bottom: 10px;
	position: relative;
}
.footer-widget-item h2::after {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
	background: #dfdfdf;
	bottom: 0px;
}
.footer-widget-item h2::before {
	content: "";
	clear: both;
	display: block;
	position: absolute;
	width: 50px;
	height: 2px;
	background: #231cfc;
	bottom: 0px;
	z-index: 1;
}
.footer-widget-item ul li {
	display: block;
	line-height: 30px;
}
.footer-widget-item ul li a {
	color: #444;
	font-size: 15px;
	font-weight: 400;
	padding: 3px 0px;
	display: inline-block;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.footer-widget-item ul li a:hover{
	color: #679509;
	text-decoration: underline;
}
.footer-widget-item .app-down a {
	display: inline-block;
}
.footer-bottom {
	border-top: 1px solid #eee;
}
.footer-bottom p {
	font-size: 15px;
}
.footer-bottom p a {
	color: #333;
}
.footer-bottom p a:hover{
	color: #679509;
	text-decoration: underline;
}