@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');


/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  height: 0;
  width: 0.7rem;
}
::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
}
::-webkit-scrollbar-thumb {
  background: gold;
  border-radius: 5rem;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

body.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo img {
  max-width: 300px;
  animation: scale 1s linear;
}

@keyframes scale {
  0% {
    transform: scale(0); /* Starts off-screen at the top */
    opacity: 0;
  }
  
  50% {
    transform: scale(1.1); /* Moves off-screen to the bottom */
    opacity: 0;
  }
  100% {
    transform: scale(1); /* Moves off-screen to the bottom */
    opacity: 1;
  }
}


/* Desktop Nav List */
.nav-list {
  list-style: none;
  display: flex;
  gap: 30px; /* Increased spacing for desktop */
}

.nav-list li {
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeIn 0.5s ease forwards;
}

.nav-list li:nth-child(1) {
  animation-delay: 0.2s; /* First item delay */
}

.nav-list li:nth-child(2) {
  animation-delay: 0.4s; /* Second item delay */
}

.nav-list li:nth-child(3) {
  animation-delay: 0.6s; /* Third item delay */
}

.nav-list li:nth-child(4) {
  animation-delay: 0.8s; /* Fourth item delay */
}

.nav-list li:nth-child(5) {
  animation-delay: 1s; /* Fifth item delay */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-list li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Hover Effect: Gold underline moves left to right */
.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease-in-out;
}

.nav-list li a:hover {
  color: gold;
}

.nav-list li a:hover::after {
  width: 100%;
}

/* Mobile Menu Icon */
.menu-icon {
  display: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.menu-icon.animate {
  transform: rotate(180deg); /* Rotation animation */
}

/* Corporate Hero Section */
.hero-section {
  background-image: url('./img/equiti\ hero\ img.png'); /* Add your background image path here */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 2rem;
}

/* Hero Content */
.hero-content {
  text-align: center;
  padding-top: 2.5rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  animation: fromTopToBottom  1s ease-in-out;
}

.hero-content p {
  font-size: 1.5rem;
  color: #ffffff;
  margin-top: 1rem;
  animation: scale  1.5s ease-in-out;
}

@keyframes fromTopToBottom {
  0% {
    transform: translateY(-100%); /* Starts off-screen at the top */
    opacity: 0;
  }
 
  100% {
    transform: translateY(0); /* Moves off-screen to the bottom */
    opacity: 1;
  }
}




/* Info Section */
.info-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  flex-wrap: wrap;
  background-color: rgba(0, 0, 0, 0.5); /* Transparent background for readability */
}

/* Title Styling */
.info-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin-top: -2rem;
  margin-bottom: 0.1rem;
  width: 100%;
}


.info-box {
  background: #fff;
  text-align: center;
  padding: 2.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  flex: 1 1 calc(33.333% - 2rem);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation:  fromBottomToTop 1s linear;
}

.info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@keyframes fromBottomToTop {
  0% {
    transform: translateY(100%); /* Starts off-screen at the bottom */
    opacity: 0;
  }
  100% {
    transform: translateY(0); /* Moves to its original position */
    opacity: 1;
  }
}




.icon img {
  width: 60px;
  margin-bottom: 1rem;
}

.info-box h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 1rem;
}

.info-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Link Button */
.info-link {
  display: inline-block;
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  border: 2px solid rgb(255, 217, 0);
  padding: 0.5rem 1rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s, transform 0.3s;
}

.info-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgb(228, 196, 33);
  z-index: -1;
  transition: left 0.3s ease-in-out;
}

.info-link:hover {
  color: #fff;
  transform: scale(1.05);
}

.info-link:hover::after {
  left: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .info-section {
    gap: 1.5rem;
  }
  .info-box {
    flex: 1 1 calc(50% - 1.5rem);
  }
}



/* Responsive Styles */
@media (max-width: 768px) {

  .info-title {
    margin-top: 0;
  }
 
  .logo img {
    max-width: 150px;
  }


  .menu-icon {
    display: block;
  }

  .nav-list {
    display: none;
    position: absolute;
    top: 99%;
    left: 0;
    background: #000;
    width: 100%;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    padding: 0.1rem 0; /* Compact spacing */
    border-bottom: 1px solid #ddd; /* Horizontal line between items */
  }

  .nav-list li:last-child {
    border-bottom: none; /* No border for last item */
  }

  .nav-list li a {
    font-size: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
  }
  .info-section {
    flex-direction: column;
    padding: 3rem 1rem;
  }
  .info-box {
    flex: 1 1 100%;
  }

  .hero-content p {
   margin-bottom: 25px;
  }

}

@media (max-width: 480px) {

  .hero-content h1{
    font-size: 2rem;
  }
  .info-box h2 {
    font-size: 1.5rem;
  }
  .info-box p {
    font-size: 0.9rem;
  }
  .info-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
  }
}

/* Bank Less Section */

.bank-less-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 20px; /* Only 20px padding left and right */
  background-color: #f8f9fb; /* Light grey background */
  opacity: 0; /* Start invisible for animation */
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.bank-less-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Left Content */
.left-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.left-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  background-image: linear-gradient(90deg, #000, #02301b, #030a2d, #0b1f1a, #02044b);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: flowingGradient 5s infinite linear;
}

