/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Agency, Arial, Times New Roman, Verdana, sans-serif;
    background-color: #fdfe59;
    color: #333;
}

/* Fix the header at the top */
header {
    background: linear-gradient(135deg, #FCFE03, #feffb4);
    color: #000;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensure the header stays on top */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header .container {
    width: 100%;
    margin: 0 auto;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.8em;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
	text-transform: uppercase;
}

p.menu-text{
	display:none;
}

/* DROPDOWN MENU FOR SMARTPHONES START


END*/






/* START HOVER EFFECT - SQUARE AROUND MENU 

.menu {
	box-sizing: border-box;
    transition: all .35s ease;
}

.menu a {
  padding: .5em .8em;
  color: rgba(255,255,255,.5);
  position: relative;
  text-decoration: none;
  font-size: 20px;
}

.menu a::before,
.menu a::after {
  content: '';
  height: 14px;
  width: 14px;
  position: absolute;
  transition: all .35s ease;
  opacity: 0;
}

.menu a::before {
  content: '';
  right: 0;
  top: 0;
  border-top: 3px solid #3E8914;
  border-right: 3px solid #2E640F;
  transform: translate(-100%, 50%);
}

.menu a:after {
  content: '';
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #2E640F;
  border-left: 3px solid #3E8914;
  transform: translate(100%, -50%)
}

.menu a:hover:before,
.menu a:hover:after{
  transform: translate(0,0);
  opacity: 1;
}

.menu a:hover {
  color: #3DA35D;
}

END OF HOVER EFFECT */


.logo a {
	padding: 0 15px;
	text-decoration:none;
	text-shadow: 3px 2px #ffbb33;
	color: #000;
	
}

/* Hero Section */
.hero {
/*     margin-top: 100px; /* Offset the header */ */
    background: url('hero-background.jpg') no-repeat center center/cover;
    color: #fff;
/*     padding: 120px 0; */
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.4em;
    margin-bottom: 30px;
}

.cta-button {
    padding: 12px 30px;
    background-color: #FDFF19;
    color: #333;
    border: solid 1px gray;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffbb33;
}

.home {
	background: linear-gradient(135deg, #00ffff, #fff);
    padding: 0;
}

.home .section-title {
	text-shadow: 3px 2px #ffbb33;
    font-size: 2.5em;
    text-align: center;
/*     margin-bottom: 40px; */
}

/* Services Section */

.services {
	background: linear-gradient(135deg, #FCFE03, #feffb4);
	padding: 80px 0;
}

.services .section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

/* START HOVER EFFECT - LINES AROUND MENU FOR: MENU and KJ*/

.menu a, .kj {
	text-decoration: none;
    font-family: Agency, Arial, Times New Roman, sans-serif;
    font-size: 1.5rem;
    color: #010001;
    position: relative;
    display: inline-block;
}

.menu a::after, .kj::after,
.menu a::before, .kj::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #ff0000, #00ffff);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.menu a::before, .kj::before {
    top: -5px;
    transform-origin: left;
}

.menu a:hover::after, .kj:hover::after,
.menu a:hover::before, .kj:hover::before {
    transform: scaleX(1);
}

/* END OF HOVER EFFECT */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    padding: 5px 0;
}

.webheader {
	background: linear-gradient(135deg, #00ffff, #fff);
	max-width: 100%;
	height: auto;
}

.webheader img {
    opacity: 0.85;
}

.success-message {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 4px;
}

.service-item:hover {
	transform: scale(1.04); /* (104% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.service-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	transition: transform .3s; /* Animation */
}

.service-item h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 1.1em;
}

/* Projects Section */
.projects {
	background: linear-gradient(135deg, #00ffff, #fff);
    padding: 80px 0;
}

.projects .section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

/* About Section */
.about {
	background: linear-gradient(135deg, #FCFE03, #feffb4);
    padding: 80px 0;
}

.about .section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
}

/* Contact Section */
.contact {
	background: linear-gradient(135deg, #00ffff, #fff);
    padding: 80px 0;
}

.contact .section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    font-size: 1.2em;
	font-weight: 600;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 15px;
	font-family: Lobster, sans-serif;
    font-size: 1.1em;
    font-style: italic;
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 5px;
}

.contact-form .form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
	margin: auto;
    text-align: center;
    padding: 15px 30px;
    background-color: #fdff39;
    color: #000;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #b7f827bd;
}

/* Footer */
footer {
	background: linear-gradient(135deg, #FCFE03, #feffb4);
    color: #000;
/* 	text-decoration: underline; */
	font-weight: 500; 
    padding: 20px 0;
    text-align: center;
    font-size: 1em;
}

/*popup message*/
.popup {
    position: absolute;
	width: 400px;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    padding: 0 30px 30px;
    background: #4CAF50;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    visibility: hidden;
	transition: transform 0.4s, top 0.4s;
}

.open-popup {
	visibility: visible;
	top: 50%;
	transform: translate(-50%, -50%) scale(1);
}

.wrapper {
    display: block;
    padding-top: 90px;
}

.form-group {
    padding: 5px;
    display: table-caption;
}

input.btn.btn-primary, input.btn.btn-secondary.ml-2 {
    color: #000000;
    background: #fcfe06;
    padding: 5px;
    /* box-shadow: 0 0 black; */
}

input.btn.btn-primary:hover, input.btn.btn-secondary.ml-2:hover {
    background: #fdfea9;
    cursor: pointer;
}

/*LOGIN PAGE - START*/

li.login {
	background: #1bffff;
	padding: 5px;
    border-radius: 5px;
    border: solid 1px #000;
}

li.login:hover {
	background: #c9f20c;
}

h1.my-5 {
    padding-top: 90px;
    font-size: 20px;
}

.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: fgba(0 0 0 0.5);
}

.modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 500px;
	text-align: center;
	border-radius: 10px;
}
/*END*/

