/* style.css */
:root {
  --primary: #ffbb00;
  --bg-dark: #0f0f0f;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --text-dark: #111111;
}

html{
    scroll-behavior: smooth;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  transition: background 0.4s, color 0.4s;
}

.theme-toggle {
  position: fixed;
  top: 20px;
  left: 15rem;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
  z-index: 999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #111;
  position: sticky;
  top: 0;
  z-index: 998;
}
.logo {
  font-size: 1.8rem;
  font-family: 'Sevillana', cursive;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--primary);
}

.logo img{
  width: 30px;
  height: 30px;
  padding-right: 2px;
  border-radius: 50%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.logo img:hover{
 transform: scale(1.6); 
}

.logo span {
  color: var(--text-light);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  transition: 0.3s ease;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.toggle-btn {
  display: none;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
}

.home {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background-color: var(--bg-dark);
}
/* Container */
.code-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 0;
}

/* Generic style for all snippets */
.code-snippet {
  position: absolute;
  color: rgba(0, 255, 0, 0.07);
  font-size: 4vw;
  font-family: 'Courier New', Courier, monospace;
  white-space: nowrap;
  user-select: none;
  animation-timing-function: linear;
}

/* Unique snippet positions and animations */
.snippet-1 {
  top: 10%;
  left: 20%;
  animation: floatCode1 32s infinite;
}
.snippet-2 {
  top: 50%;
  left: 2%;
  animation: floatCode2 20s infinite;
}
.snippet-3 {
  top: 46%;
  left: 20%;
  animation: floatCode3 35s infinite;
}
.snippet-4 {
  top: 20%;
  left: 10%;
  animation: floatCode4 22s infinite;
}

/* Keyframes for different directions */
@keyframes floatCode1 {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-300px) rotate(2deg); }
}

@keyframes floatCode2 {
  0%   { transform: translateY(0) rotate(-5deg); }
  100% { transform: translateY(-400px) rotate(-2deg); }
}

@keyframes floatCode3 {
  0%   { transform: translateY(0) rotate(3deg); }
  100% { transform: translateY(-350px) rotate(0deg); }
}

@keyframes floatCode4 {
  0%   { transform: translateY(0) rotate(-1deg); }
  100% { transform: translateY(-450px) rotate(2deg); }
}

.content {
  z-index: 1;
  max-width: 800px;
}
.brand {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(255, 187, 0, 0.5);
}
.brand span {
  color: #fff;
  text-shadow: none;
}
.tagline {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #aaa;
}
.typing {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
  height: 30px;
  margin-bottom: 2rem;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.feature-item {
  background: #1c1c1c;
  padding: 0.7rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ddd;
  font-size: 0.9rem;
  box-shadow: 0 0 10px rgba(255, 187, 0, 0.1);
}
.buttons .btn {
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  margin: 0 10px;
  background-color: var(--primary);
  color: #000;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.3);
  transition: 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 187, 0, 0.6);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #000;
}
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: var(--primary);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}
.social-icons {
  position: fixed;
  left: 15px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}
.social-icons a {
  background: #222;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  font-size: 1rem;
  transition: 0.3s ease;
}
.social-icons a:hover {
  background: var(--primary);
  color: #000;
}

body.light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}
body.light .brand span {
  color: #000;
}
body.light .btn-outline {
  color: #000;
  border-color: #000;
}
body.light .btn-outline:hover {
  background-color: #000;
  color: #fff;
}
body.light .social-icons a {
  background-color: #eee;
  color: #111;
}
body.light .social-icons a:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8); /* black at 50% opacity */
    flex-direction: column;
    width: 200px;
    padding: 1rem;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .toggle-btn {
    display: block;
  }
  .brand {
    font-size: 2.2rem;
  }
  .tagline, .typing {
    font-size: 1rem;
  }
  .buttons .btn {
    margin: 10px 0;
    display: block;
  }
  .features {
    flex-direction: column;
  }
}


