@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;900&display=swap');

* {
  font-family: 'Montserrat', sans-serif;
  /* margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear; */
  text-transform: capitalize;

}

:root {
  --black: #16161d;
  --white: #fff;
  --light-color: #808080;
  --light-bg: #f5f5f8;
  --google-color: #4285f4;
  --twitter-color: #1da1f2;
  --youtube-color: #ff0000;
  --linkedin-color: #0e76a8;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: var(--white);
}

html::-webkit-scrollbar-thumb {
  background: var(--black);
}

section {
  padding: 5rem 9%;
}

.btn {
  color: var(--white);
  font-weight: 400;
  font-size: 1.7rem;
  border: 0.1rem solid var(--white);
  border-radius: 10rem;
  padding: 1.5rem 4rem;
}

.btn:hover {
  background: var(--black);
  color: var(--white);
}

.heading {
    margin-top: 50px;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 5rem;
  text-align: center;
}



.home {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url('image/hero.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
  }
  
  .home h1 {
    font-size: 6rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: var(--white);
  }
  
  .home p {
    font-size: 1.7rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-transform: none;
    color: var(--white);
  }

  .header{
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            /* height: 80px; */
             /* Fixed height for the header */
            background-color: #333;
            color: white;
            padding: 20px;
            z-index: 1000; /* Higher stacking order to keep it on top */
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header.active{
    background: var(--white);
    padding: 3rem 9%;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1)
  }

  .navbar{
    /* font-size: 1.7rem; */
    text-align: end;
    margin-right: 40px;
  }


  .header.active .logo,
.header.active .navbar a,
.header.active .menu {
  color: var(--black);
}

.header .logo {
  margin-right: auto;
  font-size: 2rem;
  color: var(--white);
  font-weight: 700;
  position: absolute;
            /* font-size: 16px; */
            left: 0;
            top: 0;
            /* padding: 20px; */
            padding-left: inherit;
            text-align: left;
            width: 45%;
}

.header .logo span {
  font-weight: normal;
}

.header .navbar a {
  font-size: 1.7rem;
  color: var(--white);
  margin-left: 3rem;
}

.header .menu {
  font-size: 2rem;
  color: var(--white);
  display: none;
}




.about .box-container .box .image {
    height: 40rem;
  }
  
  .about .box-container .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
  }
  
  .about .box-container .box p {
    font-size: 1.7rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    text-transform: none;
  }


  .services {
    background: #c8e6c9;
  }
  
  .services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(23rem, 1fr));
    gap: 3rem;
  }
  
  .services .box-container .box {
    background: var(--white);
    text-align: center;
    border-radius: 1rem;
    padding: 3rem;
  }
  
  .services .box-container .box img {
    margin-bottom: 2rem;
  }
  
  .services .box-container .box h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .services .box-container .box p {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--light-color);
  }
  
  .services .box-container .box:hover {
    background: var(--black);
  }
  
  .services .box-container .box:hover h3,
  .services .box-container .box:hover p {
    color: var(--white);
  }
  
  .services .box-container .box:hover img {
    filter: invert(100%);
  }


  .works .box-container .box .image {
    height: 30rem;
    overflow: hidden;
    position: relative;
  }
  
  .works .box-container .box .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .works .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 5rem;
  }
  
  .works .box-container .box .image .content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    background: var(--black);
    color: var(--white);
    font-size: 1.7rem;
    padding: 2rem;
    z-index: 90;
    transform: translateY(100%);
  }
  
  .works .box-container .box:hover .image .content {
    transform: translateY(0);
  }



  .contact {
    background: var(--light-bg);
    
  }
  
  .contact .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
  }
  
  .contact .box-container .box {
    width: 30rem;
  }
  
  .contact .box-container .box h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
  
  .contact .box-container .box p {
    font-size: 1.5rem;
    color: var(--light-color);
    margin-bottom: 2rem;
  }
  
  .contact .box-container form {
    flex: 1 1 42rem;
  }
  
  .contact .box-container form .inputBox {
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: space-between; */
  }
  
  .contact .box-container form .inputBox input {
    width: 49%;
  }
  
  .contact .box-container form .inputBox input,
  .contact .box-container form textarea {
    border-radius: 5rem;
    padding: 1.2rem 1.8rem;
    font-size: 1.5rem;
    color: var(--black);
    margin: 0.7rem 0;
    margin-right: 8px;
    width: 33%
  }
  
  .contact .box-container form textarea {
    width: 100%;
    border-radius: 1rem;
    resize: none;
    height: 25rem;
  }
  
  .contact .box-container form .btn {
    color: var(--black);
    background: var(--white);
    border: 0.1rem solid var(--black);
    margin-top: 1rem;
  }
  
  .contact .box-container form .btn:hover {
    background: var(--black);
    color: var(--white);
  }


  .footer {
    text-align: center;
  }
  
  .footer .logo {
    font-size: 2rem;
    color: var(--black);
    font-weight: 700;
  }
  
  .footer .logo span {
    font-weight: normal;
  }
  
  .footer p {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    color: gray;
  }
  
  .footer .socials ion-icon {
    font-size: 2.5rem;
    color: var(--black);
    background: var(--light-bg);
    border-radius: 50%;
    padding: 1rem;
    margin: 0.5rem;
    cursor: pointer;
  }
  
  .footer .socials ion-icon:nth-child(1) {
    color: var(--google-color);
  }
  
  .footer .socials ion-icon:nth-child(1):hover {
    background: var(--google-color);
    color: var(--white);
  }
  
  .footer .socials ion-icon:nth-child(2) {
    color: var(--twitter-color);
  }
  
  .footer .socials ion-icon:nth-child(2):hover {
    background: var(--twitter-color);
    color: var(--white);
  }
  
  .footer .socials ion-icon:nth-child(3) {
    color: var(--youtube-color);
  }
  
  .footer .socials ion-icon:nth-child(3):hover {
    background: var(--youtube-color);
    color: var(--white);
  }
  
  .footer .socials ion-icon:nth-child(4) {
    color: var(--linkedin-color);
  }
  
  .footer .socials ion-icon:nth-child(4):hover {
    background: var(--linkedin-color);
    color: var(--white);
  }







  /* media queries */
