/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #fff;
  color: #000;
  padding: 20px;
}

/* Header Section */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.logo {
  position: absolute;
  width: 50%;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
}

.header-icons {
  display: flex;
  gap: 20px;
  font-size: 14px;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 10px;
}

.header-icons i {
  margin-right: 5px;
}

/* Navbar (Below Logo) */
.navbar {
  margin-top: 60px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
  /* margin: 30px auto 20px; */
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 14px;
}

.navbar a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #666;
  text-decoration: underline !important;
}

/* Search Section */
.search-section {
  margin: 30px auto 20px;
  max-width: 400px; /* Controls full width */
  width: 100%;
}

.search-section input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #000;
  outline: none;
  box-sizing: border-box;
}

/* Button group fits container */
.button-group {
  display: flex;
  gap: 10px; /* Adjust gap as needed */
  margin-top: 10px;
}

.button-group button {
  flex: 1;
  padding: 14px 0;
  font-size: 16px; /* Increased font size */
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* Hover effect */
.button-group button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}



/* Hosting Package Box */
.package-box {
  border: 2px solid #000; /* Make it more visible */
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
  background-color: #fff; /* Ensure background is white */
}

.package-box h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}

.package-box p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.package-box ul {
  padding-left: 20px;
}

.package-box li {
  font-size: 14px;
  line-height: 1.6;
}

/* Order Button */
.order-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0; /* Sharp edges */
  transition: all 0.2s ease;
}