/* About section */
/* About Section Styles */
.about {
  padding: 5rem 1rem;
  background: #111;
  color: #fff;
}
.about .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.intro {
  font-size: 1.1rem;
  max-width: 800px;
  margin: auto;
  margin-bottom: 3rem;
}
.what-we-do {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.item {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  width: 220px;
  text-align: center;
  transition: transform 0.3s;
}
.item i {
  font-size: 2rem;
  color: var(--primary);
}
.item:hover {
  transform: translateY(-5px);
}
.mission-vision-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.card {
  background: #1c1c1c;
  padding: 1.5rem;
  border-radius: 10px;
}
.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.card ul {
  list-style: disc;
  padding-left: 1.5rem;
  text-align: left;
}
.team-preview {
  margin-bottom: 3rem;
}
.team {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.member {
  text-align: center;
}
.member img {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.stat {
  text-align: center;
}
.stat h4 {
  font-size: 2rem;
  color: var(--primary);
}
.why-choose .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.feature {
  background: #222;
  padding: 1rem;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  transition: transform 0.3s;
}
.feature i {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.feature:hover {
  transform: scale(1.05);
}
.cta-banner {
  background: var(--primary);
  color: #000;
  padding: 2rem;
  border-radius: 10px;
}
.cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.cta-banner .btn {
  margin-top: 1rem;
  background: #000;
  color: var(--primary);
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 768px) {
  .what-we-do, .features, .stats, .team {
    flex-direction: column;
    align-items: center;
  }
  .card ul {
    padding-left: 1rem;
  }
}


/* SERVICES SECTION */
/* Services Section Styles */
.services {
  background: #111;
  color: #fff;
  padding: 5rem 1rem;
}
.services .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.services-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #aaa;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.service-card {
  background: #1c1c1c;
  padding: 2rem 1rem;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 187, 0, 0.1), transparent 70%);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease;
}
.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 187, 0, 0.2);
}
.service-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: floatIcon 4s ease-in-out infinite;
}
@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}
.service-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.95rem;
  color: #bbb;
}
.cta-banner {
  background: var(--primary);
  color: #000;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 187, 0, 0.3);
}
.cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta-banner .btn {
  background: #000;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}
.cta-banner .btn:hover {
  background: #222;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .cta-banner h3 {
    font-size: 1.4rem;
  }
}

/* projects section */
/* Projects Section Styles */
.projects {
  background: #111;
  color: #fff;
  padding: 5rem 1rem;
}
.projects .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
}
.projects-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #aaa;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.project-card {
  background: #1c1c1c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}
.project-card.visible {
  transform: translateY(0);
  opacity: 1;
}
.project-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 187, 0, 0.2);
}
.project-card img {
  width: 100%;
  height: 17rem;
  display: block;
}
.project-card .info {
  padding: 1rem;
  text-align: left;
}
.project-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.project-card p {
  font-size: 0.95rem;
  color: #ccc;
}
.project-card .tag {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.cta-banner {
  background: var(--primary);
  color: #000;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(255, 187, 0, 0.3);
}
.cta-banner h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.cta-banner .btn {
  background: #000;
  color: var(--primary);
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}
.cta-banner .btn:hover {
  background: #222;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .cta-banner h3 {
    font-size: 1.4rem;
  }
}


/* OUR TEAM SECTION */
/* Our Team Section Styles */
.team {
  background: #111;
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}
.team .container {
  max-width: 1200px;
  margin: auto;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.team-intro {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #aaa;
}
.filter-controls {
  margin-bottom: 2rem;
}
.filter-btn {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.2rem;
  margin: 0.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #000;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.team-member {
  background: #1c1c1c;
  padding: 2rem 1rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}
.team-member.visible {
  transform: translateY(0);
  opacity: 1;
}
.team-member:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 187, 0, 0.2);
}
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team-member h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: #fff;
}
.team-member p {
  font-size: 0.95rem;
  color: #bbb;
}
.team-member .tag {
  display: inline-block;
  background: var(--primary);
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

/* CONTACT SECTION */
/* Contact Section Styles */
.contact {
  background: #111;
  color: #fff;
  padding: 5rem 1rem;
  position: relative;
}
.contact .container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-intro {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 3rem;
}
.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
#contact-form {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(255, 187, 0, 0.1);
}
.input-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
#contact-form input,
#contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  background: #000;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
}
#contact-form input:focus,
#contact-form textarea:focus {
  border-color: var(--primary);
  outline: none;
}
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: var(--primary);
  color: #000;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn:hover {
  background: #ffaa00;
}
.contact-info {
  text-align: left;
  font-size: .95rem;
  color: #ccc;
}


