@import url('https://fonts.googleapis.com/css2?family=Fleur+De+Leah&family=Lato&family=Lexend:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playpen+Sans:wght@100..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Playpen Sans", cursive;
	font-style: normal;
	color: #385469;
}

body
{
	overflow-x: hidden;
}

/*Toggle Bar*/
.toggle
{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
	font-weight: 500;
	justify-content: space-between;
}
.toggle img
{
	width: 100%;
    height: auto;
	object-fit: fill;
	position: relative;
}
.toggle_left
{
	display: flex;
	flex-wrap: wrap;
	left: 2%;
	top:10%;
	font-size: 15px;
	color: #385469;
	justify-content: left;
	position: absolute;
}
.toggle_right
{
	display: flex;
	flex-wrap: wrap;
	right: 2%;
	top:10%;
	font-size: 15px;
	color: #385469;
	text-align: right;
	position: absolute;
}

/*Navigation Bar*/
.navbar
{
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	justify-content: space-between;
	align-items: center;
}
.category
{
    width: 160px;
    border-radius: 8px;
    border: 1px solid rgba(92, 112, 126, 0.3);
    padding: 10px 16px;
	font-size: 15px;
	font-weight: 500;
    position: relative;
    z-index: 99;
}
.nav_links
{
	display: flex;
	flex-wrap: wrap;
}
.nav_links p
{
	padding: 20px;
}
.nav_links p a
{
	text-decoration: none;
	font-weight: 500;
	font-size: 15px;
}
.navbar button
{
	width: 160px;
    border-radius: 8px;
    border: none;
    padding: 10px 16px;
	font-size: 15px;
	font-weight: 600;
    position: relative;
    z-index: 99;
	background: #f39f5f;
	color: white;
}
.navbar button:hover
{
    background-color: #ffb347;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255,145,77,0.6);
}
.navbar button i
{
	color: white;
}

/*Hero Section*/
.hero
{
	display: flex;
	flex-wrap: wrap;
	background: url("../assets/media/images/breadcrumb.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	min-height: 60vh;
	text-align: center;
	justify-content: center;
	align-items: center;
	width:100%;
	position: relative;
}
.hero_left
{
	flex: 1;
}
.hero_left img
{
	position: absolute;
	transition: all 0.6s ease;
}
.arrow
{
	bottom: 15%;
	left: 0;
}
.plane
{
	top: 10%;
	left: 15%;
	animation: rotation 4s ease infinite;
}
.doll
{
	left: 20%;
	bottom: 20%;
	animation: slide 2s ease infinite;
}
.hero_text h1
{
	font-size: 65px;
	font-weight: 500;	
	color: white;
}
.hero_text h4
{
	font-size: 25px;
	font-weight: 500;
	color: white;
}
.hero_right
{
	flex: 1;
}
.hero_right img
{
	position: absolute;
	transition: all 0.6s ease;
}
.parachute
{
	bottom: 15%;
	right: 25%;
	animation: float 6s ease-in-out infinite;
}
.cloud
{
	top: 10%;
	right: 25%;
	animation: rotation 4s ease infinite;
}
.bee
{
	top: 30%;
	right: 10%;
	animation: fly 8s linear infinite;
}
@keyframes float
{
	0
	{
		transform: translateY(0);
	}
	50%
	{
		transform: translateY(-15px);
	}
	100%
	{
		transform: translateY(0);
	}
}
@keyframes fly 
{
	0
	{
		transform: translateX(0);
	}
	50%
	{
		transform: translateX(-30px) translateY(10px);
	}
	100%
	{
		transform: translateX(0);
	}
}
@keyframes slide
{
	0
	{
		transform: translateX(0);
	}
	50%
	{
		transform: translateX(15px);
	}
	100%
	{
		transform: translateX(0);
	}
}
@keyframes rotation
{
	0
	{
		transform: rotate(0deg);
	}
	50%
	{
		transform: rotate(10deg);
	}
	100%
	{
		transform: rotate(0deg);
	}
}

/*Message Section*/
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 8%;
}

.contact-left {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
}

.contact-info {
  background-color: #f6a25e;
  color: #fff;
  border-radius: 15px 15px 0 0;
  padding: 30px;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-box p {
  font-size: 14px;
  margin: 0;
  color: #fff;
}

.info-box h3 {
  font-size: 14px;
  margin: 5px 0 0;
  font-weight: 600;
  color: #fff;
}

.info-box i {
  width: 40px;
  height: 40px;
}

.contact-info hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin: 15px 0;
}

.contact-image {
  position: relative;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.contact-image img {
  width: 100%;
  display: block;
  border-radius: 0 0 15px 15px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: #f6a25e;
  font-size: 24px;
  padding: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contact-right {
  flex: 1 1 55%;
}

.contact-right h2 {
  font-size: 38px;
  color: #32445a;
  margin-bottom: 10px;
}

.contact-right p {
  color: #666;
  margin-bottom: 25px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

input, textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: 0.3s;
}

input:focus, textarea:focus {
  border-color: #f6a25e;
  box-shadow: 0 0 0 3px rgba(246,162,94,0.2);
}

button {
  background-color: #f6a25e;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 15px 40px;
  font-size: 16px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s;
}

button i {
  color: #fff;
}
button:hover {
  background-color: #e58d3f;
}

/*Contact Section*/
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 10%;
  gap: 30px;
}

.map-container {
  flex: 1 1 500px;
  position: relative;
  height: 400px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/*Footer Section*/
.footer {
  color: #333;
  position: relative;
  padding-top: 40px;
  background: #f4eee5;
}

.footer_images
{
	flex: 1;
}
.footer_images img
{
	position: absolute;
	transition: all 0.6s ease;
}
.footer_top
{
	top:0;
	left:0;
	width:100%;
}
.footer_frame
{
	left: 2%;
	top: 16%;
	width:12%;
	animation: rotation 4s ease infinite;
}
.footer_zebra
{
	right:0;
	bottom:28%;
	width: 12%;
	animation: float 4s ease-in-out infinite;
}
.footer_bottom
{
	width: 100%;
	bottom:0;
	left: 0;
	z-index: 1;
}
.footer-top {
  padding: 20px 0;
  margin-top: 100px;
}

.contact-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-box div {
  flex: 1;
}

.icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.contact-box p {
  margin: 0;
  font-size: 14px;
}

.contact-box h4 {
  margin: 5px 0 0;
  font-size: 16px;
}

.footer-middle {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 10%;
  position: relative;
}

.footer-column {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}
.footer-column ul li p{
  font-size: 15px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #555;
  font-size: 15px;
}

.footer-column ul li a:hover {
  color: #e5a15d;
}

.footer-column ul li .social-icons i {
  display: inline-block;
  text-decoration: none;
  margin-right: 10px;
  font-size: 20px;
}
.post {
  margin-bottom: 15px;
}

.post .date {
  font-size: 13px;
  color: #e5a15d;
  margin-bottom: 5px;
}
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 16px;
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index:3;
  position:relative;
}

.footer-links a {
  margin-left: 15px;
  color: #555;
  text-decoration: none;
  z-index: 3;
}

.footer-links a:hover {
  color: #e5a15d;
}