/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  color: #222;
  background: #f0f4f9;
}

a {
  text-decoration: none;
}

/* HEADER (Transparent with Logo + Menu) */
.simple-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 4rem 1rem 2rem;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}

.logo {
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6));
}

.simple-menu {
  padding-top: 1rem;
  display: flex;
  gap: 2rem;
}

.simple-menu a {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 5px #000;
  transition: color 0.3s ease;
  text-decoration: none;
}

.simple-menu a:hover {
  color: #f4c430;
}
/* HAMBURGER MENU STYLES */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 11;
}

/* Responsive Menu for Small Screens */
@media (max-width: 768px) {
  .simple-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
  }

  .simple-menu.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .logo {
    height: 70px;
  }
}
/* HERO SECTION */
.hero {
  position: relative;
  height: 64rem;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  padding: 2rem;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  margin-left: 29rem;
  max-width: 900px;
  border-radius: 10px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 2rem;
  line-height: 1.4;
}
.inner-hero {
  position: relative;
  height: 24rem;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: right;
  padding: 2rem;
}
.inner-hero-overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 800px;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero {
    text-align: center;
  }

  .hero-overlay {
    margin-left: 0;
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 4rem 1.5rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-overlay {
    padding: 1rem;
  }
}

/* ✨ Business Card Hover Section */
.hover-card-section {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -5rem; /* 👈 pulls up into hero */
  margin-bottom: 4rem; /* 👈 pushes into engagement */
  padding: 0 2rem;
}

.hover-card {
  position: relative;
  width: 380px;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  background-color: #000;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hover-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

.hover-card .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  transition: background 0.4s ease;
}

.hover-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hover-card p {
  font-size: 14px;
  opacity: 0;
  max-height: 0;
  transition:
    opacity 0.4s ease,
    max-height 0.4s ease;
}

.hover-card .learn-btn {
  margin-top: 1rem;
  padding: 8px 20px;
  border: 1.5px solid white;
  background: transparent;
  color: white;
  font-size: 13px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hover-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.5);
}

.hover-card:hover .hover-content {
  background: rgba(0, 70, 100, 0.8);
}

.hover-card:hover p,
.hover-card:hover .learn-btn {
  opacity: 1;
  max-height: 100px;
}

@media (max-width: 768px) {
  .hover-card-section {
    position: static;
    transform: none;
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .hover-card {
    width: 90%;
    height: 300px;
  }
}

/* Rest of your CSS remains unchanged below */

/* ... [rest of original CSS from user continues here] ... */

/* SECTIONS BASE */
.our-team,
.sectors,
.testimonials,
.join {
  padding: 2rem;
  text-align: center;
  background: #fff;
}
.engagement-split {
  background-color: #003d5b;
  position: relative;
  display: flex;
  height: 120vh;
  overflow: hidden;
  margin-top: 5rem;
}

.engagement-left {
  flex: 1;
  position: relative;
  z-index: 1;
}

.engagement-video {
  width: 65%;
  height: 100%;
  object-fit: cover;
}
.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.engagement-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  padding: 2rem;
  max-width: 600px;
}

.engagement-box {
  background: #fff;
  padding: 3rem;
  border-radius: 0px;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

.engagement-box h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #1d1d1d;
}

.engagement-box p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .engagement-split {
    flex-direction: column;
  }

  .engagement-right {
    position: relative;
    transform: none;
    top: 0;
    right: 0;
    padding: 1rem;
    margin-top: -100px;
  }

  .engagement-box {
    width: 100%;
    padding: 1rem;
  }
}

.member-carousel {
  background: #f0f4f9;
  padding: 3.5rem 1rem 2rem 1rem;
  text-align: center;
  position: relative;
}

.member-carousel h2 {
  font-size: 2rem;
  color: #003d5b;
  margin-bottom: 2rem;
}

.carousel-wrapper {
  position: relative;
  max-width: 900px; /* Medium max width */
  padding: 0 60px;
  overflow: hidden;
  margin: auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 1.8rem;
}

