body {
  background: #f7f5fe;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar */
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-around;
}
.custom-navbar {
  background-color: transparent !important;
  box-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  position: fixed;
  width: 100%;
  z-index: 1030;
}
.navbar-expand-lg .navbar-collapse {
  background: transparent;
}

.custom-navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.custom-navbar .navbar-brand,
.custom-navbar .nav-link {
  color: #3d3d4e; /* Default color */
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #ac8c55; /* Hover color */
}

.custom-navbar.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.custom-navbar.scrolled .nav-link,
.custom-navbar.scrolled .navbar-brand {
  color: #3d3d4e;
}
.imgset {
  position: relative;
  z-index: 1;
}

.imgset::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./assets/memphis_1.png") no-repeat center center;
  background-size: cover;
  opacity: 0.2; /* Adjust as needed */
  z-index: -1;
}

.btn-purple {
  background-color: #ffe09652;
  color: #fff;
  border-radius: 2rem;
}

.btn-purple:hover {
  background-color: #ffdf96fe;
}
.custom-navbar {
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.nav-link {
  color: #4e4a3d !important;
}

.nav-link:hover {
  color: #f8be53 !important;
}

.btn-purple {
  background-color: #f9b106;
  color: #fff;
  border-radius: 2rem;
}

.btn-purple:hover {
  background-color: #f97706;
  ;
}

.navbar-collapse {
  transition: max-height 0.4s ease;
  overflow: hidden;
  background-color: white;
}

@media (max-width: 991.98px) {
  .navbar-collapse.show {
    background: #f7f5fe;
    padding: 1rem;
    border-top: 1px solid #eee;
  }
}

/* Hero Section */
/* Navbar stays on top but transparent initially */
.custom-navbar {
  background-color: transparent !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: none;
  z-index: 1030;
  position: fixed;
  width: 100%;
}

/* When scrolled, add white background */
.custom-navbar.scrolled {
  background-color: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* HERO SECTION */
.hero {
  position: relative;
  padding-top: 120px; /* make space for fixed navbar */
  overflow: visible;
  z-index: 100;
}
.adjustheight{
  height: 479px;
}
.hero .imgset {
  position: relative;
  top: -100px; /* Pull the image up to go behind the navbar */
  z-index: 1;
}

.hero .imgset img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
    .hero .imgset img {
  max-width: 100%;
  height: 330px;
}
}

.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
  color: #2c145e;
}

.hero p {
  color: #555;
  font-size: 1rem;
  margin-top: 1rem;
  max-width: 500px;
}

