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

* {
    padding: 0px;
    margin: 0px;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: rgb(22, 4, 63);
}

/* Navigation Bar starts */
.navbar {
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: lavender; */
  transition: background-color 0.5s ease;
}

.navbar .container-wrapper {
  height: 100%;
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: aqua; */
}

.navwrapper {
  /* width: 100%; */
  height: 100%;
  /* background-color: antiquewhite; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* position: relative; */
  padding: 0 20px;
}

.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.navbar .logo a {
  color: black;
  font-size: 16px;
  text-decoration: none;
  order: 1;
  font-weight: 600;
}

.navbar .container-wrapper .logo img {
  height: 54px;
  width: 54px;
}

.navwrapper ul {
  display: flex;
  gap: 50px;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease;
}

.navwrapper ul li {
  list-style: none;
}

.navwrapper ul li a {
  text-decoration:none;
  color: rgb(22, 4, 63);
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.navwrapper ul li a.active {
  text-decoration: underline;
  font-weight: bold;
}

.navwrapper ul li a:hover {
  color: white;
  background-color: rgb(22, 4, 63);;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.5s ease;
}

.navbar .container-wrapper .button-container button {
  padding: 10px 15px;
  background-color: rgb(255, 151, 59);
  color: rgb(255, 255, 255);
  border: none;
  font-size: 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.navbar .container-wrapper .button-container button:hover {
  background-color: #e65c00;
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.navbar .container-wrapper .button-container button:active {
  background-color: green;
}

.menu-toggle {
  display: none; 
}

.hamburger {
  display: none; 
  font-size: 24px;
  cursor: pointer;
  color: rgb(22, 4, 63);
}

/* Navigation Bar ends */

/* Navbar Media query starts  */
@media (max-width: 980px) {

  .navwrapper ul {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0px;
      background-color: rgb(255, 151, 59);
      /* border-radius: 8px; */
      width: 100%;
      /* transform: scale(1.05); */
      /* box-shadow: 0 8px 15px rgb(184, 197, 2); */
      transition: all 0.5s ease;
  }

  .menu-toggle:checked+.hamburger+ul {
      display: flex;
      row-gap: 20px;
      padding: 40px;
      /* transform: scale(1.05); */
      /* box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); */
      /* transition-duration: 0.7s; */
  }

  .hamburger {
      /* order: 3; */
      display: block;
  }

  .logo {
      order: 2;
  }

  .navwrapper ul li {
      text-align: center;
      padding: 10px 0;
      gap: 30px;
      font-size: 30px;
      /* background-color: beige; */
  }

  .navwrapper ul li a {
      font-size: 16px;
      /* background-color: blueviolet; */
  }

  .button-container {
      order: 3;
  }

  .navbar .container-wrapper .button-container button {
      font-size: 14px;
      padding: 8px 12px;
      /* order: 3; */
  }
}

@media (max-width: 600px) {
  .navwrapper ul li a {
      font-size: 16px;
  }

  .navbar .container-wrapper .button-container button {
      font-size: 12px;
      padding: 6px 10px;
  }
}

@media (max-width: 510px) {
  .navwrapper ul li a {
      font-size: 16px;
  }

  .navbar .container-wrapper .button-container button {
      font-size: 10px;
      padding: 8px 6px;
  }

  .navbar .logo a {
      display: none;
  }

}

@media (max-width: 500px) {
  .navbar .container-wrapper .logo img {
      height: 34px;
      width: 34px;
  }
  .navwrapper ul li{
      /* align-items: left; */
      /* justify-content: start; */
      /* background-color: aquamarine; */
      padding: 0;
      position: relative;
      left: 40px;
  }
}
/* Navbar Media query ends  */

/* Heroic banner starts */
#hero {
    height: 450px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: orange;*/
}

#hero .hero-container-wrapper {
    height: 100%;
    width: 98%;
    background-color: blueviolet;
    background-image: url('../images/banner2.jpg');
    background-size: cover;
    background-position: top;
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 30px;
    background-blend-mode: overlay;
    color: white;
}

#hero .hero-container-wrapper .hero-content {
    height: 70%;
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 140px;
    margin-top: 40px;
    background-color:rgba(151, 149, 149,0.55);
    border-radius: 8px;
    /* background-color: yellowgreen;*/
    /*filter: blur(2px);*/

}