.carousel-slide {
  flex: 0 0 90%;
  max-width: 900px;
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.4s ease;
  aspect-ratio: 16 / 9; /* Medium aspect ratio */
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-height: 400px; /* Medium height */
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Show full image with text */
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  max-height: 400px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: #003d5b;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}
.carousel-btn:hover {
  background: #0090d7;
}

.carousel-btn.prev {
  left: 15px;
}

.carousel-btn.next {
  right: 15px;
}

.carousel-contact-btn {
  display: inline-block;
  margin: 2.5rem auto 0 auto;
  padding: 1rem 2.5rem;
  background: #003d5b;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  letter-spacing: 0.5px;
}
.carousel-contact-btn:hover {
  background: #0090d7;
  color: #fff;
}

/* Tablet */
@media (max-width: 900px) {
  .carousel-wrapper {
    max-width: 95vw;
    padding: 0 30px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .carousel-slide {
    flex: 0 0 95%;
    max-width: 95vw;
    aspect-ratio: 16 / 9;
    max-height: 300px;
  }
  .carousel-slide img {
    border-radius: 8px;
    max-height: 300px;
  }
}

/* Phone */
@media (max-width: 600px) {
  .member-carousel {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
  }
  .carousel-wrapper {
    max-width: 99vw;
    padding: 0 15px;
  }
  .carousel-slide {
    flex: 0 0 98%;
    max-width: 98vw;
    aspect-ratio: 4 / 3;
    max-height: 180px;
  }
  .carousel-slide img {
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    max-height: 180px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* JOIN FORM */
.form-box {
  display: grid;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
  padding-top: 1rem;
}

.form-box input,
.form-box select,
.form-box button {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.form-box button {
  background: #003d5b;
  color: white;
  border: none;
  cursor: pointer;
}

.textbox {
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 100%;
}

/* TESTIMONIALS */
.testimonials blockquote {
  font-style: italic;
  margin: 1.5rem auto;
  max-width: 600px;
  padding: 1rem;
  border-left: 5px solid #007ea7;
  background: #f7f7f7;
}

/* FOOTER */
footer {
  background: #003d5b;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* MAP SECTION */
.map-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.section-title {
  color: #003d5b;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
}

/* Contains Europe + USA side by side */
.map-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Individual map card */
.map-box {
  width: 29%;
  background: #ffffff;
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.map-box h2 {
  color: #003d5b;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Map image container */
.map-image {
  position: relative;
  width: 100%;
}

.map-img {
  width: 100%;
  border-radius: 12px;
}

/* Marker style */
.marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #d62828;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .map-box {
    width: 100%;
    max-width: 430px;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* SERVICES SECTION */
.services {
  padding: 3rem 2rem;
  background: #003d5b;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  color: #f0f4f9;
  margin-bottom: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img,
.service-card video {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: #003d5b;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #003d5b;
  line-height: 1.5;
}
.service-card1 {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.service-card1 ul li {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 0.4rem;
}
.service-card1 h3 {
  font-size: 1.1rem;
  color: #003d5b;
  margin-bottom: 25px;
}

.service-card1 p {
  font-size: 0.95rem;
  color: #003d5b;
  line-height: 1.5;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .services {
    padding: 2rem 1rem;
  }

  .services h2 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card img {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .services h2 {
    font-size: 1.8rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }

  .service-card img {
    height: 150px;
  }
  .engagement-video {
    width: 100% !important;
  }
  .scroll-banner {
    font-size: 1rem !important;
  }
  .our-sectors-horizontal {
    background-size: contain !important;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.our-sectors-horizontal {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background-image: url("../images/industry.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px; /* space for heading */
}

.our-sectors-horizontal h2 {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 2.2em;
  color: #f0d87d; /* gold */
  margin: 0;
  z-index: 10;
  pointer-events: none;
  font-family: "Montserrat", Arial, sans-serif;
  letter-spacing: 0.04em;
}

.sectors-wrapper {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  position: relative;
}

.sectors-track {
  display: flex;
  gap: 40px;
  align-items: center;
  height: 100%;
  padding-bottom: 40px;
}

.sector-card {
  position: relative;
  min-width: 360px;
  max-width: 360px;
  height: 420px;
  background: transparent; /* remove background and border */
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.sector-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.4s ease;
  z-index: 1;
}

.sector-text {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 15px;

  color: #ffffff; /* dark blue text on gold overlay */
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
  letter-spacing: 0.03em;
  border-radius: 0 0 18px 18px;
  user-select: none;
  background: #00000054;
}
.sector-text h4 {
  margin: 0 0 10px 0;
  font-size: 2.5rem;
}
.sector-text h6 {
  font-size: 20px;
}

.sector-card:hover {
  transform: translateY(-10px) scale(1.05);
}

.sector-card:hover img {
  transform: scale(1.1);
  filter: brightness(0.85);
}

/* Responsive */
@media (max-width: 900px) {
  .sector-card {
    min-width: 260px;
    max-width: 260px;
    height: 320px;
  }
  .sector-text {
    font-size: 1.2rem;
    padding: 15px 10px;
  }
  .our-sectors-horizontal h2 {
    font-size: 1.5em;
    top: 24px;
  }
}

/* Hiring Section */
.hiring-section {
  background: #f8faff;
  padding: 70px 20px;
  text-align: center;
}

.hiring-container {
  max-width: 800px;
  margin: auto;
}

.hiring-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #003d5b; /* Blue from your brand */
}

.hiring-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hiring-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.resume-input {
  padding: 12px;
  border: 2px solid #106ebe;
  border-radius: 8px;
  width: 80%;
  max-width: 350px;
  background: #fff;
  cursor: pointer;
}

.hiring-btn {
  background: #003d5b;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.hiring-btn:hover {
  background: #007bb8;
}

/* Professional Backgrounds for Sections */

.our-members {
  background: #eaf1f8;
}

.testimonials {
  background: #fdfdfd;
}

.join {
  background: #f3f6fa;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
}

.success-story {
  padding: 60px 20px;
  background-color: #003d5b;
  color: #fff;
  text-align: center;
}

.success-story h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  box-shadow: 0 8px 50px rgba(169, 169, 169, 0.6);
  background-color: #fff;
  color: #000;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
}

.card-image .tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #003d5b;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  text-transform: uppercase;
}

.card-image.overlay-hover {
  position: relative;
}

.card-image.overlay-hover .hover-text {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 5px 12px;
  font-size: 0.9rem;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .overlay-hover .hover-text {
  opacity: 1;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.card-content .date {
  font-size: 0.8rem;
  color: #666;
}

/* 🔁 Scrolling Background Text Section */
.scroll-banner {
  background: #f0f4f9;
  color: #003d5b;
  font-size: 2rem;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  text-transform: uppercase;
  padding: 3rem 0;
  text-align: center;
}

/* .scroll-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollLeft 15s linear infinite;
} */

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.finn-footer {
  position: relative;
  background: #232323;
  color: #fff;
  overflow: hidden;
  padding-top: 56px;
  padding-bottom: 0;
  min-height: 400px; /* Medium height */
}

.footer-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../thefinngroup.com.au/wp-content/uploads/2021/05/footer-bg.html")
    center center no-repeat;
  background-size: cover;
  opacity: 0.13;
  z-index: 0;
}

.footer-main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* Align columns from the left */
  align-items: flex-start;
  padding-bottom: 28px;
  gap: 40px; /* Consistent spacing between columns */
}

.footer-logo-section {
  flex: 1 1 280px;
  min-width: 220px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 48px;
  flex: 3 1 600px; /* Spread columns evenly */
  min-width: 320px;
  justify-content: flex-start; /* Align columns from the left */
}

.footer-links > div {
  flex: 1 1 140px;
  min-width: 140px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 7px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 17px;
}

.footer-links a:hover {
  color: #f9d342;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  padding: 28px 0 0 0;
}

.social-icon {
  display: inline-block;
  width: 60px; /* Larger size */
  height: 60px; /* Larger size */
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.09);
  transition:
    background-color 0.2s,
    transform 0.2s;
}

.social-icon.facebook {
  background-image: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/facebook.svg");
  filter: invert(1) grayscale(1);
}

.social-icon.linkedin {
  background-image: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/linkedin.svg");
  filter: invert(1) grayscale(1);
}

.social-icon.instagram {
  background-image: url("https://cdn.jsdelivr.net/gh/simple-icons/simple-icons/icons/instagram.svg");
  filter: invert(1) grayscale(1);
}

.social-icon:hover {
  background-color: #f9d342;
  transform: scale(1.11);
  filter: none;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid #444;
  text-align: center;
  padding: 14px 0 10px 0;
  font-size: 13px;
  color: #aaa;
  background: rgba(35, 35, 35, 0.98);
}

.footer-bottom a {
  color: #f9d342;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.member-login-btn {
  position: absolute;
  right: 70px;
  bottom: 200px;
  background: #f9d342;
  color: #000;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  z-index: 5;
  transition: 0.2s ease;
}

.member-login-btn:hover {
  background: #ffd95c;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .footer-main {
    max-width: 1000px;
  }
  .footer-content {
    gap: 24px;
  }
  .footer-links {
    gap: 24px;
    min-width: 0;
  }
  .footer-links > div {
    min-width: 100px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    max-width: 98vw;
    padding: 0 8px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 10px;
  }
  .footer-logo-section {
    margin-right: 0;
    margin-bottom: 22px;
    width: 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 18px;
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .footer-links > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 0 4px;
  }
  .footer-logo-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center logo and paragraph */
  }
  .footer-logo {
    width: 110px;
  }
  .footer-desc {
    font-size: 13px;
    text-align: center !important; /* Center the paragraph */
  }
  .footer-links {
    width: 100%;
    align-items: center;
    text-align: center;
  }
  .footer-links h4 {
    font-size: 13px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer-social {
    gap: 22px;
    padding-top: 16px;
  }
  .social-icon {
    width: 54px;
    height: 54px;
  }
  .footer-bottom {
    font-size: 11px;
    padding: 10px 0 7px 0;
  }
}

.finn-enquiry-banner {
  background: #003d5b;
  color: #fff;
  position: relative;
  overflow: visible;
}

.enquiry-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  position: relative;
}

.enquiry-image-wrapper {
  position: relative;
  width: 220px;
  min-width: 100px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100px;
}

.enquiry-image {
  width: 120px;
  max-width: 70vw;
  object-fit: contain;
  display: block;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.enquiry-content {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 120px;
}

.enquiry-text h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.enquiry-text p {
  font-size: 1rem;
  margin: 0 0 8px 0;
  font-weight: 400;
}

.enquiry-divider {
  display: none; /* always hidden on mobile */
}

.enquiry-action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-btn {
  display: inline-block;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
  background: transparent;
  text-decoration: none;
  transition:
    background 0.18s,
    color 0.18s;
}

.enquiry-btn:hover {
  background: #fff;
  color: #1673c7;
}

/* Tablet and up */
@media (min-width: 601px) {
  .enquiry-inner {
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 0 24px;
  }
  .enquiry-image-wrapper {
    width: 320px;
    min-width: 220px;
    height: 180px;
  }
  .enquiry-image {
    width: 350px;
    max-width: 125%;
    top: -27px;
  }
  .enquiry-content {
    flex: 1 1 320px;
    align-items: flex-start;
    min-width: 200px;
    text-align: left;
  }
  .enquiry-text h2 {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
  .enquiry-text p {
    font-size: 1.15rem;
    margin-bottom: 0;
  }
  .enquiry-divider {
    display: block;
    width: 2px;
    height: 70px;
    background: #fff;
    opacity: 0.25;
    margin: 0 32px;
  }
  .enquiry-action {
    margin-top: 0;
  }
  .enquiry-btn {
    padding: 15px 42px;
    font-size: 1.1rem;
  }
}

/* Phone only */
@media (max-width: 600px) {
  .enquiry-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 0 6vw;
  }
  .enquiry-image-wrapper {
    width: 100vw;
    min-width: 0;
    height: 70px;
    margin-bottom: 0;
    justify-content: center;
  }
  .enquiry-image {
    width: 204px;
    max-width: 70vw;
    top: -25px;
  }
  .enquiry-content {
    align-items: center;
    text-align: center;
    min-width: 0;
    width: 100%;
    margin-top: 18px;
  }
  .enquiry-action {
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .enquiry-content {
    flex: 1 1 71px !important;
  }
  .footer-logo-section {
    flex: 1 1 207px !important;
  }
}

.box-contact {
  display: grid;
  justify-content: center;
  text-align: center;
  button {
    margin: 0px;
  }
  h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