/* Right Content */
.right-content {
  flex: 2;
  text-align: left;
  max-width: 600px;
}

.right-content p {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Gradient Animation */
@keyframes flowingGradient {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 100%;
  }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .content-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .left-content h1 {
    font-size: 3rem;
  }

  .right-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .left-content h1 {
    font-size: 2.5rem;
  }

  .right-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .left-content h1 {
    font-size: 2rem;
  }

  .right-content p {
    font-size: 0.85rem;
  }
}



/*disclipline section*/

.image-text-full {
  display: flex;
  width: 100%;
  height: 60vh; /* Section height */
  overflow: hidden;
  background: #ffffff;
}

/* Left Image Section */
.image-container {
  flex: 0 0 35%; /* 35% of the width */
  background: url('./img/empowered\ img.png') no-repeat center center/cover;
  transform: translateX(-100%); /* Slide in from left */
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* Right Text Section */
.text-container {
  flex: 0 0 65%; /* 65% of the width */
  padding: 4rem 3rem;
  background-color: #1b1b1b; /* Light blue background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateX(100%); /* Slide in from right */
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.text-container h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: rgb(255, 255, 255);
}

.text-container p {
  font-size: 1.2rem;
  color: #e3dede;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Animation Trigger */
.image-text-full.visible .image-container {
  transform: translateX(0);
  opacity: 1;
}

.image-text-full.visible .text-container {
  transform: translateX(0);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-text-full {
    flex-direction: column; /* Stack in column layout */
    height: auto;
  }

  .image-container {
    flex: none;
    width: 100%;
    height: 250px; /* Fixed height for image */
    transform: translateY(-20%);
  }

  .text-container {
    flex: none;
    width: 100%;
    padding: 2rem 1.5rem;
    transform: translateY(20%);
  }

  .text-container h2 {
    font-size: 2rem;
    text-align: justify;
  }

  .text-container p {
    font-size: 0.9rem;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .image-container {
    height: 200px; /* Smaller image height for very small screens */
  }

  .text-container h2 {
    font-size: 1.8rem;
  }

  .text-container p {
    font-size: 0.85rem;
  }
}
@media (max-width: 380px){
  .text-container  h2{
    font-size: 1.6rem;
  }
}




/*youtube video section*/

.video-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background-color: #fff;
}

.video-container {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 2rem;
}

/* Text Content */
.text-content {
  flex: 0 0 35%;
  display: flex;
  align-items: center;
}

.text-content p {
  font-size: 2rem;
  line-height: 1.4;
  color: #000;
  font-weight: 600;
}

/* Videos Content */
.videos-content {
  flex: 0 0 65%;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; /* Ensures wrapping on smaller screens */
  justify-content: space-between;
}

.video-box {
  flex: 1 1 calc(50% - 1rem); /* Two videos side-by-side */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-box iframe {
  width: 100%;
  height: 250px; /* Fixed height for videos */
  border-radius: 8px; /* Rounded corners for videos */
}

.video-box p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #555;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .video-container {
    flex-direction: column;
    gap: 2rem;
  }

  .text-content {
    flex: none;
    text-align: center;
  }

  .videos-content {
    flex-direction: column;
    align-items: center;
  }

  .video-box {
    width: 100%;
  }

  .video-box iframe {
    height: 200px; /* Smaller video height for tablets */
  }
}

@media (max-width: 768px) {
  .text-content p {
    font-size: 1.3rem;
  }

  .video-box iframe {
    height: 180px; /* Smaller video height for mobile */
  }
}

@media (max-width: 480px) {
  .text-content p {
    font-size: 1.1rem;
  }

  .video-box iframe {
    height: 150px; /* Smaller video height for very small screens */
  }
}




/*quote section*/
.testimonial-section {
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  background: #000;
}

/* Header Styling */
.testimonial-header {
  margin-bottom: 40px;
}

.testimonial-subtitle {
  color: gold;
  text-transform: capitalize;
  font-size: 2.5rem;
  letter-spacing: 1.5px;
  margin-bottom: 3rem;
}

.testimonial-heading {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 20px;
}

/* Slider Container Styling */
.testimonial-slider-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.testimonial-slider {
  display: flex;
  position: relative;
  max-width: 100%;
  justify-content: center;
  overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  width: 50%;
  margin: 0 10px;
  padding: 40px;
  border-radius: 10px;
  position: absolute;
  left: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  overflow: hidden;
  border: 2px solid gold;
}

.testimonial-card.active {
  left: 0;
  opacity: 1;
  z-index: 1;
  position: relative;
}

.testimonial-quote {
  z-index: 2;
  position: relative;
  font-size: 1.2rem;
  max-width: 90%;
  margin-bottom: 10px;
  text-align: center;
}

.customer-name {
  z-index: 2;
  position: relative;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}

/* Arrows Styling */
.arrow {
  font-size: 2rem;
  color: gold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  user-select: none;
  transition: color 0.3s ease;
}

.arrow:hover {
  color: #ffffff;
}

.left-arrow {
  left: 150px;
}

.right-arrow {
  right: 150px;
}

/* Navigation Dots */
.testimonial-navigation {
  margin-top: 20px;
}

.nav-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: gold;
  border-radius: 50%;
  cursor: pointer;
}

