@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1; /* Pushes the footer down */
}

.footer {
  /* background: #088178; */
  padding: 0px;
  text-align: start;
}

body {
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #1d1d1d;
}

h6 {
  color: #d8d8d8;
}

hr {
  width: 30px;
  height: 2px;
  background-color: #fb774b;
}

  /* Header Start */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #E3E6F3;
  box-shadow: 0 5px 15px rgba(0 ,0, 0, 0.06);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#footer {
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.06); /* Adds a shadow to the footer */
  padding: 20px 80px;
  background-color: #E3E6F3;
  position: relative;
  z-index: 999;
}

#navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px ;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after{
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile{
  display: none;
  align-items: center;
}

#close{
  display: none;
}

  /* Home Page */

#hero{
    background-image: url("img/hero4.png");
    height: 90vh;
    width: 100%;
    background-size: cover;
    background-position: top 25% right 0;
    padding: 0 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

#hero h4{
    padding-bottom: 15px;
}

#hero h1{
    color: #088178;
}

#hero button{
    color: #088178;
    border: 0;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 25px;
    background-color: #C7BE92;
    border-radius: 20px;
}

#product1{
    text-align: center;   
    padding-top: 75px;
    padding-bottom: 75px;
}

#product1 h2{
    color: #1a1a1a;
    font-size: 50px;
    font-weight: 700;
}

#product1 .pro-container {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

#product1 .pro {
    width: 15%;
    min-width: 250px;
    padding: 10px 12px;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    cursor: pointer;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
    margin: 15px 0;
    transition: 0.2s ease;
    position: relative;
}

#product1 .pro:hover{
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
    max-width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 20%;
}

#product1 .pro desc{
    text-align: start;
    padding: 10px 0;
}

  /* 
#product1 .pro span{
    color: #606063;
    font-size: 12px;
} 
  */

#product1 .pro h5 {
  padding-top: 10px;
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transition: color 0.3s ease;
}

#product1 .pro:hover h5 {
  color: #088178;
}

footer {
  padding: 20px;
  background-color: #E3E6F3;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.logo-container {
  width: 100%;
  height: auto;
  margin-right: 20px;
  flex: 1;
}

.logo-container img {
  width: 35%;
  height: auto;
}

.info-container {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

footer h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

footer p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

footer a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

footer .follow {
  margin-top: 20px;
}

footer .follow .icon {
  display: flex;
  gap: 10px;
}

footer .follow i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

footer .follow i:hover,
footer a:hover {
  color: #088178;
}

footer .copyright {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}

/* About Page */

#page-header.about-header{
    background-image: url("img/about/banner.jpg");
    height: 30vh;
    width: 100%;
    color: #f8f8f8;
    font-size: 100px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#about-head{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 20px 80px;
    text-align: justify;
}

/* Contact Page */

.contact-left-input {
  position: relative;
}

.contact-left-input button {
  bottom: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10; /* Ensures it's above other elements */
}

.contact-input-msg {
  min-height: 100px;
  max-height: 400px; /* Prevents it from expanding too much */
  overflow-y: auto; /* Hides scrollbar while expanding */
  /* resize: none; Disables manual resizing */
}

.contact-container {
  /* height: 80vh; */
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}

