body {
  margin: 0;
  font-family: "abc-repro", sans-serif;
  background-color:#f8eddc ;
}


/* Header */
header {
  background: transparent;
  z-index: 1000;
  width: 100%;
 
}

/* Logo behavior */
#logo {
  transition: all 0.4s ease;
}
#logo.hidden {
  opacity: 0;
  transform: translateY(-10px);
}
#logo.small {
  transform: scale(0.95);
  opacity: 1;
}

/* Right menu background */
.menu-container {
  background-color: #F4E4C5;
  /* border: 1px solid #7f011e;*/
  
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Menu links */
.nav-link {
  color: #4b000b !important;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: 0.3s;
}
.nav-link:hover {
  color: #800020 !important;
  animation: bounce 0.6s;
}

/* Contact button */
.contact-btn {
  background-color: #800020;
  color: #fff !important;
  padding: 6px 18px;
  border-radius: 6px;
  transition: 0.3s;
}
.contact-btn:hover {
  background-color: #a83246;
  animation: bounce 0.6s;
}

/* --- MOBILE MENU --- */
.navbar-toggler {
  border: none;
  background: transparent !important;
  filter: invert(25%);
}

/* Hamburger icon styling (black lines) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: #F4E4C5;
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 2rem;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu .close-btn {
  font-size: 2rem;
  cursor: pointer;
  text-align: right;
  margin-bottom: 1.5rem;
  color: #800020;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu ul li {
  margin-bottom: 1rem;
}
.mobile-menu ul li a {
  color: #4b000b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-menu ul li a:hover {
  color: #800020;
  animation: bounce 0.6s;
}

/* Hero Section*/

.hero {
  
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}

/* LEFT SIDE */
.hero-left {
  background-color: #f8eddc;
  width: calc(100% - 819px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 120px;
  padding-right: 80px;
  position: relative;
}

.hero-title {
  font-family: 'Awesome Serif', serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #7F011E;
  transition: all 0.3s ease;
  margin-left: 20px;
}

.hero-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px; /* space between text and rectangle */
}

.hero-title .title-rect {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #7F011E;
  margin-left: 6px;
  position: relative;
  top: 24px; /* adjust this for vertical alignment */
}

.hero-desc {

    font-family: "abc-repro", sans-serif;
    margin-left: 20px;
    margin-right: 30px;

}

/* Bounce effect on hover */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}
.hero-title:hover {
  animation: bounce 0.7s;
  color: #4b000b;
}

.hero-title span {
  color: #800020;
}

.hero-desc {
  color: #333;
  font-size: 1rem;
  margin-top: 15px;
  line-height: 1.6;
}

/* Horizontal Scrolling Logos */
.logo-scroll {
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 30px;
  left: 20px;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  gap: 60px;
}

.logo-track img {
  height: 55px;
  object-fit: contain;
  /*filter: grayscale(100%);*/
  opacity: 0.8;
  transition: 0.3s;
}


/* Continuous scroll effect */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* RIGHT SIDE */
.hero-right {
  width: 819px;
  height: 100vh;
  overflow: hidden;
  position: relative;
  
}

.hero-right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .hero-left {
    padding-left: 80px;
  }
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 991px) {
  .hero {
    flex-direction: column;
    height: auto;
  }
  .hero-left {
    width: 100%;
    padding: 60px 40px;
    height: auto;
  }
  .hero-right {
    width: 100%;
    height: 400px;
  }
  .logo-scroll {
    position: relative;
    bottom: auto;
    left: 0;
    margin-top: 30px;
  }
}

/* MOBILE LAYOUT FIX */
@media (max-width: 768px) {

  /* Stack everything vertically */
  .hero {
    flex-direction: column;
    height: auto;
    padding: 20px;
    text-align: center;
    margin-top: 60px;
    background-color: #f8eddc;
  }

  /* Left side becomes full width */
  .hero-left {
    width: 100%;
    padding: 0 20px;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
  }

  /* Title fixes */
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    display: inline-block;
  }

  /* Dot alignment */
  .hero-title .title-rect {
    width: 18px;
    height: 18px;
    position: relative;
    top: 5px;
    margin-left: 6px;
  }

  /* Description spacing */
  .hero-desc {
    margin-top: 15px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  /* Video full width */
  .hero-right {
    width: 100%;
    height: 260px;
    margin: 0 auto 25px;
  }

  .hero-right video {
    height: 100%;
  }

  /* Move logo scroll BELOW video */
  .logo-scroll {
    position: relative !important;
    width: 100%;
    margin: 10px 0 30px;
    left: 0 !important;
    bottom: auto !important;
    order: 3;
  }

  /* Center logos */
  .logo-track {
    gap: 40px;
  }
}