.nav-dot.active {
  background: #ffffff;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .testimonial-heading {
      font-size: 2rem;
  }

  .testimonial-quote {
      font-size: 1rem;
  }

  .testimonial-section {
    padding: 60px 5px;
  }


  .customer-name {
      font-size: 0.8rem;
  }

  .testimonial-card {
      width: 95%;
      padding: 40px 30px;
  }

  .left-arrow {
    left: 30px;
  }
  
  .right-arrow {
    right: 30px;
  }
}



/*asked answer questions*/
/* FAQ Section */
.faq-section {
  background-color: #f5f5f5;
  padding: 3rem 1.5rem;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.faq-header h2 {
  font-size: 2rem;
  color: #003333;
  text-align: center;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #ff6d00;
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* Content */
.faq-content {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

/* Left Section */
.faq-left {
  flex: 3;
}



.faq-category h3 {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #003333;
  margin-bottom: 1rem;
}

.faq-icon {
  color: #ff6d00;
  margin-right: 0.5rem;
}

.faq-category ul {
  list-style: none;
  padding: 0;
}

.faq-category ul li {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: all 0.3s ease-in-out;
}

.question {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.toggle {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ff6d00;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
}

.toggle.active {
  transform: rotate(45deg);
  color: #ff4d4d;
}

.answer {
  display: none;
  margin-top: 0.5rem;
  color: #555;
}

.faq-category ul li.active .answer {
  display: block;
}

/* Right Section */
.faq-right {
  flex: 2;
 
}

.faq-help-card {
  
  background: linear-gradient(to bottom, #000 50%, #ffffff 50%);
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 1rem;
  margin-top: 25px;
}

.card-header img {
  width: 150px;
  height: 150px;
  border-radius: 20%;
  margin: 1rem auto;
  border: 2px solid rgb(255, 255, 255);
  padding: 1rem;
  background: rgb(215, 215, 213);
}

.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
}

.availability {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.card-footer{
  color: black;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-content {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    flex: 1;
  }

  .card-header img {
    margin-top: 2rem;
  }

  .faq-right{
    margin-top: 10px;
  }
}







/*2 button section*/

.learn-more-section {
  background-color: #000; /* Red background */
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 0% 100%, 0 46%, 0% 0%);
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.learn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem; /* Space between text and buttons */
  max-width: 1200px;
  width: 100%;
  text-align: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* Learn More Text */
.learn-text h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap; /* Prevent text breaking */
}

/* Buttons Container */
.button-container {
  display: flex;
  gap: 1.5rem; /* Gap between buttons */
  flex-wrap: wrap;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 2px solid gold;
  padding: 0.75rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  min-width: 200px;
}

/* Button Hover Effect */
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
 background: linear-gradient(
  120deg,
  #f8f0e3 0%, /* Soft Ivory */
  #cdb46f 50%, /* Champagne Gold */
  #b68844 100%  /* Rich Gold */
);

  z-index: -1;
  transition: transform 0.5s ease-in-out;
  transform: translateX(0);
}

.button:hover::before {
  transform: translateX(50%);
}

.button:hover {
  color: #000;
  border-color: transparent;
}

.button .icon {
  margin-right: 8px;
  transition: transform 0.3s ease-in-out;
}

.button:hover .icon {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .learn-container {
    flex-direction: column;
    gap: 2rem;
  }

  .learn-text h2 {
    font-size: 2.5rem;
  }

  .button-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
.learn-more-section{
  clip-path: polygon(50% 0%, 100% 20%, 100% 60%, 100% 100%, 0 100%, 0 60%, 0 20%);
}
  .learn-text h2 {
    font-size: 2rem;
  }

  .button-container {
    gap: 1rem;
  }

  .button {
    font-size: 0.9rem;
    padding: 0.5rem 1.5rem;
    justify-content: flex-start;
  }
}


/*footer section*/

.footer {
  background-color: #1e293b; /* Dark background */
  color: #fff;
  padding: 2rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Left Section */
.footer-left {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: bold;
  color: #ddd;
  text-align: left;
}

/* Center Section */
.footer-center {
  flex: 2;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

.footer-links {
  list-style: none;
  text-align: center; /* Center links */
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: gold;
}

/* Right Section */
.footer-right {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-right h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-right p {
  margin-bottom: 0.5rem;
}

.footer-right a {
  color: gold;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-socials {
  margin-top: 1rem;
}

.footer-socials a {
  display: inline-block;
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: gold;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.9rem;
}

.footer-bottom .highlight {
  color: #e63946;
  font-weight: bold;
}

.scroll-to-top {
  background-color: gold;
  color: #000;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #000;
  color: gold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links {
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-center{
    display: block;
  }
  .footer-tagline {
    text-align: center;
  }
}
