/* -----------------------
   Global Styles
-------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2, h3 {
  color: #0099e6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* -----------------------
   Header
-------------------------- */
header {
  background: #fff;
  border-bottom: 2px solid #0099e6;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Logo and Brand Adjustments */
.logo img {
  width: 200px; /* 4x bigger than original 50px */
  height: auto;
}

.logo h1 {
  font-size: 1.5rem; /* smaller brand name */
  margin: 0;
}


.navbar ul {
  display: flex;
  gap: 20px;
}

.navbar a {
  padding: 8px 15px;
  border-radius: 5px;
  transition: background 0.3s;
}

.navbar a:hover {
  background: #0099e6;
  color: #fff;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* -----------------------
   Hero Section
-------------------------- */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image cover hero section */
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  background: rgba(0, 153, 230, 0.7);
  padding: 20px 30px;
  border-radius: 8px;
}

.hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.hero-content p {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0099e6;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #0077b5;
}

/* -----------------------
   Products Section
-------------------------- */
.products {
  padding: 60px 0;
  background: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #0099e6;
  display: block;
  margin: 10px auto 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  padding: 15px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-card h3 {
  margin: 10px 0 5px;
  color: #0099e6;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Read More / Read Less */
.full-desc {
  display: none;
  text-align: left;
  font-size: 0.9rem;
  margin-top: 10px;
}

.read-more-btn {
  margin-top: 10px;
  background: #0099e6;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.read-more-btn:hover {
  background: #0077b5;
}

.read-more-btn:hover {
  background: #0077b5;
}

/* -----------------------
   About Section
-------------------------- */
.about {
  padding: 60px 0;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1 1 500px;
  font-size: 1rem;
  line-height: 1.7;
}

.about-text h2 {
  font-size: 2rem;
  color: #0099e6;
  margin-bottom: 20px;
}

.about-image {
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* -----------------------
   Contact Section
-------------------------- */
.contact {
  padding: 60px 0;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1 1 300px;
  font-size: 1rem;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #0099e6;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  background: #0099e6;
  color: #fff;
  padding: 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #0077b5;
}
.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.contact-info i {
  color: #0099e6;
  font-size: 1.3rem;
}

.contact-link {
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.contact-link:hover {
  color: #0099e6;
  transform: translateX(3px);
}


/* -----------------------
   Footer
-------------------------- */
footer {
  background: #0099e6;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.social-links a {
  margin: 5px 10px;
  color: #fff;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #ffdd00;
}

/* -----------------------
   Floating WhatsApp Button
-------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* -----------------------
   Responsive
-------------------------- */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }

  .navbar.active ul {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .about-container,
  .contact-container {
    flex-direction: column;
  }

  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 2rem;
    color: white;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