.order-btn:hover:enabled {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Optional: Add smooth opacity transition */
.order-btn {
  transition: opacity 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.orderbtn-subtext {
  display: block;
  margin-top: 0px; /* Adjust as needed */
  font-size: 3px;
}

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

.payment-icons i {
  font-size: 50px;
  color: #000;
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.payment-icons i:hover {
  transform: scale(1.2);
  color: #000;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 13px;
}

/* Checkout Page Layout */
.checkout-container {
  display: flex;
  justify-content: flex-start; /* keeps left-aligned layout */
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  position: relative;

}

/* Form Section */
.checkout-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto; /* centers the form block */
  text-align: left;
  padding-top: 10px;
}

/* Form Fields */
.checkout-form input {
  width: 100%;
  padding: 12px;
  margin: 2px 0;
  font-size: 16px;
  border: 2px solid #000;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  appearance: none;           /* Removes default OS dropdown style */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.checkout-form select.input-field {
  width: 100%;
  padding: 12px;
  margin: 2px 0;
  font-size: 16px;
  border: 2px solid #000;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  cursor: pointer;
}

/* Buttons */
.checkout-form button {
  width: 100%;
  padding: 14px 0;
  margin-top: 4px;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
  text-align: center;
  line-height: 0.8;
}

.checkout-form button + button {
  margin-top: 6px; /* smaller gap between buttons */
}

.checkout-form button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.button-subtext {
  display: inline-block;
  margin-top: 0px; /* Adjust as needed */
  font-size: 10px;
  font-weight: inherit;
}

/* Cart Summary */
.cart-summary {
  position: absolute;
  right: 0;
  top: 0;
  width: 280px;
  border: 2px solid #000;
  padding: 20px;
  font-size: 14px;
  text-align: left;
}

.cart-summary h3 {
  text-align: center;
  margin-bottom: 15px;
}

/* Status message below domain input */
#statusMessage {
  margin-top: 8px;
  font-weight: bold;
  font-size: 14px;
  color: green;
}

/* Change style of ADDED buttons */
.button-group button.added {
  background-color: #008000; /* green */
  color: #fff;
  cursor: default;
  border: none;
}

.button-group button.added:hover {
  background-color: #008000;
  color: #fff;
  border: none;
}

/* Dashboard Page Container */
.dashboard-container {
  max-width: 1200px;
  margin: 40px auto;
  text-align: left;
}

/* Dashboard Page Title */
.dashboard-container h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

/* My Services Page: Two Credentials Boxes */
.credentials-container {
  border: 2px solid #000;
  padding: 20px;
  background-color: #fff;
  margin-top: 20px;
}
.credentials-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.credential-card {
  flex: 1 1 400px;
  border: 2px solid #000;
  background-color: #fff;
  padding: 20px;
  min-width: 300px;
}

.credentials-inner {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-column,
.right-column {
  flex: 1;
  min-width: 300px;
}

.credentials-container h3 {
  margin-top: 0;
}

.credentials-container p {
  margin-bottom: 15px;
  line-height: 1.6;
}


.credential-card strong {
  display: inline-block;
  width: 100px;
  font-weight: bold;
}

/* Three column layout for dashboard sections */
.credentials-inner.three-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

/* Shared styling for each column */
.credentials-inner.three-columns .column {
  text-align: left;
}

.credentials-inner.three-columns .column h3 {
  margin-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.credentials-inner.three-columns .column p {
  margin-bottom: 20px;
  font-size: 14px;
}

.credentials-inner.three-columns .column a {
  text-decoration: underline;
  color: #000;
  font-weight: bold;
}

.column a i.fa-pencil-alt {
  font-size: 13px;
  vertical-align: middle;
  color: #000;
  cursor: pointer;
}

.column a i.fa-pencil-alt:hover {
  color: #555;
}

.nameserver-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.ns-lines {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}

.nameserver-block i.fa-pencil-alt {
  font-size: 14px;
  color: #000;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nameserver-block i.fa-pencil-alt:hover {
  color: #555;
}

/* 4-column in profile */
.credentials-inner.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* 6-column layout */
.credentials-inner.six-columns {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* 7-column layout */
.credentials-inner.seven-columns {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* 8-column layout */
.credentials-inner.eight-columns {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* 9-column layout */
.credentials-inner.nine-columns {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
  margin-top: 10px;
}

/* Optional: Status tags styling */
.status {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  display: inline-block;
  line-height: 1.4;
}


.status.inactive {
  background-color: #f5f5f5;
  color: #999;
}

.status.in-process {
  background-color: #fff3cd;
  color: #856404;
}

.status.active {
  background-color: #d4edda;
  color: #155724;
}


/* My Domains Page: Domain Blocks */
.domains-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.domain-item {
  border: 2px solid #000;
  padding: 20px;
  background-color: #fff;
  font-size: 14px;
}

.domain-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.domain-status {
  font-weight: bold;
  margin-bottom: 8px;
  display: inline-block;
}

.nameservers {
  margin-bottom: 10px;
}

.nameservers span {
  display: block;
  line-height: 1.4;
}

.edit-ns {
  font-size: 13px;
  color: #000;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 8px;
  display: inline-block;
}

.edit-ns i {
  margin-right: 4px;
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .credentials-boxes {
    flex-direction: column;
    align-items: center;
  }

  .credential-card {
    width: 100%;
  }
}

.dash-navbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px auto 20px;
  padding: 10px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  font-weight: bold;
  font-size: 14px;
}

.dash-navbar a {
  text-decoration: none;
  color: #000;
  transition: color 0.2s ease;
}

.dash-navbar a:hover {
  color: #666;
}

.dashboard-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  border: 2px solid #000;
  padding: 20px;
  background-color: #fff;
}

.dashboard-columns .column h3 {
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}

.data-row {
  padding: 12px 10px;
  font-size: 14px;
  border-top: 1px solid #eee;
  text-align: center;
}

/* Nameserver row styling */
.nameserver-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.nameserver-block .ns-lines {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-align: left;
}

.nameserver-block i.fa-pencil-alt {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.nameserver-block i.fa-pencil-alt:hover {
  color: #555;
}

.three-column-table {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 20px auto;
  border: 2px solid #000;
  background: #fff;
}

.table-row {
  display: flex;
  border-top: 1px solid #eee;
  padding: 12px 10px;
}

.table-header {
  background: #f5f5f5;
  font-weight: bold;
  border-top: none;
}

.table-col {
  flex: 1;
  text-align: center;
  font-size: 14px;
}

/* Nameserver cell styles */
.nameserver-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.ns-list {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-align: left;
  flex: 1;
}

.nameserver-cell i.fa-pencil-alt {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}

.nameserver-cell i.fa-pencil-alt:hover {
  color: #555;
}

.full_width_input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

.form_label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.password-wrapper {
  position: relative;
}

.input-field {
  width: 100%;
  padding: 10px 40px 10px 10px; /* add space for eye icon */
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #333;
  font-size: 16px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 25px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.quick-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}

.quick-action-card {
  background-color: #000;
  color: #fff;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background-color 0.3s ease;
}

.quick-action-card:hover {
  background-color: #333;
}

.quick-action-card i {
  font-size: 20px;
  margin-bottom: 5px;
}


.action-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  text-align: center;
}

.action-btn:hover {
  background-color: #333;
}

/* Disabled order button look is already handled:
   .order-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
     pointer-events: none;
   }
*/

/* Admin Dashboard */
.admin-dash-nav {
  margin: 20px 0;
  background: #222;
  padding: 10px;
  border-radius: 6px;
}

.admin-dash-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
}

.admin-dash-nav li a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  border-radius: 4px;
  transition: 0.3s ease;
}

.admin-dash-nav li a:hover {
  background: #444;
  color: #fff;
}


/* ─────────────────────────────────────────────
   Admin Dashboard Quick Actions (Shared Styling)
────────────────────────────────────────────── */

.admin-quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.admin-quick-action-card {
  background: #000;
  color: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.admin-quick-action-card:hover {
  background: #111;
  transform: translateY(-4px);
}

.admin-quick-action-card i {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: #fff;
}

.admin-quick-action-card p {
  text-align: left;
  margin: 4px 0;
}
.menu-toggle,
.navbar-icons {
  display: none;
}

/* mobile view */

/* Fix mobile header layout */
@media (max-width: 768px) {
  header {
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    flex-direction: column;
  }

  .logo {
    position: static;
    transform: none;
    width: 160px;
    margin: 0 auto;
    display: block;
  }

  .header-icons {
    display: none; /* Hide original icons, move to navbar */
  }

  .menu-toggle {
    display: block;
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
  }

  /* Slide-out menu */
  .navbar {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #fff;
    position: fixed;
    top: -30px;
    left: -100%;
    width: 250px;
    height: 100%;
    padding: 0px 20px 20px;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .navbar.show {
    left: 0;
    display: flex;
  }

  .navbar a {
    padding: 14px 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
    border-bottom: 1px solid #eee;
  }

  /* Add icons (login, cart) to top of nav */
  .navbar::before {
    content: '';
    display: block;
    height: 1px;
    background: #ccc;
    width: 100%;
    margin-bottom: 10px;
  }

  .navbar-icons {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }

  .navbar-icons i {
    font-size: 18px;
    color: #000;
  }

  /* Fix input spacing under new layout */
  .search-section {
  margin: 30px auto 20px;
  max-width: 400px; /* Controls full width */
  width: 100%;
}

.search-section input[type="text"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  text-align: center;
  border: 2px solid #000;
  outline: none;
  box-sizing: border-box;
}

/* Button group fits container */
.button-group {
  display: flex;
  gap: 10px; /* Adjust gap as needed */
  margin-top: 10px;
}

.button-group button {
  flex: 1;
  padding: 14px 0;
  font-size: 16px; /* Increased font size */
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

/* Hover effect */
.button-group button:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}



/* Hosting Package Box */
.package-box {
  border: 2px solid #000; /* Make it more visible */
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
  background-color: #fff; /* Ensure background is white */
}

.package-box h3 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 24px;
}

.package-box p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.package-box ul {
  padding-left: 20px;
}

.package-box li {
  font-size: 14px;
  line-height: 1.6;
}

/* Order Button */
.order-btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  border-radius: 0; /* Sharp edges */
  transition: all 0.2s ease;
}

.order-btn:hover:enabled {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.order-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Optional: Add smooth opacity transition */
.order-btn {
  transition: opacity 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.orderbtn-subtext {
  display: block;
  margin-top: 0px; /* Adjust as needed */
  font-size: 3px;
}

  /* Dashboard and multi-columns collapse to 1 */
  .credentials-inner.four-columns,
  .credentials-inner.three-columns,
  .credentials-inner.six-columns,
  .credentials-inner.seven-columns,
  .credentials-inner.eight-columns,
  .credentials-inner.nine-columns {
    grid-template-columns: 1fr !important;
  }

  .dashboard-columns {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
    width: 100%;
    margin-top: 30px;
  }

  .checkout-container {
    flex-direction: column;
    padding: 0 10px;
  }
}

/* Close button (X) for mobile navbar */
.nav-close {
  display: none;
}

@media (max-width: 768px) {
  .nav-close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: #000;
    z-index: 1002;
  }

  .navbar a::before {
    content: none !important; /* Remove '|' if it’s inserted via CSS or HTML */
  }

  .navbar a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.4;
  }

  .navbar a:last-child {
    border-bottom: none;
  }
}



/* VPS Swiper Container - Outer, Centers Everything */
.vps-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
}

.swiper-container-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mySwiper {
  width: 100%;
  max-width: 400px;
  min-height: 100px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: 60% !important;
  transform: translateY(-50%) !important;
  color: #000 !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 32px !important;
  z-index: 10;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}
.swiper-button-prev { left: -54px !important; }
.swiper-button-next { right: -54px !important; }
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 44px !important;
}

/* Responsive: adjust arrows for small screens but always show */
@media (max-width: 600px) {
  .search-section,
  .swiper-container-wrapper,
  .mySwiper,
  .package-box { max-width: 99vw; }
  .swiper-button-prev { left: -32px !important; }
  .swiper-button-next { right: -32px !important; }
  .swiper-button-prev, .swiper-button-next { width: 34px !important; height: 34px !important; font-size: 20px !important; }
}

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px;
  font-size: 14px;
  color: #444;
  text-align: left;
  border-top: 1px solid #e1e1e1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  text-align: left; /* override body center */
}

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}


.footer-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  color: #222;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: #007bff;
}

.footer-social {
  text-align: center;
  margin: 30px 0 10px;
}

.footer-social a {
  margin: 0 8px;
  font-size: 18px;
  color: #555;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-copy {
  text-align: center;
  color: #888;
  font-size: 13px;
  margin-top: 10px;
}

/* ✅ Mobile tweaks */
@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 100%;
    text-align: center;
  }
}
