* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}






.navbar {
    position: relative;
    display: flex;
    padding: 10px;
    background-color: white;
    justify-content: space-around;
    align-items: center;
    box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75);
    /* -webkit-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
    /* -moz-box-shadow: 7px 5px 15px -4px rgba(0, 0, 0, 0.75); */
}

.nav-items>ul>li {
    position: relative;
    display: inline;
    list-style: none;
    margin: 10px;
    padding: 10px 20px;
    cursor: pointer;
}

.nav-items>ul>li>a {
    color: black;
    text-decoration: none;
}

.nav-items>ul>li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0.17rem;
    background-color: rgb(255, 204, 0);
    left: 0;
    bottom: 0;
    transform-origin: 0% 100%;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-items>ul>li:hover::after {
    transform: scaleX(1);
}

.nav-logo a,
.nav-button a {
    color: white;
    list-style: none;
    text-decoration: none;
    display: flex;
}

.nav-logo {
    font-size: 32px;
}

.nav-button {
    background-color: rgb(255, 204, 0);
    border-radius: 50px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
}

.anim-layer {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: white;
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-button:hover .anim-layer {
    width: 100%;
    left: 0;
}

.nav-button:hover a {
    color: #141214;
}

.nav-button a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

#hamburger-menu,
#mobile-menu {
    display: none;
    color: rgb(255, 204, 0);
}