:root{
  --cream: #f8eddc;
  --maroon: #800020;
  --title-color: #4b000b;
}

*{box-sizing:border-box}
body{
    margin:0;
    font-family:"ABC Repro";
    background:#f8eddc;}


/*Who we are
:root {
  --cream: #f9f5ee;
  --maroon: #800020;
  --title-color: #4b000b;
}

/* Base Section */
.about-section {
  background-color: #f8eddc;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.about-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

/* Title */
.about-title {
  font-family: "Awesome Serif", serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #7F011E;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

/* Dot */
.about-title .title-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #7F011E;
  position: relative;
  bottom: -6px;
  margin-left: 8px;
}

/* Bounce Hover */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
.about-title:hover {
  animation: bounce 0.7s;
  color: var(--maroon);
}

/* Description and Button */
.about-desc {
  max-width: 850px;
  margin: 20px auto;
  font-family: "abc-repro", sans-serif;
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}
.about-btn {
  background-color: var(--maroon);
  color: #fff;
  padding: 8px 22px;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
}
.about-btn:hover {
  background-color: #a83246;
}

/* Images */
.about-images {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  z-index: 2;
}

.about-img {
  width: 30%;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.center-img {
  transform: translateY(180%);
  z-index: 3;
}


/* MOBILE SIMPLE LAYOUT */
@media (max-width: 768px) {

  
  .about-img,
  .left-img,
  .center-img,
  .right-img {
    transform: none !important;
    opacity: 1 !important;
  }

  .about-section {
    min-height: auto;
    padding: 40px 20px;
    overflow: visible;
  }

  .about-inner {
    min-height: auto;
    padding: 0 20px;
    text-align: center;
    display: block;
  }

  /* Title */
  .about-title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }

  .about-title .title-dot {
    width: 12px;
    height: 12px;
    bottom: 0;
  }

  /* Description */
  .about-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 5px;
  }

  /* Button */
  .about-btn {
    margin-bottom: 30px;
  }

  /* Images container */
  .about-images {
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 20px 0 40px;
    align-items: center; /* centers all images */
  }

  .about-img {
     opacity: 0;
    transform: translateY(30px);
    transition: 0.6s ease;
    width: 100%;
    max-width: 500px; /* keeps images same width */
    border-radius: 10px;
  }
}




/*-------------------------*/

body {
  background-color: #f8eddc;
  font-family: "abc-repro", sans-serif;
  color: #2b2b2b;
}

/* Rectangle after title */
.section-title {
  font-size: 3.8rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Awesome Serif", serif;
  color: #7F011E;
  transition: all 0.4s ease;
  display: inline-block;
  cursor: pointer;
  margin: 0;
  position: relative;
}
.section-title::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #7F011E;
  margin-left: 12px;
  vertical-align: middle;
}



/* Bounce hover */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
.section-title:hover {
  animation: bounce 1s ease;
  color: #800020;
}

.expertise-section {
  background-color: #f8eddc;
  padding-top: 100px;
  padding-bottom: 100px;
}

