@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #56ccf2 0%, #2371f7 100%);
  color: #fff;
}


/* Background */
.background {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 160%;
  top: -20%;
  left: -30%;
  opacity: 1;
  pointer-events: none;
  transition: transform 0.1s ease-out;
}

/* Navbar */
/* NAVBAR DESKTOP */
.navbar {
  width: 100%;
  position: absolute;  /* <-- This is the key change! */
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent !important;
  z-index: 99;
  padding: 24px 5vw 14px 5vw; /* You can reduce this if you want a slimmer navbar */
  transition: top 0.28s cubic-bezier(.4,0,.2,1), opacity 0.17s;
}
.logo img {
  height: 52px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 120;
  transition: opacity 0.16s;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: var(--primary-plum);
  border-radius: 2px;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px);}
.hamburger.active span:nth-child(2) { opacity: 0;}
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(8px, -8px);}
.nav-menu { position: relative; }
.nav-links {
  list-style: none;
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links li a {
  font-size: 1.09rem;
  font-family: var(--font-heading);
  color: var(--deep-slate);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  transition: color 0.17s;
  padding: 4px 0;
}
.nav-links li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background: var(--primary-plum);
  border-radius: 2px;
  transition: width 0.21s cubic-bezier(.4,0,.2,1);
  margin-top: 6px;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }

/* MOBILE NAVBAR */
@media (max-width: 900px) {
  .navbar { padding: 14px 4vw 10px 4vw; }
  .logo img { height: 68px; max-width: 94vw; }
  .hamburger { display: flex; margin-left: auto; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    min-height: 44vh;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(16px) saturate(170%);
    box-shadow: 0 10px 38px rgba(94, 39, 80, 0.14);
    z-index: 110;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    border: 1.3px solid rgba(94, 39, 80, 0.10);
    transition: opacity 0.18s;
    animation: slideDown 0.24s;
    padding-top: 6px;
    padding-bottom: 12px;
    overflow: hidden;
  }
  .nav-menu.active {
    display: block;
    animation: slideDown 0.24s;
  }
  @keyframes slideDown {
    from { transform: translateY(-45px) scale(0.97); opacity: 0.85;}
    to { transform: translateY(0) scale(1); opacity: 1;}
  }
  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
    padding: 24px 0 8px 0;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links li a {
    font-size: 1.08rem;
    color: var(--primary-plum);
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-block;
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 11px 0 5px 0;
    text-decoration: none;
  }
  .nav-links li a::after {
    margin: 0 auto;
    width: 0%;
    height: 3px;
    background: var(--primary-plum);
    border-radius: 2px;
    transition: width 0.23s cubic-bezier(.4,0,.2,1);
    margin-top: 4px;
  }
  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    width: 65%;
  }
  .nav-links li a:hover, .nav-links li a.active {
    background: none !important;
    color: var(--primary-plum);
    box-shadow: none !important;
  }
}
@media (max-width: 480px) {
  .navbar { padding: 11px 2vw 8px 2vw; }
  .nav-menu {
    top: 44px;
    min-height: 33vh;
    border-radius: 0 0 13px 13px;
    padding-top: 6px;
    padding-bottom: 7px;
  }
  .nav-links { gap: 9px; padding: 16px 0 4px 0; }
  .nav-links li a { font-size: 0.98rem; padding: 9px 0 4px 0; }
  .nav-links li a::after { height: 2.5px; margin-top: 3px; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
  z-index: 2;
}


.hero * {
  pointer-events: auto;
}

.hero-text h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #fff;
}

#typed-subtext {
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.8px;
  line-height: 1.4;
  color: #ddd;
  margin-bottom: 30px;
  white-space: nowrap;
  overflow: hidden;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-outline, .btn-fill {
  padding: 10px 22px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 24px;
  transition: 0.3s ease;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background-color: #0055ff;
  border-color: #0055ff;
}

.btn-fill {
  background-color: #0055ff;
  color: #fff;
  border: none;
}

.btn-fill:hover {
  background-color: #003bbd;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #0055ff;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 6px 18px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover {
  background-color: #003bbd;
  transform: scale(1.1);
}

