
    
body {
    overflow-x: hidden;
  }
  


@media screen and (max-width: 308px) {
    section {
        width: 50%;
      }
    section .main {
      flex-direction: column;
      top: 100px;
      body {
        overflow-x: hidden;
      }
    }
  
    section .main .men_text h1 {
      font-size: 40px;
      top: 0;
      left: 0;
      text-align: center;
      margin-top: 50px;
    }
  
    section .main .main_image img {
      width: 80%;
      margin-top: 50px;
    }
  
    section p {
      width: 80%;
      left: 0;
      bottom: 0;
      margin-top: 50px;
      margin-bottom: 50px;
    }
  
    section .main_btn {
      left: 0;
      bottom: 0;
      margin-top: 50px;
      margin-bottom: 50px;
    }
  }
  
  @media screen and (max-width: 768px) {
    section nav ul li {
      margin: 0 10px;
      
    }
    section {
        width: 60%;
      }
    section nav ul li a {
      font-size: 14px;
    }
  
    section .main_btn {
      padding: 10px 20px;
      width: 120px;
    }
  
    section .main_btn a {
      font-size: 14px;
    }
  
    section .main_btn i {
      font-size: 16px;
    }
  }
  
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

html{
    scroll-behavior: smooth;
}

section {
    width: 140%; /* Adjust the width to your desired value */
    margin: 0 auto; /* Center-align the section */
  }
  

/* Add custom CSS for the responsive navigation */
section nav {
  overflow-x: hidden;
  overflow-y: hidden;

  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  background: #1e3f46;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  height: 118px;
  width: 99.9%;
  margin: 0;
  color: #070707;
  transition: top 0.3s; /* Add a transition for smooth movement */
}

section nav.sticky {
  top: -90px; /* Move the navigation bar off-screen when scrolling down */
}

section nav.show {
  top: 0; /* Bring the navigation bar back to the top when scrolling up */
}

  
  section nav .lacu img {
    width: 10px;
    cursor: pointer;
    margin: 2px 0;
  }
  
  section nav ul {
    list-style: none;
  }
  
  section nav ul li {
    display: inline-block;
    margin: 0 10px; /* Adjust the spacing between menu items */
  }
  
  section nav ul li a {
    text-decoration: none;
    color: #f6f2f2;
    font-weight: bold;
    font-size: 14px; /* Adjust the font size */
    transition: 0.1s;
  }
  
  section nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #fac031;
    display: block;
    transition: 0.2s linear;
  }
  
  section nav ul li a:hover::after {
    width: 100%;
  }
  
  section nav ul li a:hover {
    color: #fac031;
  }
  
  section nav .icon i {
    font-size: 18px;
    color: #000;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  section nav .icon i {
    color: white;
  }
  
  section nav .icon i:hover {
    color: #fac031;
  }
  
  section .main {
    left: 40px; 
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    top: 10px;
  }
  
  section .main .men_text h1 {
    font-size: 30px;
    margin-top: 30px; /* Adjust the margin as needed */
    text-align: left;
    color: #060606; /* Text color */
  }
  
  section .main .men_text h1 span {
    margin-left: 15px;
    color: #fac031;
    font-family: mv boli;
    line-height: 57px;
    font-size: 50px;
  }
  
  section .main .main_image img {
    width: 80%;
    margin-top: 30px; /* Adjust the margin as needed */
  }
  
  section p {
    width: 80%;
    margin-top: 30px; /* Adjust the margin as needed */
    margin-bottom: 30px; /* Adjust the margin as needed */
    text-align: left;
    color: #0e0d0d; /* Text color */
  }
  
  section .main_btn {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Position the button at the left */
    margin-top: 30px; /* Adjust the margin as needed */
    margin-bottom: 30px; /* Adjust the margin as needed */
  }
  
  section .main_btn a {
    color: #fff;
    margin-right: 5px;
    text-decoration: none;
  }
  
  section .main_btn i {
    color: #fff;
    transition: 0.3s;
  }
  
  /* Additional styles for smaller screens */
  @media screen and (max-width: 308px) {
    section {
      width: 90%;
    }
  
    section .main {
      top: 100px;
    }
  
    section .main .men_text h1 {
      font-size: 40px;
      margin-top: 50px;
    }
  
    section .main .main_image img {
      margin-top: 50px;
    }
  
    section p {
      width: 90%;
      margin-top: 50px;
      margin-bottom: 50px;
    }
  
    section .main_btn {
      margin-top: 50px;
      margin-bottom: 50px;
    }
  }
  
  @media screen and (max-width: 768px) {
    section {
      width: 90%;
    }
  
    section nav ul li {
      margin: 0 12px;
    }
  
    section nav ul li a {
      font-size: 16px;
    }
  
    section .main_btn {
      padding: 10px 20px;
      width: 120px;
    }
  
    section .main_btn a {
      font-size: 14px;
    }
  
    section .main_btn i {
      font-size: 16px;
    }
  }
  