.left-inner, .right-inner {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/*
.expertise-image img {

  transition: transform 0.4s ease, opacity 0.4s ease;
}*/

.expertise-image img {
  width: 100%;
  height: 450px;          /* fixed clean height */
  object-fit: cover;      /* crops image nicely */
  border-radius: 12px;
}

.expertise-image img:hover {
  transform: scale(1.02);
}

.accordion-item {
  background: none;
  border: none;
  border-bottom: 1px solid #2b2b2b;
  padding: 10px 0;
}

.accordion-button {
  background: none;
  border: none;
  color: #2b2b2b;
  font-size: 22px;
  font-weight: 600;
  font-family: "Awesome Serif", serif;
  box-shadow: none;
  justify-content: space-between;
}
/* Hide Bootstrap's default arrow */
.accordion-button::after {
  background-image: none !important;
}
/* Single icon only (no overlap) */
.accordion-button::after {
  content: "+";
  font-size: 32px;
  color: #2b2b2b;
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  content: "×";
}

/* Remove Bootstrap active color & background when open */
.accordion-button:not(.collapsed) {
  color: inherit !important;              /* keeps your custom text color */
  background-color: transparent !important; /* no background change */
  box-shadow: none !important;              /* removes inset shadow */
}

/* Remove the border highlight on click/focus */
.accordion-button:focus {
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}


.accordion-body {
  padding-left: 40px;
  padding-top: 10px;
  color: #5c5248;
  font-size: 18px;
}
/*
.small-img {
  width: 600px;
  height: 350px;
  
}*/
.small-img {
  width: 100%;
  height: 350px;          /* uniform size */
  object-fit: cover;      /* prevent stretching */
  border-radius: 12px;
}

.number {
  margin-right: 10px;
  font-weight: 600;
  font-family: "Awesome Serif", serif;
  color: #5c5248;
}
@media (min-width: 1400px) {
  .left-inner {
    position: sticky;
    top: 120px;
  }
}

/*
@media (min-width: 992px) {

  
  .expertise-section .row {
    display: flex;
    align-items: center;      
  }

  
  .left-inner {
    position: sticky;
    top: 120px;
    height: auto;
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;   
    padding-right: 40px;                 
  }

  .right-inner {
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;   
  }
}

*/

@media (min-width: 992px) {

  /* Do NOT align center on row */
  .expertise-section .row {
    align-items: flex-start !important;
  }

  /* Sticky left side */
  .left-inner {
    position: sticky;
    top: 120px;
    height: auto;
  }
}

.center-left {
  height: 500px; 
  display: flex;
  flex-direction: column;
  justify-content: center;  /* beautiful center */
}



/* ---- MOBILE FIX (Below 576px) ---- */
@media (max-width: 576px) {

  /* Reduce top/bottom area */
  .expertise-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Remove large min-height that pushes content down */
  .left-inner,
  .right-inner {
    min-height: auto !important;
    display: flex !important;
    justify-content: flex-start !important;
  }

  /* Title spacing */
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Image spacing */
  .expertise-image {
    margin-bottom: 20px;
  }

  /* Accordion spacing */
  .accordion-body {
    padding-left: 15px;
    padding-right: 10px;
  }

  .accordion-item {
    padding: 8px 0;
  }

  /* Reduce large .small-img size for mobile */
  .small-img {
    width: 100% !important;
    height: auto !important;
  }
}



/*--------Project--------------*/
html, body {
  background-color: #f8eddc !important;
}


.projects-section {
  position: relative;
  background: #f8eddc;
  overflow: hidden;
  margin-top: 30px;
  padding-top: 60px;
}

/* Title (top-right inside section) */
.projects-header {
  position: absolute;
  top: 60px;
  right: 100px;
  z-index: 10;
}

.projects-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #7F011E;
  font-family: "Awesome Serif", serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 20px;
}

.projects-title:hover {
  animation: bounce 0.8s ease;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #4b000b;
  display: inline-block;
  margin-top: 20px;
  
}

/* Bounce animation */
@keyframes bounce {
  0%,20%,50%,80%,100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* Horizontal Scroll Container */

.projects-scroll {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 60px;
  padding: 0 120px;
}

/* Project Cards */
.project-card {
  flex: 0 0 600px;
  height: 420px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 30px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8eddc;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Awesome Serif", serif;
  padding: 12px 20px;
}

.project-card a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}


/* Responsive */
@media (max-width: 992px) {
  .projects-header { right: 40px; top: 40px; }
  .projects-title { font-size: 2rem; }
  .scroll-wrapper { gap: 30px; padding: 0 60px; }
  .project-card { flex: 0 0 400px; height: 350px; }
}

/* SIMPLE MOBILE FIX */
@media (max-width: 576px) {

  /* Section margin left/right */
  .projects-section {
    padding: 0 20px;
    padding-bottom: 10px !important;
    margin-bottom: 0 !important;
  }

  /* Remove large gap above cards */
  .projects-header {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 15px; /* reduce gap */
    text-align: center;
  }

  /* Fix padding in scroll wrapper */
  .scroll-wrapper {
    flex-direction: column;
    padding: 0;
    gap: 20px;            /* even spacing between cards */
  }

  .projects-scroll {
    height: auto;          
    padding-top: 0;
    padding-bottom: 15px;  
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    height: auto !important;
  }



  /* Card sizes (unchanged) */
  .project-card {
    flex: none;
    width: 100%;
    height: auto;
  }
}


/*Why MMD?*/


.why-section {
  background-color: #f8eddc;
  padding: 60px 0;
  overflow: hidden;
  margin-top: 20px;
}