.floating-btn .arrow-icon {
  display: inline-block;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

/* Cursor */
.cursor {
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.down-arrow {
  font-size: 22px;
  color: #ffffffbb;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, 10px);
  }
  60% {
    transform: translate(-50%, 5px);
  }
}

/* About Section */
.about-section {
  background-color: transparent;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  margin: 40px auto;
  max-width: 1100px;
}

.about-container h2 {
  font-size: 48px;
  margin-bottom: 12px;
  color: #fff;
}

.about-container .subtitle {
  font-size: 22px;
  color: #ccc;
  margin-bottom: 28px;
}

.about-text {
  font-size: 20px;
  color: #ddd;
  max-width: 1000px;
  margin: 0 auto 60px;
  line-height: 1.7;
  padding: 0 20px;
}

.about-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.column {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 40px 30px;
  max-width: 480px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #fff;
}

.column p {
  font-size: 17px;
  line-height: 1.6;
  color: #eee;
}

.column:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  #typed-subtext {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .about-columns {
    flex-direction: column;
    gap: 30px;
  }
}


/* Services Section */
.services-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.services-container h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 10px;
}

.services-container .subtitle {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 40px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;        /* Horizontally center content */
  justify-content: center;    /* Vertically center content */
  text-align: center;         /* Center text */
  min-height: 120px;          /* Or higher if you want bigger cards */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 30px 20px;         /* Padding for balance */
  margin-bottom: 30px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: 
    transform 0.13s cubic-bezier(.35,1,.42,1),
    box-shadow 0.13s cubic-bezier(.35,1,.42,1),
    background 0.11s;
  cursor: pointer;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;        /* Center horizontally */
  justify-content: center;    /* Center vertically */
  width: 100%;
  height: 100%;
}


/* Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 768px) {
  .topnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  #typed-subtext {
    font-size: 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .about-columns {
    flex-direction: column;
    gap: 30px;
  }

  .service-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Scroll Down Arrow */
.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: opacity 0.5s ease;
}

.scroll-indicator.hidden {
  opacity: 0;
}

.down-arrow {
  animation: bounceArrow 1.6s infinite;
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(8px);
  }
  60% {
    transform: translateY(4px);
  }
}

/* Team Section Styles */
.team-section {
  background-color: transparent;
  padding: 60px 20px;
  text-align: center;
}

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

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  font-family: 'Fragment Mono', monospace;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

/* Ensure consistent width */
.team-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
}


.team-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  background-color: #888;
}

.team-name {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: #fff; /* Tailwind orange-ish tone for highlight */
  font-weight: 500;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 13px;
  color: #fff;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-grid {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }
}


/* Testimonials Section */
.testimonials-section {
  /* Remove: background-color: #0a0a0a; */
  background: none;  /* Just inherit the body gradient */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Fragment Mono', monospace;
}
.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #ffffff;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 20px;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #dddddd;
}

.testimonial-author {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffffff;
}

.testimonial-role {
  font-size: 16px;
  color: #bbbbbb;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 15px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.testimonial-controls button:hover {
  background-color: #0055ff;
  border-color: #0055ff;
}


.frosted-footer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 40px 20px 20px; /* Reduced vertical padding */
  color: #fff;
  font-family: 'Fragment Mono', monospace;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.footer-col {
  flex: 1 1 200px;
  max-width: 300px; /* Prevent overly wide columns */
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.footer-heading {
  font-size: 17px;
  margin-bottom: 12px;
  color: #fff;
  font-weight: bold;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 8px;
  color: #ddd;
  font-size: 14px;
}

.footer-col span,
.footer-col .non-link-email {
  display: block;
  margin-top: 4px;
  color: #fff;
}

.footer-links li {
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 13px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
}

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

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.hero {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  text-align: center;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}


.carousel-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1);
  filter: brightness(0.7) saturate(1.2); /* No blur */
}