/*ADAPTIVE DESIGN FOR ALL SCREEN TYPES - START*/

@media (min-width: 1450px) {
	.services {
		background: linear-gradient(135deg, #00ffff, #fff);
		max-width: 100%;
	}
	.services img {
		width: -webkit-fill-available;
		width: -moz-available;
	}
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.services-grid {
		max-width: 100%;
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 35px;
	}
}

@media (max-width: 1300px) {
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.services {
		background: linear-gradient(135deg, #00ffff, #fff);
		max-width: 100%;
	}
	.services img {
		width: -webkit-fill-available;
		width: -moz-available;
	}
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.services-grid {
		max-width: 100%;
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		gap: 30px;
	}
}

@media (max-width: 1000px) {
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.services {
		background: linear-gradient(135deg, #00ffff, #fff);
		max-width: 100%;
	}
	.services-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
		gap: 25px;
	}
	.services img {
		width: -webkit-fill-available;
		width: -moz-available;
	}
	.menu a, .kj {
		font-size: 1.3rem;
	}
}

@media only screen and (max-width: 715px) {
	.menu {
		max-width: 100%;
	}
	.menu a, kj {
		font-size: 0.9rem;
	}
	p.menu-text {
		margin: 25px;
        font-weight: 700;
        padding-top: 15px;
        display: block;
	}
	ul.dropdown {
		background: #feffac;
	}
	ul li ul.dropdown li {
		display: block;
	}
	ul li ul.dropdown {
		width: 100%;
		position: absolute;
		z-index: 999;
		display: none;
	}
	ul li a:hover {
		background: #fff;
	}
	ul li:hover ul.dropdown {
		display: block;
	}
	.services img {
		width: -webkit-fill-available;
		width: -moz-available;
	}
}

@media only screen and (max-width: 480px) {
	.menu {
		max-width: 100%;
	}
	.menu a, .kj {
		font-size: 0.8rem;
	}
	.footer {
	font-size: 0.7rem;
	}
	p.menu-text {
		display: block;
	}
	ul li ul.dropdown li {
		display: block;
	}
	ul li ul.dropdown {
		width: 100%;
		position: absolute;
		z-index: 999;
		display: none;
	}
	ul li a:hover {
		background: #fff;
	}
	ul li:hover ul.dropdown {
		display: block;
	}
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.projects-item p {
		font-size: 0.60em;
	}
	.projects-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 15px;
	}
	.projects img {
		width: -webkit-fill-available
	}
	.projects .section-title {
		font-size: 2.3em;
		text-align: center;
		margin-bottom: 30px;
	}
	.service-item p {
		font-size: 0.60em;
	}
	.services-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
		gap: 15px;
	}
	.services img {
		width: -webkit-fill-available;
		width: moz-available;
	}
	.contact .section-title {
		font-size: 2.3em;
		text-align: center;
		margin-bottom: 30px;
		}
}

@media only screen and (max-width: 320px) {
	.menu {
		max-width: 100%;
	}
	.menu a, .kj {
		font-size: 0.7rem;
	}
	.footer {
	font-size: 0.7rem;
	}
	p.menu-text {
		display: block;
	}
	ul.dropdown_menu {
		display: none;
	}
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.projects-item p {
		font-size: 0.55em;
	}
	.projects-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
		gap: 12px;
	}
	.projects img {
		width: -webkit-fill-available
	}
	.projects .section-title {
		font-size: 2.0em;
		text-align: center;
		margin-bottom: 25px;
	}
	.service-item p {
		font-size: 0.55em;
	}
	.services-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(85px, 1fr));
		gap: 12px;
	}
	.services img {
		width: -webkit-fill-available;
		width: -moz-available;
	}
	.contact .section-title {
		font-size: 2.0em;
		text-align: center;
		margin-bottom: 25px;
		}
}

@media only screen and (max-width: 250px) {
	.menu {
		max-width: 100%;
	}
	.menu a, .kj {
		font-size: 0.7rem;
	}
	.footer {
	font-size: 0.7rem;
	}
	p.menu-text {
		display: block;
	}
	ul.dropdown_menu {
		display: none;
	}
	.webheader img {
		opacity: 0.85;
		max-width: 100%
	}
	.projects-item p {
		font-size: 0.45em;
	}
	.projects-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
		gap: 9px;
	}
	.projects img {
		width: -webkit-fill-available
	}
	.projects .section-title {
		font-size: 1.7em;
		text-align: center;
		margin-bottom: 20px;
	}
	.service-item p {
		font-size: 0.45em;
	}
	.services-grid {
		display: grid;
		background: #fff;
		grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
		gap: 9px;
	}
	.services img {
		width: -webkit-fill-available;
		width: moz-available;
	}
	.contact .section-title {
		font-size: 1.7em;
		text-align: center;
		margin-bottom: 20px;
		}
}

/*ADAPTIVE DESIGN FOR ALL SCREEN TYPES - END*/

/*SIGN UP PAGE - START*/



/*END*/