/* <==================== Default CSS Start ====================> */

/* @font-face {
  font-family: "Aptos";
  src: url("/Assets/fonts/Microsoft-Aptos-Fonts/Aptos-Serif-Bold.ttf")
      format("woff2"),
    url("/Assets/fonts/Microsoft-Aptos-Fonts/Aptos-Display-Bold.ttf")
      format("woff");
} */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}
/* <==================== Default CSS End ====================> */

/* <==================== Header Start ====================> */
.header-container {
  background: linear-gradient(to right, #51a7fd, white);
  padding: 8px;
  position: relative;
  z-index: 1000;
  flex-wrap: wrap;
}

.header-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-navbar-logo {
  background: none;
  display: flex;
  align-items: center;
}

.header-navbar-logo img {
  width: 50px;
  height: auto;
  color: white;
  background-color: #fff;
  border-radius: 30px;
  max-width: 50px; /* Adjust based on desired logo size */
  margin-right: 10px;
}

.header-navbar-logo a {
  text-decoration: none;
}

.company-name {
  font-size: 38px; /* Adjust font size as needed */
  font-weight: bold;
  color: white; /* Adjust color as per design */
  text-decoration: none;
}
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 120;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: black;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.header-navbar-menu {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.header-navbar-menu a {
  text-decoration: none;
  color: black;
  background-color: white;
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 5px;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
}

.header-navbar-menu a:hover {
  background-color: #51a7fd;
  border-color: #fff;
}

.header-navbar-menu a img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  filter: brightness(0); /* Makes the icon black by default */
  transition: filter 0.3s ease;
}

.header-navbar-menu a:hover img {
  filter: brightness(10); /* Makes the icon appear white on hover */
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header-navbar-menu {
    align-items: center;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 10;
    display: none;
  }

  .header-navbar-menu.active {
    display: flex;
  }

  .header-navbar-menu a {
    padding: 10px;
    width: 100%;
    text-align: left;
  }
}

@media screen and (min-width: 1150px) {
  .header-navbar-menu a {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .header-navbar-menu a {
    font-size: 18px;
  }
}

@media screen and (min-width: 540px) {
  .header-navbar-menu {
    gap: 15px;
  }

  .header-navbar-menu a {
    font-size: 16px;
  }
}

@media screen and (max-width: 300px) {
  .header-navbar-menu {
    gap: 10px;
    flex-wrap: wrap;
  }

  .header-navbar-menu a {
    font-size: 14px;
  }

  .header-navbar-logo img {
    width: 120px;
  }

  .header-container {
    padding: 10px;
  }
}

/* <==================== Header End ====================> */

/* <==================== Home Section Start ====================> */
/* Main container */
.home-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Main container for the banner */
.home-container-banner-image {
  position: relative;
  width: 100%;
  height: 80%;
  overflow: hidden;
}

/* Slider styling */
.slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%; /* Set to 100% to fill the banner */
}

/* Individual slide images */
.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the container without distortion */
  flex-shrink: 0;
}

/* Indicator dots */
.indicator-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.indicator-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s;
}

.indicator-dots .dot.active {
  background-color: rgba(255, 255, 255, 1);
}

/* Arrow buttons styling */
.left-arrow,
.right-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px; /* Set width and height to make it a circle */
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%; /* Makes the element circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.left-arrow:hover,
.right-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darkens on hover */
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

.left-arrow:hover,
.right-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Menu Details Section */
.home-container-menu-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
}

.home-container-menu-details-article {
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 15px;
  flex: 1 1 300px;
  transition: transform 0.3s;
}

.home-container-menu-details-article:hover {
  transform: scale(1.05);
}

/* Image inside the menu details */
.home-container-menu-details-article-image-cover {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 5px solid #1e90ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  background-color: transparent;
}