#hero .hero-container-wrapper .hero-content .button {
    height: 100%;
    width: 100%;
    /*background-color: aqua;*/
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
    justify-content: center;
    margin-bottom: 20px;
}

#hero .hero-container-wrapper .hero-content:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition-duration: 0.7s;
}

#hero .hero-content h3 {
    background-color: rgb(230, 92, 0);
    padding: 5px;
}

#hero .hero-content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: white;
    /*background-color: aqua;*/
}

#hero .hero-content p {
    font-size: 16px;
    margin-bottom: 30px;
}

#hero .btn-primary {
    padding: 10px 20px;
    background-color: rgb(255, 151, 59);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: px;
}

#hero .btn-primary:hover {
    background-color: #e65c00;
}
/* Heroic banner ends */

/*heroic banner Media Query starts */
@media screen and (max-width: 1020px) {
  #hero .hero-container-wrapper .hero-content {
      width: 50%;
      margin-left: 40px;
  }

  #hero .hero-content h1 {
      font-size: 40px;
  }

  #hero .hero-content p {
      font-size: 14px;
  }
}

@media screen and (max-width: 530px) {
  #hero .hero-container-wrapper {
    /* background-color: aquamarine; */
    display: flex;
    align-items: center;
    justify-content: center;
}

  #hero .hero-container-wrapper .hero-content {
      width: 50%;
      margin-left: 20px;
      margin-top: 20px;
  }

  #hero .hero-content h1 {
      font-size: 30px
  }

  #hero .hero-content p {
      font-size: 12px;
      margin-bottom: 20px;
  }

  #hero .btn-primary {
      padding: 8px 16px;
      font-size: 16px;
  }
}
/* Heroic banner media query ends */