section .main_btn:hover i{
    transform: translateX(7px);
}





/*Menu*/
section {
    width: 100%;
    padding: 10px 0;
  margin-bottom: -100px; /* Adjust the negative margin-bottom value as needed */
}
    
  
.menu{
    width: 100%;
    padding: 10px 0;
}

.menu h1{
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    text-decoration: none; /* Added to remove the horizontal line */

}

.menu h1 span{
    color: #fac031;
    margin-left: 15px;
    font-family: mv boli;
    text-decoration: none; /* Added to remove the horizontal line */

}



.menu .menu_box {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
    grid-gap: 15px;
  }
  
  .menu .menu_box .menu_card {
    height: 480px;
    padding-top: 10px;
    box-shadow: 0 0 10px rgba(231, 222, 222, 0.2);
  }
  
  

.menu .menu_box .menu_card .menu_image{
    width: 300px;
    height: 245px;
    margin: 0 auto;
    overflow: hidden;
}

.menu .menu_box .menu_card .menu_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: 0.3s;
}

.menu .menu_box .menu_card .menu_image:hover img{
    transform: scale(1.1);
}

.menu .menu_box .menu_card .small_card{
    width: 45px;
    height: 45px;
    float: right;
    position: relative;
    top: -240px;
    right: -8px;
    opacity: 0;
    border-radius: 7px;
    transition: 0.3s;
}

.menu .menu_box .menu_card:hover .small_card{
    position: relative;
    top: -240px;
    right: 20px;
    opacity: 1;
}

.menu .menu_box .menu_card .small_card i{
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 50px;
    color: #cd284f;
    cursor: pointer;
    text-shadow: 0 0 6px #b1f20e;
    transition: 0.2s;
}

.menu .menu_box .menu_card .small_card i:hover{
    color: #fac031;
}

.menu .menu_box .menu_card .menu_info h2{
    width: 60%;
    text-align: center;
    margin: 10px auto 10px auto;
    font-size: 25px;
    color: #fac031;
}

.menu .menu_box .menu_card .menu_info p{
    text-align: center;
    margin-top: 8px;
    line-height: 21px;
}

.menu .menu_box .menu_card .menu_info h3{
    text-align: center;
    margin-top: 10px;
}

.menu .menu_box .menu_card .menu_info .menu_icon{
    color: #fac031;
    text-align: center;
    margin: 10px 0 10px 0;
}

.menu .menu_box .menu_card .menu_info .menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #f4f1ed;
  background: #286d48;
  padding: 8px 10px;
  margin: 0 auto; /* Adjusted to center horizontally */
  transition: 0.3s;
  font-weight: bold;
}



/*About*/

.about {
  

  @import url('https://fonts.googleapis.com/css?family=Raleway:200');

  #box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    font-family: 'Raleway';
    font-size: 1.1rem;
    background-color: rgb(4, 4, 4);
  }
  
  .gradient-border {
    --borderWidth: 3px;
    background: #1D1F20;
    position: relative;
    border-radius: var(--borderWidth);
    color: black; /* Set the text color of "About" to black */
  }
  
  .gradient-border:after {
    content: '';
    position: absolute;
    top: calc(-1 * var(--borderWidth));
    left: calc(-1 * var(--borderWidth));
    height: calc(100% + var(--borderWidth) * 2);
    width: calc(100% + var(--borderWidth) * 2);
    background: linear-gradient(60deg, #f79533, #f37055, #ef4e7b, #a166ab, #5073b8, #1098ad, #07b39b, #6fba82);
    border-radius: calc(2 * var(--borderWidth));
    z-index: -1;
    animation: animatedgradient 3s ease alternate infinite;
    background-size: 50% 50%;
    color: yellow; /* Set the text color of "Us" to yellow */
  }
  
  @keyframes animatedgradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  






    width: 30%; /* Adjust the width as needed */
    height: 60vh;
    padding: 100px 0;
    margin: 0 auto; /* Center the section horizontally */
  }
  
  .about .about_main {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 90%; /* Ensure the content doesn't exceed the section width */
    margin: 0 auto; /* Center the content horizontally */
  }
  
  .about .about_main .image img {
    max-width: 80%; /* Ensure the image fits within its container */
    height: auto; /* Maintain the image's aspect ratio */
    position: relative;
    top: 60px;
  }
  
  .about .about_main .about_text h1 span {
    color: #fac031;
    margin-right: 15px;
    font-family: mv boli;
  }
  
  .about .about_main .about_text h1 {
    font-size: 35px;
    position: relative;
    bottom: 50px;
  }
  
  .about .about_main .about_text h3 {
    font-size: 30px;
    margin: 0 0 50px 0;
  }
  
  .about .about_main .about_text p {
    width: 100%; /* Adjust the width as needed */
    max-width: 650px; /* Limit the text width */
    text-align: justify;
    margin-right: 30px;
    line-height: 22px;
  }
  
  .about .about_btn {
    background: #fac031;
    padding: 12px 25px;
    text-decoration: none;
    color: #fff;
    position: relative;
    left: 55%;
    bottom: 30px;
  }
  