.contact-info i {
  color: var(--primary);
  margin-right: 10px;
}
.floating-icons {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 99;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.floating-btn:hover {
  background: #ffaa00;
}
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  .input-group {
    flex-direction: column;
  }
  .floating-icons {
    transform: translateY(6vh);
    bottom: 10px;
    left: 10px;
  }
}

/* OUR PARTNERS SECTION */
.partners-section {
  padding: 80px 20px;
  background: #111;
  text-align: center;
}
.partners-section h2 {
  font-size: 2.5rem;
  color: #ffbb00;
  margin-bottom: 10px;
}
.partners-section .subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.partners-slider-wrapper {
  overflow: hidden;
  position: relative;
}
.partners-slider {
  display: flex;
  gap: 30px;
  padding: 20px 10px;
  transition: transform 0.5s ease-in-out;
}
.partner-logo {
  min-width: 200px;
  max-width: 200px;
  background: #1c1c1c;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 187, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: grab;
}
.partner-logo img {
  width: 100%;
  height: 10rem;
  object-fit: contain;
  transition: filter 0.3s ease;
}
.partner-logo span {
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.partner-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 187, 0, 0.2);
}
.partner-logo:hover img {
  filter: grayscale(100%);
}
@media screen and (max-width: 768px) {
  .partner-logo {
    min-width: 160px;
    max-width: 160px;
  }
}
@media screen and (max-width: 480px) {
  .partners-section h2 {
    font-size: 2rem;
  }
  .partner-logo span {
    font-size: 0.85rem;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background: #111;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.section-title {
  color: #ffbb00;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  margin-bottom: 50px;
}

.counters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.counter-box h3 {
  color: #ffbb00;
  font-size: 2rem;
}

.counter-box p {
  color: #ccc;
  font-size: 1rem;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial {
  flex: 0 0 100%;
  padding: 2rem;
  background: #1c1c1c;
  margin: 0 15px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 187, 0, 0.1);
  text-align: center;
  box-sizing: border-box;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #eee;
}

.testimonial h4 {
  color: #ffbb00;
  margin: 0;
  font-size: 1.2rem;
}

.testimonial span {
  color: #aaa;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    width: 380px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 458px) {
  .testimonial {
    align-items: center;
    padding-right: 1rem;
  }}

/* FOOTER SECTION */
.footer-section {
  background: #111;
  color: #eee;
  padding: 60px 20px 30px;
  box-shadow: inset 0 20px 30px rgba(255, 187, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-about h3 {
  color: #ffbb00;
  font-size: 1.8rem;
  text-shadow: 1px 1px 10px rgba(255, 187, 0, 0.3);
}

.footer-about p {
  color: #ccc;
  font-size: 1rem;
  max-width: 400px;
}

.footer-links h4 {
  color: #ffbb00;
  margin-bottom: 10px;
  font-size: 1.2rem;
  text-shadow: 1px 1px 8px rgba(255, 187, 0, 0.3);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, auto));
  gap: 8px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ccc;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links ul li a:hover {
  color: #ffbb00;
  text-shadow: 0 0 5px rgba(255, 187, 0, 0.5);
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 0.9rem;
  color: #999;
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  color: #ffbb00;
  text-decoration: none;
  font-size: 1.3rem;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.back-to-top:hover {
  transform: scale(1.2);
  text-shadow: 0 0 8px #ffbb00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