.badge-custom {
  background-color: #ffeba266;
  color: #d49500;
  font-weight: 600;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

.email-box {
  background: #ffffff;
  border-radius: 2.5rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  margin-top: 2rem;
  max-width: 550px;
}

.email-box input {
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  flex-grow: 1;
  border-radius: 2rem 0 0 2rem;
}

.email-box button {
  border-radius: 0 2rem 2rem 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

/* Side Button */
.side-button {
  position: absolute;
  top: 50%;
  right: -75px;
  transform: rotate(-90deg) translateY(-50%);
  background-color: #d3ac4b;
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 12px 12px 0 0;
  font-size: 0.9rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hero {
    text-align: center;
    padding-top: 80px;
  }

  .adjustheight{
    height: 330px;
  }
  .hero .imgset {
    top: -60px;
  }

  .side-button {
    display: none;
  }

  .email-box {
    flex-direction: column;
    padding: 1rem;
  }

  .email-box input,
  .email-box button {
    border-radius: 2rem;
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
/* Add this to your <style> block or CSS file */

.info-section {
  background: #f9b106;
  padding: 50px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}
.info-section h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-section p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
}

/* Decorative abstract shapes on the right (like in your image) */
.info-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("./assets/bg5.png") no-repeat right center;
  background-size: contain;
  opacity: 0.2;
  z-index: 0;
}

.info-section .container {
  position: relative;
  z-index: 2;
}

/* course-section */
.course-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('./assets/bg5(1).png');
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top left;
  margin-bottom: 20px;
}

.course-section h1 {
  color: #18416a;
  text-align: center;
  margin-top: 30px;
  font-size: 40px;
}

.course-section p {
  text-align: center; /* Center the text */
  margin: 30px auto 0 auto; /* Top margin + auto sides to center the block */
  width: 80%; /* Responsive width */
  max-width: auto; /* Prevents it from becoming too wide on large screens */
  padding: 0 20px; /* Optional: adds space inside */
}

.course-card p {
  width: 100%;
}



.course-item {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.course-card {
  width: 400px;
  padding: 30px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin: 20px 10px;
  border-radius: 15px;
  background-color: white;
  transition: all 0.3s ease; /* Smooth transition */
}

.course-card:hover {
  transform: translateY(-8px); /* Slight lift */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 8px 16px; /* Deeper shadow */
  background-color: #fff8dc; /* Optional: Light mustard background */
  border: 1px solid #FFDB58; /* Optional: Mustard yellow border */
}


.course-card button {
  background-color: #f9b106;
  width: auto;
  border: none;
  width: 150px;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
  margin-top: 10px;
}
.course-card button:hover {
  background-color: #b49f71;
  width: auto;
  border: none;
  width: 150px;
  padding: 10px;
  border-radius: 30px;
  text-align: center;
}

/* about */
.section-about {
  background: rgb(223, 157, 0);
  background-size: cover, 60px 60px, 60px 60px;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.about-wrapper h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 0 15px;
}

.btn-primary {
  display: inline-block;
  background: #e9a400;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #f18b06;
}

/* master section  */

.maths-hero {
  background: url("./assets/master.png") no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.maths-hero__overlay {
  background-color: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.maths-hero__content {
  color: white;
  max-width: 800px;
}

.maths-hero__title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.3;
}

.maths-hero__description {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.maths-hero__button {
  display: inline-block;
  background: #f9b106;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.3s;
}

.maths-hero__button:hover {
  background: #f18c10;
}

/* intro section */
/* intro section */
.intro-section {
  background: #f9b106;
  position: relative;
  z-index: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Container */
.container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  padding: 0;
  position: relative;
  justify-content: space-between;
  align-items: stretch;
}

/* Text Side */
.text-content {
  flex: 1;
  padding: 60px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.text-content h1 span {
  font-size: 28px;
  font-weight: 600;
  color: #f3f3f3;
}

.text-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ddd;
}

.read-more-btn {
  display: inline-block;
  background-color: #ff9f2a;
  color: #1e0562;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background-color: #fabc04;
}

/* Image Side */
.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  overflow: hidden;
}

.profile-image {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-image {
  animation: slideUp 1.3s ease-out forwards;
}

.animate-text {
  animation: slideLeft 1.2s ease-out forwards;
}

@media (max-width: 991px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .text-content {
    order: 1; /* Show text first */
    padding: 40px 20px;
  }

  .image-wrapper {
    order: 2; /* Show image after text */
    width: 100%;
    height: auto;
    max-height: none;
    margin-top: 20px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
  }
}







/* form section  */
.enrol-now-section {
  background: linear-gradient(180deg, #efedd7 0%, #ffffff 100%);
  padding: 20px 0px;
  display: flex;
  justify-content: center;
}

.enrol-now-container {
  max-width: 700px;
  width: 100%;
  text-align: center;
}

.enrol-now-container h2 {
  font-size: 32px;
  font-weight: 700;
  color: #f9b106;
  margin-bottom: 10px;
}

.enrol-now-container p {
  color: #ff9231d1;
  font-size: 16px;
  margin-bottom: 40px;
}

.enrol-now-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row input,
.form-row select {
  flex: 1;
  min-width: 280px;
  padding: 14px 18px;
  border: 1.5px solid #fbe087;
  border-radius: 25px;
  font-size: 15px;
  outline: none;
  background-color: #fff;
  color: #333;
}

.form-row input::placeholder,
.form-row select {
  color: #888;
}

.submit-row {
  justify-content: center;
}

.enrol-now-form button {
  background: #fbb800;
  color: white;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 40px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.enrol-now-form button:hover {
  background: #f97706;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .enrol-now-form button {
    width: 100%;
  }
}

/* why choose me section  */
.why-choose-us {
  background-color: #fff;
  padding: 25px 0px;
}

.choose-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.choose-text {
  flex: 1 1 600px;
  padding-right: 40px;
}

.choose-image {
  flex: 1 1 400px;
  text-align: center;
}

.choose-image img {
  max-width: 100%;
}

.tag {
  background-color: #e2d6fd;
  color: #e0a855;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
}

.choose-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2d0c57;
  margin-bottom: 15px;
}

.choose-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-box img {
  width: 40px;
  height: 40px;
}

.feature-box h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #2d0c57;
}

.feature-box p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #555;
}

@media (max-width: 992px) {
  .choose-container {
    flex-direction: column;
    text-align: center;
  }

  .choose-text {
    padding-right: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
  }
} 
.textcolor{
  color: #19436c;
  text-align: center;
}
/* package section  */
.choose-package {
  background: #f8f7fe;
  padding: 25px 20px;
  text-align: center;
}

.choose-package .container {
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.tag {
  background: #faf1d9;
  color: #d49500;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 15px;
}

.choose-package h2 {
  font-size: 28px;
  color: #2d0c57;
  font-weight: 700;
  margin-bottom: 50px;
}

.package-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  flex: 1 1 300px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-header {
  padding: 30px 20px;
  color: #fff;
}

.igcse-bg {
  background: linear-gradient(to right, #d49500, #ecc60b);
}

.ib-bg {
  background: linear-gradient(to right, #d49500, #ecc60b);
}

.crash-bg {
  background: linear-gradient(to right, #d49500, #ecc60b);
}

.card-header h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.card-header p {
  font-size: 14px;
  opacity: 0.9;
}

.card-body {
  padding: 25px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center; /* center align button */
}

.card-body h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d0c57;
}

.card-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card-body ul li {
  font-size: 14px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.choose-btn {
  display: inline-block;
  background: #e0ab55;
  color: white;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.textpackage {
  text-align: center;
}

.choose-btn:hover {
  background: #f97706;
}

@media (max-width: 992px) {
  .package-grid {
    display: grid;
    align-items: center;
  }
}
/* support */
.support-section {
  width: 100%;
  background: linear-gradient(135deg, #ffd573, #f9b23d);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  color: #244960;
}

.support-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.support-content {
  flex: 1 1 50%;
  min-width: 300px;
  max-width: 650px;
}

.support-content h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.support-content p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
}

.support-btn {
  background-color: #f9b106;;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.support-btn:hover {
  background-color: #feaa51;
}

.support-image {
  flex: 1 1 40%;
  min-width: 280px;
  text-align: center;
}

.support-image img {
  max-width: 100%;
  height: 35rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .support-content h2 {
    font-size: 42px;
  }

  .support-content p {
    font-size: 16px;
  }

  .support-container {
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .support-container {
    flex-direction: column;
    text-align: center;
    /* padding: 20px 10px; */
  }

  .support-content {
    align-items: center;
  }

  .support-content h2 {
    font-size: 32px;
    margin-top: 20px;
  }

  .support-content p {
    font-size: 15px;
  }

  .support-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  .support-image img {
    max-width: 100%;
    height: 22rem;
  }
}

/* testimonial */
/* ===== Base Styles (unchanged for laptop and larger) ===== */
.testimonials {
  text-align: center;
  padding: 40px 20px;
}

.slider-wrapper {
  overflow: hidden;
  position: relative;
  margin: 30px 0;
}

.cards-container {
  display: flex;
  transition: transform 0.6s ease;
  gap: 20px;
  box-sizing: border-box;
}

.card {
  flex: 0 0 calc(33.333% - 13.33px);
  border-radius: 16px;
  padding: 20px;
  min-height: 380px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark {
  background-color: #df9d00;
  color: white;
}

.light {
  background-color: #ce4800;
  color: white;
}

.stars {
  margin-bottom: 10px;
}

.profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 8px;
}

.profile div {
  text-align: center;
}

.quote {
  font-size: 36px;
  text-align: right;
  color: rgba(255, 255, 255, 0.3);
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #f9b106;
}

.more-btn {
  background: #f9b106;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

/* ===== Responsive Fixes for Tablet (≤1024px) ===== */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 50%;
  }
}

/* ===== Responsive Fixes for Mobile (≤768px) ===== */
@media (max-width: 768px) {
  .cards-container {
    padding: 0 10px; /* prevent horizontal scroll */
  }

  .card {
    flex: 0 0 100%;
  }

  .slider-dots,
  .more-btn {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .quote {
    font-size: 28px;
  }
}

/* Optional: Extra small devices (≤480px) */
@media (max-width: 425px) {
  .testimonials {
    padding: 30px 10px;
  }

  .card {
    padding: 16px;
    min-height: auto;
  }

  .quote {
    font-size: 24px;
  }

  .more-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

@media (max-width: 350px) {
  .testimonials {
    padding: 60px 10px;
  }

  .card {
    padding: 16px;
    min-height: auto;
  }

  .quote {
    font-size: 24px;
  }

  .more-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* Prevent horizontal overflow on small devices */
body {
  overflow-x: hidden;
}



/* Footer  */
.footer {
  background: linear-gradient(145deg, rgb(248 176 6), rgb(231 190 4)), url(./assets/bg_1.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #070707;
  padding: 50px 20px 0;
  font-family: "Segoe UI", sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #234c73;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #070d06;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #fff;
}

.about .footer-logo {
  width: 160px;
  margin-bottom: 15px;
}

.about p {
  margin: 15px 0;
  font-size: 14px;
  color: #020202;
}

.social-icons a {
  margin-right: 10px;
  color: #fff;
  background: #ffe09652;
  border-radius: 50%;
  font-size: 20px;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: #fdc05d;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  background-color: #efb705;
  color: #ffffff;  
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    max-width: 100%;
  }

  .social-icons {
    justify-content: center;
  } 
}

.footer-bottom a{
  text-decoration: none;
  color: rgb(48 78 115);
}
