/*
Theme Name: Wake Servers
Theme URI: https://wakeservers.com
Author: Wake Servers
Description: Custom theme for Wake Servers game hosting
Version: 1.0
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}




a.knowledgebase-btn {
  text-decoration: none; /* Removes the underline */
}



.plan-button {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: center;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .plan-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
    }








/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, height 0.3s ease;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.header-transparent {
  background-color: rgba(0, 0, 0, 0);
}

.header-solid {
  background-color: rgba(0, 0, 0, 0.9);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
}

.logo img {
  height: 50px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.nav-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.icon-box {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #132e59 0%, #1a1a2e 100%);
  border-radius: 8px;
  padding: 6px 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  margin-right: 20px;
}

.dropdown-parent {
  position: relative;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  background: #1a1a2e;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  padding: 5px 0;
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 150px;
}

.dropdown a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #00bfff;
  border-radius: 4px;
}

.dropdown-parent:hover .dropdown {
  display: flex;
  opacity: 1;
}

.icon-box .icon-item {
  width: 80px;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: center;
  margin: 0;
}

.icon-box .icon-item img {
  width: 16px;
  height: 16px;
  margin-bottom: 4px;
  object-fit: contain;
}

.icon-box .separator {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.icon-box .icon-item:hover {
  transform: scale(1.05);
  color: #00bfff;
}

.nav-center ul li a,
.nav-right a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-center ul li a:hover,
.nav-right a:hover {
  color: #9bb7ff;
}

.nav-center ul li a::after,
.nav-right a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff007c, #00bfff);
  transition: width 0.3s ease;
}

.nav-center ul li a:hover::after,
.nav-right a:hover::after {
  width: 100%;
}

html, body {
  background-color: #0a0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  padding: 2rem;
  padding-top: 100px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


.pricing-container::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 100px);
  background: radial-gradient(circle, transparent 0%, rgba(0, 20, 50, 0.8) 100%);
  z-index: -1;
}

.pricing-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.pricing-text {
  opacity: 0;
  animation: fadeInSlide 0.8s ease-out 0.3s forwards;
}

