/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(#ffffff);
  color: #111111;
  line-height: 1.8;
}

/* Header styles: thinner sticky top bar */
header {
  background: #000000;
  padding: 4px 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  box-shadow: 0 1px 8px #00000010;
  position: sticky;
  top: 0;
  z-index: 999;
  height: auto;
}

/* Logo container with minimal vertical padding */
.logo-container {
  padding-top: 2px;
  padding-bottom: 2px;
}

/* Logo image inside header */
.logo-container img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* Main large logo styling */
.main-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 40px auto 100px auto;
  display: block;
}

/* Bounce animation on hover */
.main-logo:hover {
  animation: bounce 0.4s ease;
}

/* Container for main content */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 30px;
  text-align: center;
  animation: bounce 0.4s ease;
}

/* Images inside main excluding main-logo */
main > img:not(.main-logo) {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px #0000001a;
}

/* Headings */
h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #111111;
}

h2 {
  font-size: 2rem;
  color: #444444;
  margin: 16px 0;
}

/* Service list grid */
.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin: 80px 0;
}

/* Service card */
.service-item {
  width: 300px;
  background: #ffffff;
  border-radius: 25px;
  box-shadow: 0 8px 30px #00000011;
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px #0000001a;
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eeeeee;
}

.service-description {
  padding: 24px;
}

/* Boxes section */
.boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 100px 0;
}

.box {
  width: 360px;
  background: #ffffffd9;
  backdrop-filter: blur(10px);
  border-radius: 18px;
  box-shadow: 0 8px 30px #0000001f;
  overflow: hidden;
  padding: 30px 24px;
  text-align: center;
  transition: 0.3s ease;
}

.box:hover {
  transform: translateY(-8px);
}

.box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 20px;
}

/* Enquire button */
.enquire-btn {
  background: #00C600;
  color: #ffffff;
  border: none;
  padding: 18px 36px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 40px auto;
  display: inline-block;
  transition: 0.3s ease;
  text-decoration: none;
}

.enquire-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

/* Contact section */
#contact {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #dddddd;
}

#contact p {
  font-size: 1.2rem;
  margin-top: 10px;
}

#contact p a {
  color: #007c00;
  text-decoration: none;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #ffffff;
  padding: 50px 20px;
  text-align: center;
  font-size: 1rem;
  color: #777777;
  border-top: 1px solid #eeeeee;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .boxes,
  .service-list {
    flex-direction: column;
    align-items: center;
  }

  .box,
  .service-item {
    width: 90%;
  }

  .brand-name {
    font-size: 2rem;
    text-align: center;
  }

  header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .container {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .enquire-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }

  /* Responsive main logo */
  .main-logo {
    width: 90%;
    height: auto;
    margin: 20px auto 60px auto;
  }
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pop animation */
@keyframes pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-pop {
  animation: pop 0.6s ease-out;
}

/* Bounce animation */
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

.hover-bounce {
  animation: bounce 0.4s ease;
}

/* Hover effect utility */
.hover-effect {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-effect:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  cursor: default;
}

/* Collaboration section */
.collab-text {
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #333;
  line-height: 1.6;
}

.collab-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.collab-list li {
  margin-bottom: 10px;
}

.collab-list a {
  color: #007c00;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.collab-list a:hover {
  color: #007c00;
  text-decoration: default;
}