.carousel-img.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(130deg, rgba(86,204,242,0.40) 0%, rgba(35,113,247,0.48) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-text, .scroll-indicator {
  position: relative;
  z-index: 10;
}

/* Make sure text is always crisp */
.hero-text h1,
.hero-text p {
  color: #fff;
  text-shadow: 0 3px 18px rgba(20,60,120,0.13);
}


.subcta {
  font-size: 1.06rem;
  color: #e5f2ff;
  margin-top: 10px;
  margin-bottom: 34px;  /* Increase this for more space! */
  letter-spacing: 0.01em;
  font-family: inherit;
  opacity: 0.92;
  text-shadow: 0 1px 10px rgba(40,100,220,0.08);
  transition: opacity 0.3s;
}


.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 18px 44px 0 rgba(30,60,160,0.18), 0 3px 14px 0 rgba(40,100,220,0.09);
  background: rgba(255,255,255,0.12);
  border-color: #fff7;
  outline: none;
}

.hero-bg-overlay {
  background: transparent !important;
}


.trusted-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(35,113,247,0.09) 100%);
  padding: 78px 0 58px 0;
  margin: 0;
}

.trusted-container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 1480px;
  margin: 0 auto;
  gap: 48px;
  flex-wrap: wrap;
  padding: 0 32px;
}

.trusted-left {
  flex: 1 1 330px;
  min-width: 300px;
}

.trusted-section h2 {
  font-size: 3.1rem;
  color: #19223e;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.trusted-highlight {
  color: #2371f7;
  font-weight: 900;
  display: block;
}

.trusted-subtext {
  color: #393939;
  font-size: 1.23rem;
  margin-top: 16px;
  letter-spacing: 0.01em;
}

.trusted-logos-panel {
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 36px 0 rgba(50,80,190,0.07);
  padding: 30px 44px;
  display: flex;
  align-items: center;
  gap: 56px;
  flex: 3 1 740px;
  justify-content: center;
  flex-wrap: wrap;
  min-width: 380px;
}

.trusted-logos-panel img {
  height: 74px;
  width: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 11px;
  box-shadow: 0 4px 18px 0 rgba(60,80,120,0.08);
  margin: 0 8px;
  transition: transform 0.16s, box-shadow 0.19s;
  filter: drop-shadow(0 1px 9px rgba(60,90,200,0.04));
}

.trusted-logos-panel img:hover {
  transform: scale(1.09) translateY(-5px);
  box-shadow: 0 14px 32px 0 rgba(60,100,200,0.16);
  filter: drop-shadow(0 2px 12px rgba(35,113,247,0.18));
}

/* Responsive */
@media (max-width: 1100px) {
  .trusted-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
    padding: 0 18px;
  }
  .trusted-logos-panel {
    gap: 30px;
    padding: 20px 10px;
    min-width: 0;
  }
  .trusted-section h2 {
    font-size: 2.3rem;
  }
}
@media (max-width: 700px) {
  .trusted-section h2 {
    font-size: 1.3rem;
  }
  .trusted-highlight {
    font-size: 1.13em;
  }
  .trusted-logos-panel img {
    height: 40px;
    margin: 0 4px;
  }
  .trusted-logos-panel {
    gap: 13px;
    border-radius: 12px;
    padding: 10px 2px;
  }
}

.hero-text {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
  word-break: break-word;        /* ensures long words wrap */
  white-space: normal;           /* allows multiple lines */
}

.hero-text h1, .hero-text #typed-title {
  font-family: 'Montserrat', 'Fragment Mono', Arial, sans-serif;
  font-size: 2.7rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 22px;
  line-height: 1.13;
  text-shadow: 0 2px 14px rgba(0,0,0,0.22);
  min-height: 3.1em; /* So it doesn't jump around during typing */
}

.hero-text p, .hero-text #typed-subtext {
  font-size: 1.15rem;
    color: #e2ecff;
    margin-bottom: 38px;
    line-height: 1.5;
    min-height: 2.5em;
    white-space: normal;           /* allows wrapping */
    word-break: break-word;
    display: block;
}

@media (max-width: 900px) {
  .hero-text h1, .hero-text #typed-title {
    font-size: 1.5rem;
    min-height: 2.2em;
  }
  .hero-text p, .hero-text #typed-subtext {
    font-size: 1rem;
    min-height: 2em;
  }
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  font-size: 26px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  color: #00bfff; /* Accent colour on hover */
  transform: scale(1.1);
}