@media (max-width: 1200px) {
    .header {
      padding: 2rem;
    }
  
    .header.active {
      padding: 2rem;
    }
  
    section {
      padding: 3rem 2rem;
    }
  
    .home h1 {
      font-size: 5rem;
    }
  }
  
  @media (max-width: 991px) {
    html {
      font-size: 60%;
    }
  }
  
  @media (max-width: 768px) {
    .header .menu {
      display: block;
    }
  
    .header .navbar {
      position: fixed;
      top: 6.4rem;
      left: 0;
      right: 30px;
      background: #e4e1e1;
      display: flex;
      flex-flow: column;
      text-align: start;
      transform: translateX(100%);
      opacity: 0.91

    }
    
  
    header .navbar.show {
      transform: translateX(0);
    }
  
    .header .navbar a {
      color: var(--black);
      margin: 0;
      font-size: 2rem;
      margin: 2rem 0;
    }
  }
  
  @media (max-width: 450px) {
    html {
      font-size: 55%;
    }
  }






  


  body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
  }
  
  /* Adjust font size for headings */
  h1, h2, h3, h4, h6 {
    font-size: 2.0em; /* Adjust the size for all headings */
  }

  h5 {
    font-size:  1.3em;
    font-weight : 400;
    
  }
  
  /* You can customize specific elements if needed */
  p, li, input, button, label {
    font-size: 1.8em; /* Slightly larger for paragraphs and form elements */
  }
  
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background-color: #004d40;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  }
  
  .nav {
    display: flex;
    flex-direction: column;
  }
  
  .nav ul {
    list-style: none;
    padding: 0;
  }
  
  .nav li {
    margin-bottom: 10px;
  }
  
  .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px;
    border-radius: 5px;
    display: block;
    transition: background-color 0.3s ease;
  }
  
  .nav-link.active {
    background-color: #00796b;
  }
  
  .nav-link:hover {
    background-color: #005b4f;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    padding: 20px;
}
  
  .section {
    padding: 100px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .home {
    background-color: #e0f2f1;
  }
  
  .about {
    background-color: #c8e6c9;
  }
  
  .contact {
    background-color: #c8e6c9;
  }
  
  .payment {
    background-color: #b3e5fc;
  }
  
  .payment-form {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    /* display: block; */
    margin-bottom: 8px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    /* width: 100%; */
    padding: 10px;
    box-sizing: border-box;
  }
  
  input[type="checkbox"] {
    width: auto;
  }
  
  .submit-btn {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
  }
  
  .submit-btn:hover {
    background-color: #0056b3;
  }
  
  .checkbox {
    display: flex;
    align-items: center;
  }
  
  .checkbox label {
    margin-left: 10px;
  }
  
  .service-group {
    margin: 10px 0;
  }
  
  .service-item {
    margin-bottom: 10px;
  }
  
  .service-item input[type="checkbox"] {
    margin-right: 10px;
  }
  

  .container {
	/* width: 950px;
	margin: 80px auto;
	color: white; */
	line-height: 1.5;
}

.text-center {
	text-align: center;
}

.content {
	display: flex;
	margin-top: 40px;
}

.icon {
	background-color: white;
	border-radius: 30px;
	padding: 15px;
	vertical-align: top;
}

.contact-info {
	display: inline-block;
	padding: 4px 20px 0px 20px;
}

.address-line {
  margin-bottom: 20px;
}

.col-1, .col-2 {
  width: 100%;
}


.form-container {
	color: #000;
	padding: 30px;
}

.contact-info-title {
	font-weight: bold;
    margin-bottom: 5px;
}

.map-container {
  width: 100%;
  height: 300px;
  margin-top: 20px;
}

/* Mobile-first */
@media (min-width: 600px) {
  .content {
      flex-direction: row;
      justify-content: space-between;
  }
  
  .col-1, .col-2 {
      width: 48%;
  }

  .map-container {
      height: 400px;
  }
}

.form-row {
	padding-bottom: 30px;
}

.form-field {
	width: 100%;
	border: none;
	border-bottom: 1px solid #000;
}

.send-btn {
	border: 0px;
	padding: 12px 26px;
	background-color: #01bdd4;
	color: white;
}

@media all and (max-width: 1024px) {
	.container {
		width: auto;
		padding: 30px;
	}
	 .col-1 {
		width: 360px;
	} 
}

@media all and (max-width: 700px) {
	.content {
		display: block;
	}
	.col-2 {
		margin-top: 40px;
	} 
	.col-1{
	width:100%;
	}
}

@media all and (max-width: 500px) {
	.container {
		padding: 10px;
	}
}

.fruits {
  border-radius: 5rem;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  color: var(--black);
  margin: 0.7rem 0;
  margin-right: 8px
}

#cookieConsent {
  background-color: #222;
  color: white;
  padding: 15px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  text-align: center;
  z-index: 1000;
}

#cookieConsent p {
  margin: 0;
}

#cookieConsent button {
  background-color: #4CAF50;
  border: none;
  color: white;
  /* padding: 10px; */
  cursor: pointer;
  font-size: 22px;
  margin: 0 10px;
}

#cookieConsent button#rejectCookie {
  background-color: #f44336;
}

.priceBox {
margin-left: 20px;
margin-bottom: 15px;
}