@media only screen and (max-width: 770px) {
    #mobile-menu {
        background-color: rgb(255, 204, 0);
        width: 100%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        transition: transform 0.3s ease;
        transform: translateX(-100%);
        z-index: 1000;
    }

    .mobile-nav-items>ul {
        padding: 0px;
    }

    .mobile-nav-items>ul>li {
        text-align: center;
        position: relative;
        list-style: none;
        margin: 10px;
        padding: 10px 20px;
        cursor: pointer;
    }

    .mobile-nav-items>ul>li>a {
        color: white;
        text-decoration: none;
    }

    .mobile-nav-items>ul>li::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 0.17rem;
        background-color: white;
        left: 0;
        bottom: 0;
        transform-origin: 0% 100%;
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .mobile-nav-items>ul>li:hover::after {
        transform: scaleX(1);
    }

    .mobile-nav-button {
        background-color: #141214;
        border-radius: 50px;
        position: relative;
        display: inline-block;
        overflow: hidden;
        cursor: pointer;
    }

    .mobile-nav-button .anim-layer {
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 100%;
        background-color: white;
        transition: width 0.3s ease, left 0.3s ease;
    }

    .mobile-nav-button:hover .anim-layer {
        width: 100%;
        left: 0;
    }

    .mobile-nav-button:hover a {
        color: #141214;
    }

    .mobile-nav-button a {
        display: block;
        padding: 10px 20px;
        color: white;
        text-decoration: none;
        position: relative;
        z-index: 1;
    }

    .nav-items>ul,
    .nav-button {
        display: none;
    }

    #hamburger-cross {
        display: block;
        color: white;
        cursor: pointer;
        font-size: 40px;
        position: absolute;
        top: 20px;
        right: 26px;
    }

    #hamburger-menu {
        display: block;
        color: rgb(255, 204, 0);
        cursor: pointer;
        font-size: 24px;
    }
}














  
  /* Modal */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6); /* Black overlay */
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    position: relative;
    border-radius: 8px;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    color: #888;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
  }
  
  /* Prevent scrolling when modal is open */
  .modal-open {
    overflow: hidden;
  }
  
  
  /* Form styling (adjust to your design) */
  form {
    display: grid;
    gap: 10px;
  }
  
  label {
    font-weight: bold;
  }
  
  input,
  button {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  button {
    background-color: rgb(255, 204, 0);
    color: white;
    border: none;
    cursor: pointer;
  }
  
  button:hover {
    background-color: rgb(255, 204, 0);
  }










/* Default styles for larger screens */
.head {
    margin-top: 12%;
    margin-left: 5%;
}

.head h1 {
    font-size: 68px;
}

.head h4 {
    width: 40%;
    color: grey;
}

.headpic {
    margin-left: 50%;
    margin-top: -24%;
}

.headpic img {
    height: 80vh;
}

/* Responsive styles for tablets and smaller screens */
@media (max-width: 1024px) {
    .head {
        margin-top: 10%;
        margin-left: 3%;
        text-align: center; /* Centering text on smaller screens */
    }

    .head h1 {
        font-size: 50px;
    }

    .head h4 {
        width: 70%; /* Increase the width of the text block */
        margin: 0 auto; /* Center the h4 text */
    }

    .headpic {
        margin-left: 0; /* Align image to the center */
        margin-top: 5%;
    }

    .headpic img {
        height: 60vh; /* Reduce image height */
    }
}

/* Responsive styles for mobile screens */
@media (max-width: 768px) {
    .head {
        margin-top: 8%;
        margin-left: 2%;
        text-align: center;
    }

    .head h1 {
        font-size: 40px;
    }

    .head h4 {
        width: 90%; /* Full-width for smaller screens */
        margin: 0 auto;
    }

    .headpic {
        margin-left: 0;
        margin-top: 5%;
    }

    .headpic img {
        height: 50vh; /* Further reduce image height */
    }
}










/* work */

.work{
    margin-left: 7%;
    margin-top: 4%;
}


.work h2{
    font-size: 40px;
}














.features {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* padding: 50px 0; */
    background-color: #fff;
}

.feature-item {
    text-align: center;
    max-width: 300px;
}

.icon {
    /* background-color: #fbd10d; Yellow background */
    border-radius: 50%;
    padding: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.icon img {
    width: 100px;
    height: 80px;
}

.feature-item p {
    font-size: 18px;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .features {
        flex-direction: column;
        padding: 20px;
    }

    .feature-item {
        margin-bottom: 30px;
    }

    .feature-item p {
        font-size: 16px;
    }

    .icon img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 10px;
    }

    .feature-item {
        max-width: 100%;
    }

    .feature-item p {
        font-size: 14px;
    }

    .icon img {
        width: 40px;
        height: 40px;
    }
}






















.wrap {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    /* background: url(https://images.unsplash.com/photo-1485069203392-8e1aeb1ebf02?auto=format&fit=crop&w=1054&q=80&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D) center no-repeat; */
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
  }
  
  .wrap:after {
    content:'';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(0,0,0,.5); */
  }
  
  .slider {
    position: relative;
    z-index: 200;
    padding: 0 0px;
    margin: 5rem auto;
    max-width: 800px;
    width: 100%;
  }
  
  .slick-arrow {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    border: none;
    background: transparent;
    color: black;
    font-family: monospace;
    font-size: 5rem;
    z-index: 300;
    outline: none;
  }
  
  .slick-prev {
    left: -50px;
    text-align: left;
  }
  
  .slick-next {
    right: -50px;
    text-align: right;
  }
  
  
  
  .item.slick-slide {
    width: 400px;
    height: 400px !important;
    transition: transform .4s;
    position: relative; 
  }
  
  .slick-slide:after {
    content:'';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.5);
    transition: transform .4s;
  }
  
  .item.slick-slide {
    transform: scale(0.7)  translate(640px);
  }
  
  .item.slick-slide.slick-center + .slick-slide {
    transform: scale(0.8) translate(-250px);
    z-index: 10;
  }
  
  .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
    transform: scale(0.7)  translate(-640px);
    z-index: 5;
  }
  
  .item.slick-slide.slick-active {
    transform: scale(0.8) translate(250px);
  }
  
  .item.slick-slide.slick-center {
    /* margin: 0 -10%; */
    transform: scale(1);
    z-index: 30;
  }
  
  .slick-center:after {
    opacity: 0;
  }








  .work1{
    margin-left: 35%;
    margin-top: 4%;
}


.work1 h2{
    font-size: 40px;
}
























.content-wrapper {
	height: 100%;
	width: 70%;
	max-width: 100rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5rem;
    margin-left: 15%;
    margin-top: 2%;
}

h1 {
	margin-bottom: calc(0.7rem + 0.5vmin);
	font-size: calc(2.3rem + 1vmin);
}