/* Title */
.section-title {
  font-family: "Awesome Serif", serif;
  font-weight: 600;
  font-size: 2.5rem;
  color: #7F011E;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.section-title:hover {
  animation: bounce 0.8s;
  color: #7c0000
}
/*
.square {
  width: 10px;
  height: 10px;
  background-color: #7c0000;
  display: inline-block;
  margin-left: 8px;
  
} */

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Cards */
.why-card {
  background-color: #f8eddc;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  /*box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
  transition: all 0.3s ease;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #7F011E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon-circle img {
  width: 48px;
  height: 48px;
  color: #f8eddc;
 /* filter: brightness(0) invert(1);*/
}

.why-card h5 {
  font-family: "Awesome Serif", serif;
  font-weight: 400;
  margin-bottom: 8px;
  color: #000;
}

.why-card p {
  font-family: "abc-repro", sans-serif;
  font-size: 0.95rem;
  color: #444;
  margin: 0;
}

/* Scroll Animation */
.fade-in-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease-out;
}

.fade-in-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
  .section-title {
    font-size: 1.6rem;
  }
  .why-card {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .why-section {
    padding-top: 30px !important; /* previously 60px */
  }
}



/*CTA*/


.work-section {
   background-color: #7c0000;
  color: #f8eddc;
  padding: 180px 20px; /* 🔹 increased vertical height (was 120px) */
  min-height: 80vh;   /* 🔹 makes the section fill full screen height on large screens */
  display: flex;
  align-items: center; /* 🔹 vertically centers the content */
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Title */
.work-title {
  font-family: "Awesome Serif", serif;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.work-title.show {
  opacity: 1;
  transform: translateY(0);
}

.work-title:hover {
  animation: bounce 0.8s;
}

.square-dot {
  width: 12px;
  height: 12px;
  background-color: #f8eddc;
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}

/* Description */
.work-desc {
  font-family: "abc-repro", sans-serif;
  font-size: 1.05rem;
  color: #f8eddc;
  max-width: 650px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.work-desc.show {
  opacity: 1;
  transform: translateY(0);
}

/* Email Button */
.email-btn {
  display: inline-block;
  background-color: #f8eddc;
  font-family: "abc-repro", sans-serif;
  color: #7c0000;
  padding: 12px 28px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.email-btn.show {
  opacity: 1;
  transform: translateY(0);
}

.email-btn:hover {
  background-color: #fff;
  transform: translateY(-3px);
}

/* Phone Number */
.work-number {
  font-family: "Awesome Serif", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #f8eddc;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.work-number.show {
  opacity: 1;
  transform: translateY(0);
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 767px) {
  .work-title {
    font-size: 1.8rem;
  }
  .work-desc {
    font-size: 0.95rem;
  }
}


/*Footer*/

body {
  background-color: #f8eddc;
  font-family: 'ABC Repro', sans-serif !important;
  color: #3a2a2a;
}

.footer-section {
  background-color: #f8eddc;
}

.footer-line {
  width: 60%;
  border-top: 1px solid #3a2a2a;
  opacity: 0.6;
  margin-top: 15px;
}

/* Quote */
.footer-quote {
  font-family: 'Awesome Serif', serif;
  font-size: 1.6rem;
  color: #8b0000;
  line-height: 1.6;
  opacity: 0;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 0.5s ease-in-out;
  white-space: normal;
}


/* Hover Links */
.footer-link {
  color: #3a2a2a;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: 'ABC Repro', sans-serif;
}


.footer-link:hover {
  color: #a10000;
  transform: translateY(-2px);
}

/* Button */
.btn-danger {
  background-color: #a10000;
  border: none;
  transition: 0.3s ease;
}

.btn-danger:hover {
  background-color: #7a0000;
}

/* Footer Layout 
.footer-section .row {
  text-align: center;
} */

.footer-section .row > .col-lg-4 {
  text-align: left; /* only the left column */
}
/* Add this at the bottom of your CSS */
.footer-section h5 {
  font-family: 'Awesome Serif', serif;
  font-weight: 600;
  color: #8b0000;
  letter-spacing: 0.5px;
}

.footer-section .row {
  text-align: center; /* mobile */
}

@media (min-width: 768px) {
  .footer-section .row .col-lg-3,
  .footer-section .row .col-lg-4 {
    text-align: left !important; /* desktop */
  }
}



/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    /*text-align: center;*/
    padding: 50px 25px;
  }

  .footer-quote {
    font-size: 1.25rem;
    margin: 30px 10px;
    max-width: 90%;
  }

  .footer-section .row > .col-lg-4 {
    text-align: center; /* center again on mobile */
  }

  .footer-line {
    width: 85%;
  }
}
