:root {
  --primary: #0056d2;
  --accent: #007bff;
  --text-dark: #222;
  --text-light: #fff;
  --bg-light: #f8f9fa;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg-light);
}

/* ===== HEADER ===== */
.b2c-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Container to limit width */
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  border-radius: 6px;
}

/* Right Section */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Notification */
.notification {
  position: relative;
  cursor: pointer;
  font-size: 22px;
  color: var(--text-dark);
  transition: transform 0.2s ease;
}

.notification:hover {
  transform: scale(1.1);
}

.notification::after {
  content: "3";
  position: absolute;
  top: -6px;
  right: -8px;
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 40px;
  background: white;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

.dropdown.active {
  display: block;
}

.dropdown h4 {
  background: var(--primary);
  color: white;
  margin: 0;
  padding: 10px;
  font-size: 14px;
}

.dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 13px;
  cursor: pointer;
}

.dropdown li:hover {
  background: #f1f5ff;
}

/* Buttons */
.header-btn {
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.list-btn {
  background: var(--primary);
  color: white;
}

.list-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.signin-btn {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.signin-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ===== Search Section ===== */
.search-section {
  text-align: center;
  animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Heading ===== */
.search-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
  transition: opacity 0.5s ease;
}

.blue {
  color: #007bff;
}

/* ===== Input Boxes ===== */
.input-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  width: 280px;
  transition: all 0.3s ease;
}

.input-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.input-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  padding-left: 8px;
}

.input-box i {
  font-size: 18px;
  color: #007bff;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .search-heading {
    font-size: 1.5rem;
  }
  .input-box {
    width: 85%;
  }
}

/*--------- Icons ---------------- */

.category-section {
  padding: 40px 5%;
  background: #fff;
}

.category-row {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 25px;
  justify-items: center;
  margin-bottom: 30px;
}

.category-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 18px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #333;
  width: 100%;
}

.category-card img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.category-card span {
  font-size: 13px;
  font-weight: 500;
  display: block;
}

/* Hover animation */
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.category-card:hover img {
  transform: scale(1.1);
}

/* Responsive layout */
@media (max-width: 1200px) {
  .category-row {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .category-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .category-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*----- Category ----*/

.category-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  padding: 50px 5%;
  background: #fff;
}

.category-box {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.category-box h2 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.category-items {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.item {
  flex: 1;
  text-align: center;
  transition: all 0.3s ease;
}

.item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

/* Hover animation */
.item:hover img {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.item:hover span {
  color: #0073e6;
}

/* Responsive */
@media (max-width: 992px) {
  .category-sections {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .category-items {
    flex-direction: column;
  }

  .item img {
    height: 150px;
  }
}

/*---- Top Vendors ----*/

.top-vendors {
  padding: 60px 5%;
  background: #f9fafc;
  text-align: center;
}

.top-vendors h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.top-vendors .subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.vendor-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease;
}

.vendor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.vendor-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 10px;
}

.vendor-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 5px;
}

.vendor-card .location {
  color: #777;
  font-size: 16px;
  margin-bottom: 5px;
}

.vendor-card .tags {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.vendor-card .rating {
  font-size: 15px;
  color: #f5a623;
  margin-bottom: 12px;
}

.vendor-card small {
  color: #555;
}

.contact-btn {
  background: linear-gradient(90deg, #007bff, #0056d2);
  border: none;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #0056d2, #007bff);
  transform: scale(1.05);
}

/* Responsive layout */
@media (max-width: 992px) {
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vendor-grid {
    grid-template-columns: 1fr;
  }
}

/* Fade-up animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----- Supplier -------*/

.top-cities {
  text-align: center;
  padding: 70px 5%;
  background: #ffffff;
}

.top-cities h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Gradient underline */
.top-cities h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* City rows */
.city-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
}

/* Each city card */
.city-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 20px 10px;
  width: 150px;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.8s ease both;
}

.city-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

/* City name styling */
.city-card span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #222;
  transition: all 0.3s ease;
}

/* Hover animations */
.city-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.15);
}

.city-card:hover img {
  transform: scale(1.1);
}

/* Gradient text on hover */
.city-card:hover span {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Entry animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive layout */
@media (max-width: 768px) {
  .city-card {
    width: 120px;
    padding: 15px;
  }
  .city-card img {
    width: 50px;
    height: 50px;
  }
}

/*---- Features Product---*/

.featured-products {
  text-align: center;
  padding: 80px 5%;
  background: #fdfdfd;
}

.featured-products h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  padding-bottom: 8px;
}