.wrapper-for-arrows {
	position: relative;
	width: 70%;
	border-radius: 2rem;
	/* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
	overflow: hidden;
	display: grid;
	place-items: center;
}

.review-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: calc(2rem + 1vmin);
	width: 100%;
}

#imgDiv {
	border-radius: 50%;
	width: calc(6rem + 4vmin);
	height: calc(6rem + 4vmin);
	position: relative;
	box-shadow: 5px -3px rgb(255, 204, 0);
	background-size: cover;
	margin-bottom: calc(0.7rem + 0.5vmin);
}

/* .chicken {
	background-image: url("https://media0.giphy.com/media/A8Cdznswn5vnG/200w.gif?cid=790b7611e8c5980ee7141bc18ec12c49962b871eb404ba5b&rid=200w.gif&ct=s");
	width: 200px;
	height: 250px;
	position: absolute;
	top: 12%;
} */

#imgDiv::after {
	content: "''";
	font-size: calc(2rem + 2vmin);
	font-family: sans-serif;
	line-height: 150%;
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background-color:rgb(255, 204, 0);
	position: absolute;
	top: 10%;
	left: -10%;
	width: calc(2rem + 2vmin);
	height: calc(2rem + 2vmin);
}

#personName {
	margin-bottom: calc(0.7rem + 0.5vmin);
	font-size: calc(1rem + 0.5vmin);
	letter-spacing: calc(0.1rem + 0.1vmin);
	font-weight: bold;
}

#profession {
	font-size: calc(0.8rem + 0.3vmin);
	margin-bottom: calc(0.7rem + 0.5vmin);
	color: rgb(255, 204, 0);
}

#description {
	font-size: calc(0.8rem + 0.3vmin);
	width: 70%;
	max-width: 40rem;
	text-align: center;
	margin-bottom: calc(1.4rem + 1vmin);
	color: rgb(92, 92, 92);
	line-height: 2rem;
}

.arrow-wrap {
	position: absolute;
	top: 50%;
}

.arrow {
	width: calc(1.4rem + 0.6vmin);
	height: calc(1.4rem + 0.6vmin);
	border: solid rgb(255, 204, 0);
	border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0;
	cursor: pointer;
	transition: transform 0.3s;
}

.arrow:hover {
	transition: 0.3s;
	transform: scale(1.15);
}

.left-arrow-wrap {
	left: 5%;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	right: 5%;
}

.surprise-me-btn {
	border: 2px solid rgb(255, 204, 0);
	background-color: rgb(224, 238, 255);
	color: rgb(255, 204, 0);
	border-radius: 2rem;
	padding: calc(0.5rem + 0.2vmin) 0;
	width: calc(7rem + 5vmin);
	text-align: center;
	transition: background-color 0.3s, transform 0.3s;
	cursor: pointer;
	margin-bottom: calc(1.4rem + 1vmin);
}

.surprise-me-btn:hover {
	transition: background-color 0.3s, transform 0.3s;
	background-color: rgb(255, 255, 255);
	transform: rotate(5deg);
}

.move-head {
	animation: moveHead 1.55s infinite;
	animation-delay: -0.8s;
}

.hide-chicken-btn {
	border: 2px solid rgb(226, 89, 79);
	background-color: rgb(255, 224, 224);
	color: rgb(226, 79, 79);
	border-radius: 2rem;
	padding: calc(0.5rem + 0.2vmin) 0;
	width: calc(10rem + 5vmin);
	text-align: center;
	transition: background-color 0.3s, transform 0.3s;
	cursor: pointer;
	margin-bottom: calc(1.4rem + 1vmin);
}

.hide-chicken-btn:hover {
	transition: background-color 0.3s, transform 0.3s;
	background-color: rgb(255, 255, 255);
	transform: rotate(5deg);
}

@keyframes moveHead {
	0% {
	}
	25% {
		transform: translate(0.5rem, 1rem) rotate(5deg);
	}
	100% {
		transform: translate(0, 0) rotate(-5deg);
	}
}

@media screen and (max-width: 900px) {
	.content-wrapper {
		width: 100%;
	}
}



























.benefits-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
}

.benefits-section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #666;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit-item {
    flex: 1 1 45%;
    margin-bottom: 40px;
}

.benefit-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards ease-out;
}

.benefit img {
    width: 50px;
    height: 50px;
}

.benefit-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.benefit-info p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefits-container {
        flex-direction: column;
    }

    .benefit-item {
        flex: 1 1 100%;
    }
}

/* Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}















/* footer */


footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    margin: 10px;
    min-width: 150px;
    text-align: center;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-column a {
    display: block;
    margin: 10px 0;
    color: #fff;
    text-decoration: none;
}

.footer-column img {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.social-media a {
    display: inline-block;
    margin: 5px;
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background-color: #111;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        margin: 10px 0;
        text-align: center;
    }
}