.home-container-menu-details-article-image {
  width: 40%;
  height: auto;
  animation: bounce 2s infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Bounce Animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hover Effect */
.home-container-menu-details-article-image-cover:hover {
  background-color: #1e90ff;
  transform: scale(1.1);
}

.home-container-menu-details-article-image-cover:hover
  .home-container-menu-details-article-image {
  animation: popup 0.6s infinite;
  filter: brightness(0) invert(1);
}

@keyframes popup {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Heading and Data Styles */
.home-container-menu-details-article-heading {
  font-size: 1.5em;
  margin: 15px 0 10px;
  color: #333;
}

.home-container-menu-details-article-data {
  font-size: 1em;
  color: #666;
  line-height: 1.5;
  text-align: justify;
}

/* Responsive Media Queries */

/* Medium to Large Screens */
@media (max-width: 1150px) {
  .home-container-menu-details-article {
    flex: 1 1 45%;
  }
}

/* Tablets and Small Laptops */
@media (max-width: 768px) {
  .home-container-menu-details-article {
    flex: 1 1 100%;
  }
}

/* Small Devices */
@media (max-width: 540px) {
  .home-container-menu-details-article {
    flex: 1 1 100%;
  }

  .home-container-menu-details-article-heading {
    font-size: 1.2em;
  }
}

/* Very Small Devices (e.g., mobile phones) */
@media (max-width: 300px) {
  .home-container-menu-details-article-heading {
    font-size: 1em;
  }

  .home-container-menu-details-article-data {
    font-size: 0.9em;
  }
}

/* <==================== Home Section End ====================> */

/* <==================== About Section Start ====================> */
.about-section-container {
  padding: 20px;
}

.about-section-details {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.about-section-heading h1 {
  font-size: 2.5rem;
  color: #333;
}

.about-section-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-section-article {
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.about-section-article:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-section-article-heading h2 {
  font-size: 1.5rem;
  color: black;
  margin: 10px 0;
  text-align: center;
}

.about-section-article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.about-section-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.about-section-article-details p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: justify;
}

.about-section-paragraph {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.about-section-paragraph.show {
  max-height: 1000px;
}

.toggle-btn {
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #1e90ff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  justify-content: center;
}

.toggle-btn:hover {
  background-color: #51a7fd;
  transform: translateY(-2px);
}

.toggle-btn:active {
  transform: translateY(1px);
}

@media screen and (min-width: 1150px) {
  .about-section-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 768px) and (max-width: 1149px) {
  .about-section-articles {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 540px) and (max-width: 767px) {
  .about-section-articles {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 539px) {
  .about-section-heading h1 {
    font-size: 1.8rem;
  }

  .about-section-articles {
    grid-template-columns: 1fr;
  }
}

/* <==================== About Section End ====================> */

/* <==================== Contact Us Start ====================> */
.contact-section {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* background-color: #f9f9f9; */
  border-radius: 8px;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
}

.contact-section__title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: bold;
}

.contact-section__container {
  width: 100%;
  max-width: 600px;
}

.contact-section__form {
  display: grid;
  gap: 1.5rem;
}

.contact-section__input-group {
  display: grid;
  gap: 1rem;
}

.contact-section__input,
.contact-section__textarea {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  color: #333;
  transition: border-color 0.3s ease;
}

.contact-section__input:focus,
.contact-section__textarea:focus {
  border-color: #51a7fd;
  outline: none;
}

.contact-section__textarea {
  height: 120px;
  resize: none;
}

.contact-section__button {
  padding: 0.85rem;
  font-size: 1rem;
  background-color: #1e90ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-section__button:hover {
  background-color: #51a7fd;
  transform: translateY(-2px);
}

.contact-section__response-message {
  font-size: 1rem;
  color: #51a7fd;
  margin-top: 0.5rem;
  font-weight: bold;
}

@media screen and (min-width: 1150px) {
  .contact-section__title {
    font-size: 3rem;
  }

  .contact-section__input,
  .contact-section__textarea {
    font-size: 1.1rem;
  }

  .contact-section__button {
    font-size: 1.2rem;
    padding: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-section {
    padding: 4rem 2rem;
  }

  .contact-section__title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 540px) {
  .contact-section__input-group {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section__title {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 300px) {
  .contact-section__title {
    font-size: 1.8rem;
  }

  .contact-section__input,
  .contact-section__textarea {
    font-size: 0.9rem;
  }

  .contact-section__button {
    padding: 0.6rem;
    font-size: 0.9rem;
  }
}
/* <==================== Contact Us End ====================> */

/* <==================== Footer Start ====================> */
.footer {
  background-color: #1e90ff;
  color: white;
  padding: 20px;
  text-align: center;
}

.footer-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo-left,
.footer-logo-right {
  width: 200px; /* Adjust width as needed */
  height: auto;
  background-color: #fff;
  object-fit: fill;
}

.footer-text-content {
  flex: 1;
  padding: 0 20px;
  font-weight: bold;
}

.footer-text {
  margin: 0;
  font-size: 16px;
  font-weight: bold;

}

.footer-email {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: bold;
}

.footer-email a {
  color: #fff;
  text-decoration: none;
}

.footer-email a:hover {
  text-decoration: underline;
}

/* Adjustments for larger screens */
@media screen and (min-width: 1150px) {
  .footer {
    padding: 30px;
  }

  .footer-text {
    font-size: 18px;
  }

  .footer-email {
    font-size: 16px;
  }
}

/* Adjustments for medium screens */
@media screen and (min-width: 768px) {
  .footer {
    padding: 25px;
  }

  .footer-text {
    font-size: 17px;
  }

  .footer-email {
    font-size: 15px;
  }
}

/* Adjustments for small screens */
@media screen and (min-width: 540px) {
  .footer {
    padding: 20px;
  }

  .footer-text {
    font-size: 16px;
  }

  .footer-email {
    font-size: 14px;
  }
}

/* Adjustments for extra small screens */
@media screen and (max-width: 300px) {
  .footer {
    padding: 15px;
  }

  .footer-text {
    font-size: 14px;
  }

  .footer-email {
    font-size: 12px;
  }

  .footer-details {
    flex-direction: column;
  }
}

/* <==================== Footer End ====================> */
