* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: #000;
    color: #fff;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-right a {
    background: #fff;
    color: #000;
    padding: 6px;
    border-radius: 50%;
    margin-left: 6px;
    transition: 0.3s;
}

.top-right a:hover {
    background: red;
    color: #fff;
}

/* ===== HEADER ===== */
header {
    background: #eee;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 50px;
}

/* ===== NAV ===== */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li {
    position: relative;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: 0.3s;
}

nav ul li a:hover {
    color: red;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 22px;
    z-index: 2000;
    left: 0;
    background: #fff;
    min-width: 160px;
    padding: 14px 0px;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    padding: 6px 16px;
}

/* Button */
.enquiry-btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.enquiry-btn a:hover {
    background: #000;
}

/* Mobile */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-btn {
    display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {

    nav {
        position: absolute;
        top: 80px;
        left: -100%;
        width: 100%;
        background: #fff;
        transition: 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .menu-toggle {
        display: block;
    }

    .enquiry-btn {
        display: none;
    }

    .mobile-btn {
        display: block;
        margin-top: 10px;
    }

    .enquiry-mobile {
        background: red;
        color: #fff !important;
        padding: 10px 20px;
        border-radius: 5px;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    .top-right {
        margin-top: 8px;
    }
}



/* collection */

.team-products {
  padding: 60px 5%;
  background: #f8f9fb;
  font-family: sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  animation: fadeDown 1s ease;
}

/* GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  animation: fadeUp 1s ease;
}

.product-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.img-box {
  overflow: hidden;
}

.img-box img {
  width: 100%;
  display: block;
  transition: 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */
.content {
  padding: 18px;
  text-align: center;
}

.content h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.content p {
  font-size: 14px;
  color: #666;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}


/* footer */

    .footer {
  background: black;
  color: #fff;
  padding-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  color: #00d4ff;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00d4ff;
  padding-left: 6px;
}

.logo {
  width: 100px;
  margin-bottom: 15px;
}

.socials a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  font-size: 14px;
}

/* Floating Buttons */



/* Responsive */

@media (max-width: 600px) {
  .footer {
    text-align: center;
  }

  .socials {
    margin-top: 10px;
  }
}


