@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/* Reset and Global Styles */
:root {
  --primary: "#00ACBD";
  --white: "#fff";
  --black: "#000";
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  scroll-behavior: smooth;
  padding-top: 80px;
}

/* Header Section */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 15px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .logo img {
  max-width: 150px;
  height: auto;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin-top: 10px;
  padding: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
nav ul li {
  padding: 5px 12px;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 20px;
  border-color: #00acbd;
  color: #00acbd;
  transition: 0.3s ease-out;
  text-decoration: none;
}
nav ul li a {
  text-decoration: none;
  color: #00acbd;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px 0;
}
nav ul li.active {
  background-color: #00acbd;
}
nav ul li.active a {
  color: #fff;
}
nav ul li:hover {
  color: #fff;
  background-color: #00acbd;
  text-decoration: none;
  padding-right: 30px;
}
nav ul li:hover a {
  color: #fff;
}
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 1000;
  color: #00acbd;
  transition: 0.1s ease;
  border-radius: 10px;
  padding: 0 10px;
}
.hamburger:hover {
  background-color: #00acbd;
  color: white;
}

/* Home Section */
.home {
  text-align: center;
  padding: 80px 0 40px 0;
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  background-attachment: fixed;
}

.home h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
}

.home p {
  font-size: 1.4rem;
  color: white;
}

/* About Us Section */
.about {
  background-color: #eaf5f4;
  padding: 40px 20px;
  text-align: center;
}
#about {
  padding-top: 20px;
  margin-top: 10px;
}
.about h1 {
  font-size: 2.5 rem;
  color: #008c94;
  margin-bottom: 20px;
}
.about p {
  color: #1cadbd;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 30px;
}

/* Feedback Carousel Section */
.feedback-carousel {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
.carousel-title {
  font-size: 1.5rem;
  color: #008c94;
  margin-bottom: 20px;
  font-weight: 500;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px;
}
.carousel {
  display: flex;
  gap: 20px;
  width: 85%;
}
.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-width: 300px;
  max-width: 300px;
  text-align: left;
}
.card .feedback {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}
.card .client-name {
  font-size: 0.9rem;
  color: #008c94;
  font-weight: bold;
}
button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #008c94;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
}
button.prev {
  left: 10px;
}
button.next {
  right: 10px;
}
button:hover {
  background-color: #00adbe;
}

/* Products Section */
.products {
  background-color: #eaf5f4;
  padding: 40px 20px;
  text-align: center;
  margin-top: 80px;
}
.products h2 {
  font-size: 2.5rem;
  color: #008c94;
  margin-bottom: 30px;
}
.product-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.product-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  text-align: left;
  overflow: hidden;
}
.product-card img {
  width: 40%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}
.product-info {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-info h3 {
  font-size: 1.5rem;
  color: #008c94;
  margin-bottom: 10px;
}
.product-info h5 {
  font-size: 1.5rem;
  font-family: Brush Script MT;
  color: #008c94;
  margin-bottom: 10px;
}
.product-info ul {
  list-style: none;
  padding: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}
.product-info ul li {
  margin-bottom: 5px;
}
.product-info ul li::before {
  content: "✔";
  margin-right: 10px;
  color: #008c94;
}

.image-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px 0;
}

.image-scroll-container::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.image-scroll-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.image-scroll-container::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

.scrollable-image img {
  width: 100px;
  height: auto;
  flex-shrink: 0;
}

/* Buttons Container for Horizontal Alignment */
.buttons-container {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

/* Blob Button - Enquire Now */
.blob-btn {
  position: relative;
  padding: 15px 25px;
  background-color: #008c94;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blob-btn:hover {
  background-color: #006f72;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blob-btn__inner {
  position: relative;
  z-index: 1;
}

.blob-btn__blobs {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

.blob-btn__blob {
  position: absolute;
  background-color: #ffffff;
  border-radius: 50%;
  animation: blob-animation 1.5s ease-in-out infinite;
}

.blob-btn__blob:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 25px;
  height: 25px;
  animation-delay: 0.3s;
}

.blob-btn__blob:nth-child(2) {
  top: 40%;
  left: 40%;
  width: 35px;
  height: 35px;
  animation-delay: 0.6s;
}

.blob-btn__blob:nth-child(3) {
  top: 70%;
  left: 10%;
  width: 40px;
  height: 40px;
  animation-delay: 0.9s;
}

.blob-btn__blob:nth-child(4) {
  top: 60%;
  left: 70%;
  width: 30px;
  height: 30px;
  animation-delay: 1.2s;
}

@keyframes blob-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
}

/* Responsive Product Cards */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    width: 100%;
    text-align: left;
  }
  .product-card img {
    width: 70%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
}

/* Customersupport Section */

.customer-support {
  background-color: #a9cbbc;
  text-align: center;
  padding: 50px 20px;
}

.customer-support .logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.customer-support h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.customer-support a {
  text-decoration: none;
  font-size: 18px;
  color: #000000;
  display: inline-flex;
  align-items: center;
  margin: 10px 0;
}

.customer-support p {
  font-size: 18px;
  color: #000606;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
}

.customer-support .icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

/* Downloads Section Styles */
.downloads {
  text-align: center;
  background-color: #eaf5f4;
  padding: 50px 20px;
}

.downloads-title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.downloads-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.downloads-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #668bb1;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.downloads-button:hover {
  background-color: #162b42;
}

/* Contact Section */
#contact {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin-top: 80px; /* Adds space for fixed navbar */
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-form {
  flex: 1 1 60%;
}
.contact-form h2,
.contact-form h3 {
  margin-bottom: 15px;
  color: #333;
}
.contact-form p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #555;
}
.contact-form label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.contact-form textarea {
  resize: none;
}
.submit-btn {
  background-color: #1caebe;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  text-decoration: underline;
}
.contact-details {
  flex: 1 1 35%;
  padding: 0;
  background-color: transparent;
  box-shadow: none;
}
.contact-details iframe {
  border-radius: 5px;
  width: 100%;
  height: 400px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 20px 0;
}
form label {
  font-weight: bold;
}
form input,
form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  padding: 10px;
  background-color: #00adbe;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
form button:hover {
  background-color: #008c94;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #d3d3d3;
  border-radius: 50%;
  overflow: hidden;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icons a img {
  width: 60%;
  height: auto;
}

.social-icons a:hover {
  background-color: #a9a9a9;
  transform: scale(1.1);
}

/* Footer Section */
footer {
  background-color: #008c94;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 20px;
}
footer p {
  margin: 5px 0;
}
footer strong {
  color: #f0f0f0;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 5px;
    z-index: 999;
  }
  nav ul.show {
    display: flex;
    opacity: 1;
  }
  .hamburger {
    display: block;
  }
  nav ul li {
    text-align: center;
    padding: 10px 10px;
  }
  .image-scroll-container {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/* Footer Responsive Design */
@media screen and (max-width: 600px) {
  footer p {
    font-size: 14px;
  }
}