/* category sections starts */
.picture-gallery {
    text-align: center;
    margin: 40px;
    /* padding: 40px 20px; */
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .picture-gallery h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color:rgb(22, 4, 63);
  }
  
  .picture-gallery p {
    font-size: 14px;
    margin-bottom: 30px;
    color:rgb(22, 4, 63);
  }
  
  .grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    max-width: auto;
    /* margin: 0 auto; */
    margin-bottom: 20px;
    /* background-color: #e65c00; */
  }

 
  .grid-item {
    /* background-color: yellowgreen; */
    /* padding: 20px; */
    /* border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }

  .grid-item:hover{
    outline: 3px solid rgb(255, 151, 59);
    border-radius: 12px;
  }
  
  .grid-item img {
    width:200px;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
  }
  
  .grid-item p {
    font-size: 24px;
    color: #333;
    font-weight: bold;
  }
  
 .category-btn {
  display: inline-block;
  /* padding: 10px 20px; */
  border: none;
  font-size: 14px;
  color: black;
  font-weight: 900;
  /* background-color: rgb(255, 151, 59);*/
  /* border-radius: 5px; */
  text-decoration: underline; 
  }
  
 /* .category-btn .category-btn:hover {
    background-color: #e65c00;
  } */

  /*category section ends */
  
  /* category section media query starts*/

  @media (max-width: 1024px) {
    .grid-container {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .grid-container {
      grid-template-columns: repeat(2, 1fr);
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .category-btn {
      font-size: 1rem;
      padding: 10px 18px;
    }
  }

  @media (max-width: 530px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  
    .category-btn {
      font-size: 1rem;
      padding: 10px 18px;
    }

    .grid-container .grid-item:nth-child(n+5) {
      display: none; 
  }
  }

  /* category section media query ends */

  /* Chat container starts*/

.chat-section {
    height: auto;
    background-color: rgb(255, 151, 59);
    /* margin-top:20px; */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 40px; */
    padding-bottom: 40px;
  }
  
  .chat-section .chat-wrapper{
    height: 100%;
    width: 80%;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .chat-container {
    height:100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* margin-top: 40px; */
    /* background-color: aquamarine; */
}

.chat-container h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color:white;
}

.chat-container p {
  font-size: 14px;
  margin-top: 20px;
  color:white;
}

.chat-box-container{
    /* background-color: cadetblue; */
    margin-top: 40px;
}

.chat-box {
    background-color: white;
    width: 400px;
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.message .message-content {
    padding: 10px 15px;
    border-radius: 10px;
    max-width: 80%;
}

.customer .message-content {
    background-color: #e6f7ff;
    align-self: flex-start;
    margin-left: 10px;
}

.worker .message-content {
    background-color: #e0ffe0;
    align-self: flex-end;
    margin-right: 10px;
}

/* Text inside messages */
.message-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.chat-box::-webkit-scrollbar {
    width: 6px;
}

.chat-box::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.chat-box::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

.chat-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 20px;
}

/* Media query */
 @media screen and (max-width: 768px) {
    .chat-container h2 {
    font-size: 28px;
    }

          .chat-container p {
              font-size: 16px;
              margin-top: 10px;
          }

          .chat-box {
              width: 90%;
              max-height: 500px;
          }
      }

/* Mobile screen styles */
@media screen and (max-width: 480px) {
          .chat-container h2 {
              font-size: 24px;
          }

          .chat-container p {
              font-size: 14px;
              margin-top: 5px;
          }

          .chat-box {
              width: auto;
              max-height: 400px;
          }

          .message .message-content {
              font-size: 12px;
          }
      }
/* Chat section ends here */

/* app section starts */
.app-section {
    height: auto;
    width: 100%;
    /* background-color: pink; */
    margin-top:40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
 
  .app-wrapper{
    height: 100%;
    width: 80%;
    /* background-color: gray; */
  }

  .app-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color:rgb(22, 4, 63);
  }
  
  .app-section p {
    font-size: 14px;
    margin-bottom: 40px;
    color:rgb(22, 4, 63);
  }

  .app-photos{
  /* background-color: brown; */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-photos .photo img{
    height: 500px;
    width: auto;
  }
  /* app section ends */

  /* Media query-app section starts here */
@media screen and (max-width: 768px) {
  .app-section {
      margin-top: 40px;
  }

  .app-wrapper {
      width: 90%;
  }

  .app-section h2 {
      font-size: 28px;
  }

  .app-section p {
      font-size: 16px;
      margin-bottom: 30px;
  }

  .app-photos .photo img {
      /* flex-direction: column; */
      height:300px ;
      width: auto;
      gap: 15px;
  }

  .app-photos .photo img {
      max-height: 400px;
  }
}

@media screen and (max-width: 480px) {
  .app-section {
      margin-top: 20px;
  }

  .app-wrapper {
      width: 100%;
  }

  .app-section h2 {
      font-size: 24px;
  }

  .app-section p {
      font-size: 14px;
      margin-bottom: 20px;
  }

  .app-photos {
      /* flex-direction: column; */
      gap: 10px;
  }

  .app-photos .photo img {
      /* flex-direction: column; */
      height:200px ;
      width: auto;
      gap: 15px;
  }
}
/* Media query- App section ends */

/* Footer section starts */

.footer {
  background-color:rgb(22, 4, 63);
  color: #fff;
  /* padding: 40px 20px; */
  /* margin-top: 40px; */
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer .footer-container {
  height: 100%;
  width: 80%;
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  /* background-color: aqua; */
}

.footer-section {
  width: 23%;
  margin-bottom: 20px;
  /* background-color: bisque; */
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-section a {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  /* background-color:rgb(255, 151, 59); */
  margin-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ddd;
}
/* Footer section ends */
/* Footer Media query starts*/
@media (max-width: 1200px) {
  .footer-section {
      width: 48%;
  }
}

@media (max-width: 768px) {
  .footer-section {
      width: 100%;
  }

  .footer .footer-container {
      flex-direction: column;
      align-items: center;
  }

  .footer-bottom {
      text-align: center;
      margin-top: 20px;
  }
}