.contact-left-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-left-input {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-input-msg {
  width: 100%;
  height: 150px;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-left button {
  padding: 10px 20px;
  border: none;
  background-color: #088178;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.contact-left button:hover {
  background-color: #065a5a;
}

.contact-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.contact-right img {
  width: 150px; /* Adjust size if needed */
  height: auto;
}


.contact-title, .contact-address, .contact-phone, .contact-email {
  position: absolute;
  text-align: center; /* Center align the text */
}

.contact-title {
  top: 30%; /* Adjust as needed */
  left: 48%;
  color: #088178;
  transform: translate(-50%, -30%);
  font-size: 40px;
  font-weight: 700;
}

.contact-address {
  top: 45%; /* Adjust as needed */
  left: 44.8%;
  color: #1a1a1a;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  text-align: left; /* Align the text to the left */
}

.contact-email {
  top: 54%; /* Adjust as needed */
  left: 40%;
  color: #1a1a1a;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  text-align: left; /* Align the text to the left */
}

.contact-phone {
  top: 60%; /* Adjust as needed */
  left: 33%;
  color: #1a1a1a;
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-weight: 500;
  text-align: left; /* Align the text to the left */
}

.product-details-container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 80px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.squid-product-details{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.product-details-title {
  display: none;
}

.product-details h2 {
  color: #088178;
  font-size: 60px;
  font-weight: 700;
}

.product-details-container button{
  background-color: #E3E6F3;
  border-radius: 10px;
  color: #088178;
  border: 0;
  padding: 10px 20px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 30px;
  margin-top: 40px;
}

.product-details-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 80px;
}

.product-image img, .product-thumbnails img {
  border-radius: 10px; /* Makes the images rounded */
  border: none; /* Removes the border line */
}

.product-thumbnails {
  max-height: 200px; /* Set a fixed height for the thumbnails container */
  overflow-y: auto; /* Enable vertical scrolling */
  display: flex;
  flex-direction: row; /* Arrange thumbnails in a column */
}

.product-video {
  margin-top: 20px;
  text-align: center;
}

.product-video iframe {
  border-radius: 10px;
  max-width: 100%;
}


.product-image {
  flex: 1;
  text-align: center;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 5px; /* Add padding inside the border */
  box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.product-thumbnails img.active {
  border-color: #ff6600; /* Highlight the selected thumbnail */
  opacity: 0.7;
}

.product-thumbnails {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.product-thumbnails img {
  width: 60px;
  height: 60px;
  margin: 0 5px;
  cursor: pointer;
  border: 2px solid #ccc;
  padding: 2px;
  transition: border-color 0.3s, opacity 0.3s;
}

.product-details {
  flex: 2;
  padding-left: 40px;
}

  /* Responsive */

@media (max-width: 1024px) {
.contact-container {
    /* height: 80vh; */
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
  }
}

.contact-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.contact-right img {
  width: 150px; /* Adjust size if needed */
  height: auto;
}


@media (max-width: 799px) {
  #navbar {
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: #E3E6F3;
    box-shadow: 0 40px 60px rgba (0, 0, 0, 0.1 );
    padding: 80px 0 0 10px;
    transition: 0.3s;
  }

  #navbar.active {
    right: 0px;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile{
    display: flex;
    align-items: center;
  }

  #mobile i{
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
  }

  #close{
    display: initial;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #222;
    font-size: 24px;
  }

  #hero {
    height: 80vh;
    padding: 0 80px;
    background-position: top 0% right 30%;
}

  #product1 .pro-container{
    height: auto;
    justify-content: center;
  }

  #product1 .pro{
    margin: 15px;
  }

  #about-head {
    flex-direction: column;
    padding: 20px;
  }

  #about-head img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  #about-head div {
    padding-left: 0;
  }

  .contact-right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.contact-right img {
    width: 150px; /* Adjust size if needed */
    height: auto;
}

  /* .contact-right {
    display: none;
  } */

  .contact-input, .contact-input-msg {
    width: 100%;
  }

  .contact-left-input {
    width: 100%;
  }

  .product-details-container {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .product-image, .product-details {
    width: 100%;
    text-align: center;
  }

  .product-details {
    padding-left: 0;
    margin-top: 20px;
  }

  .product-details h2 {
    color: #088178;
    order: -1;
    margin-bottom: 20px;
  }
}

@media (max-width: 477px) {
  #header {
    padding: 10px 30px;
  }
  h1 {
    font-size: 38px;
  }
  h2 {
    font-size: 32px;
  }
  #hero {
    padding: 0 20px;
    background-position: 80%; /* Adjust the background position */
  }
  #product1 .pro {
    width: 100%;
  }
  footer .copyright {
    text-align: start;
  }

  #about-head {
    flex-direction: column;
    padding: 10px;
  }

  #about-head img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  #about-head div {
    padding-left: 0;
  }


  /* .contact-right {
    display: none;
  } */

  .contant-container {
    height: auto;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }

  .contact-input, .contact-input-msg {
    width: 100%;
  }

  .contact-left-input {
    width: 100%;
  }

  .product-details-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .product-image{
    width: 100%;
    text-align: center;
  }

  .product-details h2 {
    display: none;
  }

  .product-details-title h2{
    color: #088178;
    width: 100%;
    text-align: start;
    font-size: 35px;
    font-weight: 700;
  }

  .product-details {
    font-size: 16px;
  }
  
  .product-details {
    width: 100%;
    text-align: start;
  }

  .product-details {
    padding-left: 0;
    margin-top: 10px;
  }

  .product-details h2 {
    order: -1;
    margin-bottom: 10px;
  }
}