/* Underline effect */
.featured-products h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Subheading */
.section-subheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.section-subheader p {
  font-size: 18px;
  color: #555;
  font-weight: 500;
}

.section-subheader .view-all {
  font-size: 18px;
  font-weight: 600;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.section-subheader .view-all:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Card */
.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease both;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.product-card h3 a {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-card h3 a:hover {
  color: #007bff;
}

.product-card .moq,
.product-card .price {
  font-size: 14px;
  color: #555;
  margin: 5px 0;
}

.product-card .price {
  font-weight: 600;
  color: #222;
}

.quote-btn {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.quote-btn:hover {
  background: linear-gradient(90deg, #0056b3, #0098ff);
  transform: translateY(-2px);
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .product-card img {
    height: 160px;
  }
}

/*----- Onboard Section ----*/

.onboard-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 5%;
  background: #f9fbff;
  animation: fadeInUp 1s ease both;
}

/* LEFT SIDE */
.onboard-left {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1s ease both;
}

.onboard-left h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Underline */
.onboard-left h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.steps li {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 500;
  transition: all 0.3s ease;
}

.steps li span {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  font-weight: 600;
  margin-right: 12px;
}

.steps li:hover {
  transform: translateX(5px);
  color: #007bff;
}

/* Button */
.supplier-btn {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.supplier-btn:hover {
  background: linear-gradient(90deg, #0056b3, #0098ff);
  transform: translateY(-2px);
}

/* RIGHT SIDE */
.onboard-right {
  flex: 1.2;
  min-width: 320px;
  overflow-x: auto;
  animation: slideInRight 1s ease both;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background: #f0f6ff;
  color: #1c1c1c;
  font-weight: 700;
}

.pricing-table th:nth-child(3) {
  color: #007bff;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.tick {
  color: #28a745;
  font-weight: bold;
  font-size: 18px;
}

.cross {
  color: #dc3545;
  font-weight: bold;
  font-size: 18px;
}

.limited {
  color: #ff8800;
  font-weight: 600;
}

.unlimited {
  color: #007bff;
  font-weight: 600;
}

/* Animations */
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 900px) {
  .onboard-section {
    flex-direction: column;
    text-align: center;
  }
  .onboard-left {
    align-items: center;
  }
  .steps li {
    justify-content: center;
  }
  .pricing-table {
    font-size: 16px;
  }
}

/*----- Why Choose Us -----*/

.why-choose-us {
  text-align: center;
  padding: 80px 5%;
  background: #ffffff;
  animation: fadeInUp 1s ease both;
}

.why-choose-us h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

/* Underline */
.why-choose-us h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

/* Subheading */
.why-choose-us .subheading {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Cards */
.why-card {
  background: #f9fbff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease both;
}

.why-card:hover {
  transform: translateY(-8px);
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
}

.why-card .icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.why-card:hover .icon img {
  transform: scale(1.15);
}

.why-card h3 {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on medium screens */
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* 1 per row on small screens */
  }
}

/* ----- FAQ ------*/

.faq-section {
  background: #f9fbff;
  padding: 80px 5%;
  animation: fadeInUp 1s ease both;
}

.faq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.faq-left {
  flex: 1;
}

.faq-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.faq-left h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

.faq-item {
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #e6f0ff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f1f6ff;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* FAQ Right side image */
.faq-right {
  flex: 1;
  text-align: center;
}

.faq-right img {
  max-width: 100%;
  border-radius: 12px;
  animation: fadeIn 1s ease both;
}

/* Animations */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

/*-------Footer ------*/

.site-footer {
  background: #0c1a2a;
  color: #ffffff;
  padding: 70px 5% 20px;
  position: relative;
  animation: fadeInUp 1s ease both;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  border-radius: 2px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: #bfc6d1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col ul li a:hover {
  color: #00c6ff;
  padding-left: 5px;
}

/* Contact & Social */
.footer-logo {
  width: 160px;
  margin-bottom: 15px;
  height: 24px;
}

.contact-info {
  font-size: 14px;
  color: #bfc6d1;
  margin: 6px 0;
}

.contact-info a {
  color: #00c6ff;
  text-decoration: none;
}

.mt-30 {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  transform: translateY(-3px);
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
}

.footer-bottom hr {
  width: 70%;
  margin: 0 auto 15px;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.footer-bottom p {
  font-size: 13px;
  color: #bfc6d1;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(25px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-col ul li a:hover {
    padding-left: 0;
  }
}