.plans-container {
  opacity: 0;
  animation: fadeInSlide 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.pricing-text {
  text-align: left;
  max-width: 400px;
  padding: 1.5rem;
  position: relative;
  margin-top: -42px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.pricing-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #b3b3b3;
}

.pricing-text ul {
  list-style: none;
}

.pricing-text ul li {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.pricing-text ul li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  background: linear-gradient(135deg, #8b5cf6, #e91e63);
  border-radius: 50%;
  font-size: 12px;
  color: white;
  margin-right: 8px;
  font-weight: bold;
}

.plans-section {
  flex: 1.5;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2f2f2f;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #8b5cf6;
}

input:checked + .slider:before {
  transform: translateX(30px);
}

.plans-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem;
  min-width: 800px;
  margin-top: -20px;
  margin-bottom: 12px;
}

.plan-card {
  background: linear-gradient(145deg, #1a1a1a, #252525);
  border-radius: 15px;
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.plan-card:nth-child(2) {
  animation-delay: 0.2s;
}

.plan-card:nth-child(3) {
  animation-delay: 0.4s;
}

.best-seller {
  border: 1px solid #e91e63;
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #e91e63;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.price {
  margin: 1.5rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.period {
  font-size: 1rem;
  color: #888;
}

.normal-price {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.location-select {
  margin: 1.5rem 0;
}

.location-select select {
  width: 100%;
  padding: 0.8rem;
  background: #2f2f2f;
  border: none;
  border-radius: 5px;
  color: white;
  margin-top: 0.5rem;
}

.features {
  margin: 1.5rem 0;
}

.features h4 {
  margin-bottom: 1rem;
  color: #888;
}

.features ul {
  list-style: none;
}

.features ul li {
  margin: 0.8rem 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.features ul li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  background: linear-gradient(135deg, #8b5cf6, #e91e63);
  border-radius: 50%;
  font-size: 12px;
  color: white;
  margin-right: 8px;
  font-weight: bold;
}

.plan-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.plan-button::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.plan-button:hover::after {
  left: 100%;
}

.price {
  margin: 1.5rem 0;
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.plan-card:hover .price {
  transform: scale(1.05);
}

.capacity-plans {
  margin-bottom: -1px;
}

.panel-showcase {
  margin-top: -1px;
}



.renewal-notice {
  text-align: center;
  color: #888;
  font-size: 0.8rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .plans-container {
    grid-template-columns: 1fr;
  }
}

/* Capacity Plans */
.capacity-plans {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #0f1116, #1a1f2e);
  padding: 60px 0;
  margin-top: 0px;
  z-index: 3;
}

.capacity-plans .tier-title {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(45deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -30px;
}




.capacity-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 0 2rem;
}

.capacity-card {
  background: linear-gradient(145deg, #1a1a1a, #252525);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(-100px);
  animation: fadeInLeft 0.8s ease forwards;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.capacity-card:nth-child(1) {
  animation-delay: 0.1s;
}

.capacity-card:nth-child(2) {
  animation-delay: 0.3s;
}

.capacity-card:nth-child(3) {
  animation-delay: 0.5s;
}

.capacity-card:hover {
  transform: translateY(-10px);
  border-color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.capacity-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.capacity-icon {
  font-size: 3rem;
  margin: 1rem 0;
}

.capacity-description {
  color: #b3b3b3;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.capacity-features {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.capacity-features li {
  margin: 0.8rem 0;
  color: #fff;
  display: flex;
  align-items: center;
}

.capacity-features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  background: linear-gradient(135deg, #8b5cf6, #e91e63);
  border-radius: 50%;
  font-size: 12px;
  color: white;
  margin-right: 8px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .capacity-container {
    grid-template-columns: 1fr;
  }
}

/* Panel Showcase */
.panel-showcase {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #0f1116, #1a1f2e);
  padding: 60px 0;
  margin-top: 0;
  z-index: 3;
}

.panel-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.panel-text {
  flex: 1;
}

.panel-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.panel-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #b3b3b3;
  margin-bottom: 2rem;
}

.panel-text ul {
  list-style: none;
  margin-bottom: 2rem;
}

.panel-text ul li {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
}

.panel-text ul li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  background: linear-gradient(135deg, #8b5cf6, #e91e63);
  border-radius: 50%;
  font-size: 12px;
  color: white;
  margin-right: 8px;
  font-weight: bold;
}

.panel-images {
  flex: 1.2;
  position: relative;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.panel-images::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0), rgba(233, 30, 99, 0));
  transition: all 0.3s ease;
  pointer-events: none;
}

.panel-images:hover {
  transform: scale(1.02);
}

.panel-images:hover::after {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(233, 30, 99, 0.1));
}

.panel-slide {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #8b5cf6;
  width: 45px;
  height: 45px;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.slide-nav:hover {
  transform: translateY(-50%) scale(1.1);
  color: #6d28d9;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.panel-slide.active {
  display: block;
}

.showcase-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.showcase-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.payment-methods {
  display: flex;
  gap: 0.5rem;
  margin-top: 2rem;
  align-items: center;
}

.payment-methods img {
  height: 40px;
  width: auto;
  filter: grayscale(0%) brightness(100%);
  transition: all 0.3s ease;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-methods img:hover {
  transform: translateY(-2px);
}

.payment-methods img[alt="PayPal"] {
  width: 220px;
  height: 40px;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center;
  scale: 1;
}

.payment-methods img[alt="Apple Pay"],
.payment-methods img[alt="Visa"] {
  width: 89px;
  height: 40px;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center;
  scale: 1;
}

.payment-methods img[alt="PayPal Pay"] {
  width: 110px;
  height: 40px;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center;
  scale: 1;
}

.payment-methods img[alt="Visa Pay"] {
  width: 83px;
  height: 40px;
  background: #1a1a1a;
  padding: 4px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  object-position: center;
  scale: 1;
}





/* FAQ Section */
.faq-section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #151922, #252a3d);
  padding: 80px 0;
  margin-top: 0;
  z-index: 3;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: left;
  background: linear-gradient(45deg, #8b5cf6, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-description {
  text-align: left;
  color: #b3b3b3;
  margin-bottom: 2rem;
  max-width: 700px;
}

.faq-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.faq-text-container {
  flex: 1;
}

.knowledgebase-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.knowledgebase-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.faq-grid {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: flex-start;
}

.faq-text-container {
  flex: 1;
  max-width: 500px;
}

.faq-questions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.faq-item {
  background: linear-gradient(145deg, #1a1a1a, #252525);
  border-radius: 15px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover {
  transform: translateY(-5px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.5rem;
}

.faq-header h3 {
  flex: 1;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}

.faq-toggle {
  color: #8b5cf6;
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 300px;
  margin-top: 1rem;
  opacity: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
  color: #b3b3b3;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer Styles */
#footer {
  background-color: #121212;
  color: #b3b3b3;
  padding: 40px 0;
  width: 100vw;
  margin-top: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  /* Increased gap for consistent spacing */
  align-items: flex-start;
  /* Aligns sections at the top */
}

.footer-section {
  flex: 1;
  min-width: 200px;
  text-align: center;
  /* Centers content within each section */
}

.footer-section .logo {
  display: flex;
  flex-direction: column;
  /* Stacks the logo and text */
  align-items: center;
  /* Centers logo and text horizontally */
  gap: 10px;
  /* Adjust spacing between logo and text */
}

.footer-section .logo img {
  max-height: 50px;
  /* Restricts height of logo */
  width: auto;
  object-fit: contain;
}

.footer-section .logo p {
  margin: 0;
  line-height: 1.5;
  text-align: center;
  /* Centers the text below the logo */
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  /* Consistent spacing with logo section */
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  /* Adjust for consistent spacing */
}

.footer-section ul li a {
  color: #b3b3b3;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #007bff;
}

/* Social Icons */
.footer-section .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-section .social-icons a img {
  width: 50px;
  /* Fixed width */
  height: 50px;
  /* Fixed height */
  object-fit: contain;
  /* Maintains aspect ratio without squishing */
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Smooth hover effect */
}

.footer-section .social-icons a img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  /* Highlight effect on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: #fff;
}