/* Gallery */
.gallary {
  width: 60%;
  padding: 70px 0;
  margin: 0 auto;
  position: relative;
  top: 50px; /* Adjust the top value to bring the section downward */
  margin-left: -9px; /* Add left margin to adjust the section to the left */

}

.gallary h1 {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallary h1 span {
  margin-left: 15px;
  color: #fac031;
  font-family: mv boli;
}

.gallary h1 span::after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fac031;
  display: block;
  position: relative;
  bottom: 15px;
}

.gallary .gallary_image_box {
  width: 55%;
  margin: 10px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(325px, 1fr));
  grid-gap: 15px;
}

.gallary .gallary_image_box .gallary_image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
}

.gallary .gallary_image_box .gallary_image img {
  width: 100%;
  transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover img {
  opacity: 0.4;
}

.gallary .gallary_image_box .gallary_image h3 {
  position: absolute;
  font-size: 35px;
  margin-bottom: 130px;
  color: #fac031;
  font-family: polo;
  z-index: 5;
  opacity: 0;
  transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover h3 {
  opacity: 1;
}

.gallary .gallary_image_box .gallary_image p {
  position: absolute;
  width: 400px;
  margin-top: 30px;
  text-align: center;
  color: white;
  line-height: 22px;
  opacity: 0;
  z-index: 5;
  transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover p {
  opacity: 1;
}

.gallary .gallary_image_box .gallary_image .gallary_btn {
  position: absolute;
  margin-top: 180px;
  color: #000;
  background: #fac031;
  padding: 7px 25px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(45px);
  z-index: 5;
  transition: 0.3s;
}

.gallary .gallary_image_box .gallary_image:hover .gallary_btn {
  opacity: 1;
  transform: translateY(0);
}

  
  
  /* Review */

  .review {
    width: 80%;
    height: 100vh;
    padding: 70px 0;
    margin: 0 auto; /* Center the element horizontally */
    margin-bottom: 50px; /* Add margin at the bottom */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 560px; /* Adjust the margin-top value to bring the section downward */

  }
  
  .review h1 {
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .review h1 span {
    margin-left: 15px;
    color: #fac031;
    font-family: mv boli;
  }
  
  .review h1 span::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fac031;
    position: relative;
    bottom: 15px;
    display: block;
  }
  
  .review .review_box {
    width: 95%;
    margin: 70px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 16px;
    justify-items: center;
  }
  
  
  .review .review_box .review_card {
    height: 535px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 8px 20px;
  }
  
  .review .review_box .review_card .review_profile {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
  }
  
  .review .review_box .review_card:hover .review_profile {
    transform: translateY(-60px);
  }
  
  .review .review_box .review_card .review_profile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 5px solid #cccccc;
  }
  
  .review .review_box .review_card .review_text {
    text-align: center;
  }
  
  .review .review_box .review_card .review_text .name {
    color: #000;
    transition: 0.3s;
  }
  
  .review .review_box .review_card:hover .review_text .name {
    transform: translateY(-50px);
  }
  
  .review .review_box .review_card .review_text .review_icon {
    color: #fac031;
    transition: 0.3s;
  }
  
  .review .review_box .review_card:hover .review_text .review_icon {
    transform: translateY(-30px);
  }
  
  .review .review_box .review_card .review_text .review_social i {
    margin: 5px 1px;
    font-size: 15px;
    opacity: 0;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .review .review_box .review_card:hover .review_text .review_social i {
    opacity: 1;
    transform: translateY(-8px);
  }
  
  



p {
	--b: .7em; /* border width */
	--c: 2.5em; /* corner size */
	--r: 1.2em; /* corner rounding */
	position: relative;
	margin: 1em auto;
	border: solid var(--b) transparent;
	padding: 1em;
	max-width: 22em;
	font: 1.1em ubuntu, sans-serif;
	
	&::before {
		position: absolute;
		z-index: -1;
		inset: calc(-1*var(--b));
		border: inherit;
		border-radius: var(--r);
		background: linear-gradient(orange, deeppink, purple) border-box;
		--corner: 
			conic-gradient(from -90deg at var(--c) var(--c), red 25%, #0000 0) 
				0 0/ calc(100% - var(--c))  calc(100% - var(--c)) border-box;
		--inner: conic-gradient(red 0 0) padding-box;
		-webkit-mask: var(--corner), var(--inner);
		-webkit-mask-composite: source-out;
						mask: var(--corner) subtract, var(--inner);
		content: ''
	}
}

  
  









  .team {
    width: 80%;
    height: 30vh;
    background-image: url(image/bg1.jpg);
    background-size: cover;
    background-position: center;
    margin: 0 auto; /* Center the element horizontally */
    margin-bottom: 100px; /* Add margin at the bottom */
    margin-top: 200px; /* Adjust the top margin as needed */
  }

  
  .team h1 {
    display: flex;
    align-items: left;
    justify-content: left;
    font-size: 35px;
    margin-bottom: 100px;
  }
  
  .team h1 span {
    color: #fac031;
    margin-left: 15px;
    font-family: mv boli;
  }
  
  .team h1 span::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #fac031;
    display: block;
    position: relative;
    bottom: 15px;
  }
  
  .team .team_box {
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 16px;
    position: relative;
    top: 100%; /* Adjust the top value as needed */
  }
  
  .team .team_box .profile {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
  }
  
  .team .team_box .profile:hover {
    border-radius: 20px;
    height: 320px;
  }
  
  .team .team_box .profile img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    object-position: left;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
    transition: 0.4s;
  }
  
  .team .team_box .profile:hover img {
    border-radius: 20px;
    margin-top: -230px;
  }
  
  .team .team_box .profile .info {
    position: absolute;
    text-align: center;
    top: 25%;
    transition: 0.4s;
  }
  
  .team .team_box .profile:hover .info {
    top: 60%;
  }
  
  .team .team_box .profile .info .name {
    color: #fac031;
    margin-bottom: 15px;
  }
  
  .team .team_box .profile .info .bio .h5{
    width: 10%;
    text-align: center;
    margin: 0 auto 10px auto;
    font-size: 14;
    width: 18px;
  }
  
  .team .team_box .profile .info .team_icon i {
    margin: 10px 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .team .team_box .profile .info .team_icon i:hover {
    color: #fac031;
  }
  






  footer {
    width: 100%;
    padding: 100px 0 0 1px; /* Adjust the padding-top value as needed */
    background: #eeeeee;
    margin-top: 1800px; /* Push the footer down */
    margin-bottom: 50px; /* Add margin at the bottom */
  }
  
  .footer_main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80%, 1fr));
    grid-gap: 20px;
  }
  
  .footer_main .footer_tag {
    text-align: center;
  }
  
  .footer_main .footer_tag h2 {
    color: #000;
    margin-bottom: 25px;
    font-size: 20px;
  }
  
  .footer_main .footer_tag p {
    margin: 10px 0;
  }
  
  .footer_main .footer_tag i {
    margin: 0 5px;
    cursor: pointer;
  }
  
  .footer_main .footer_tag i:hover {
    color: #fac031;
  }
  
  .end {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-top: 20px; /* Push the footer content down */
  }
  
  .end span {
    color: #fac031;
    margin-left: 10px;
  }
  
  ::-webkit-scrollbar {
    width: 13px;
  }
  
  ::-webkit-scrollbar-track {
    border-radius: 15px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
  }
  
  ::-webkit-scrollbar-thumb {
    background: #fac031;
    border-radius: 15px;
  }
  
  i.fa-facebook-f {
    color: #1877f2; /* Facebook blue color */
  }
  
  i.fa-instagram {
    color: #C13584; /* Instagram purple color */
  }
  