/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  overflow-x: hidden;
}

/* =========================
   NAVBAR
========================= */

.custom-navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
  width: 130px;
}

.navbar-nav {
  gap: 12px;
  align-items: center;
}

.nav-link {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin-left: 25px;
  transition: 0.3s;
}

.nav-link:hover,
.active-link {
  color: #ff3b3b !important;
}

/* =========================
   ABOUT BANNER
========================= */

.about-banner {
  padding: 80px 0 40px;
  text-align: center;
}

.about-title {
  color: #000;
}

.about-title span {
  color: #ff3b3b;
}

.about-subtitle {
  max-width: 750px;
  margin: auto;
  color: #555;
}

/* =========================
   ABOUT CONTENT
========================= */

.about-content-section {
  padding: 80px 0;
}

.small-line {
  width: 50px;
  height: 3px;
  background: #ff3b3b;
  margin-bottom: 25px;
}

.content-title {
  color: #000;
}

.content-title span {
  color: #ff3b3b;
}

.content-text {
  color: #555;
}

.about-image {
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 470px;
  height: 340px;
  border-radius: 20px;
  object-fit: cover;
  border: 2px solid rgba(255, 59, 59, 0.2);
}

/* =========================
   JOURNEY SECTION
========================= */

.journey-section {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  color: #000;
}

.section-title span {
  color: #ff3b3b;
}

.journey-text {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.journey-text p {
  margin-bottom: 10px;
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
  padding: 40px 0 80px;
  background-color: #fff;
}

.section-subtitle {
  max-width: 800px;
  color: #555;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

.team-card h6 {
  color: #000;
  text-transform: uppercase;
}

.team-card .team-role {
  font-size: 12px;
  font-weight: 600;
  color: #ff3b3b;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
  padding: 40px 0 80px;
  background-color: #fcfcfc;
}

.gallery-slider {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}

.gallery-slider .slide-item {
  transition: all 0.5s ease;
  transform: scale(0.85);
  opacity: 0.6;
  padding: 10px;
  outline: none;
}

.gallery-slider .slick-center {
  transform: scale(1.1);
  opacity: 1;
  z-index: 10;
  position: relative;
}

.gallery-slider .slide-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-slider .slick-center img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-slider .slick-prev,
.gallery-slider .slick-next {
  width: 40px;
  height: 40px;
  z-index: 15;
}

.gallery-slider .slick-dots li button::before {
  font-size: 10px;
  opacity: 1;
  color: gray;
}

.gallery-slider .slick-dots li.slick-active button::before {
  color: #ff3b3b;
}

.gallery-slider .slick-prev::before,
.gallery-slider .slick-next::before {
  font-size: 25px;
  color: #ff3b3b;
  opacity: 1;
  font-family: "bootstrap-icons";
}

.gallery-slider .slick-prev::before {
  content: "\f284";
}

.gallery-slider .slick-next::before {
  content: "\f285";
}

/* =========================
   FOOTER
========================= */

.footer-section {
  background: rgb(220, 218, 218);
  color: #000;
  padding: 40px 0 0;
}

.footer-logo img {
  width: 170px;
  margin-bottom: 20px;
  margin-left: -18px;
}

.footer-social a {
  color: black;
  font-size: 22px;
  margin-right: 10px;
}

.footer-text {
  color: black;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  color: black;
  font-weight: 300;
}

.footer-links li {
  margin-bottom: 8px;
}

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

.footer-links a:hover {
  color: #cc2b2b;
}

.footer-links i {
  padding-right: 5px;
}

.footer-bottom {
  background-color: #cc2b2b;
  text-align: center;
  padding: 10px;
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/* =========================
   CUSTOM FOOTER
========================= */

.custom-footer-link {
  color: #444 !important;
  text-decoration: underline !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  transition: color 0.3s ease !important;
}

.custom-footer-link:hover {
  color: #d92525 !important;
}

.custom-footer-btn {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px 10px;
  color: #d92525;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-footer-btn:hover {
  background: #d92525;
  color: #fff;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.footer-social-icons.show-social {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.footer-social-icons a {
  color: #555;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #a81c1c;
}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width: 576px) {
  .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }

  .navbar-collapse {
    background: #fff;
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav {
    gap: 0;
  }

  .nav-link {
    margin-left: 0;
    margin-top: 10px;
    padding: 10px 0;
  }

  .about-banner {
    padding: 60px 15px 30px;
  }

  .about-content-section,
  .journey-section,
  .team-section,
  .gallery-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  .small-line {
    margin: 0 auto 20px;
  }

  .content-title,
  .content-text {
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-image img {
    height: auto;
  }

  .gallery-slider {
    padding: 10px 0 30px;
  }

  .gallery-slider .slick-prev,
  .gallery-slider .slick-next {
    display: none !important;
  }

  .footer-section {
    padding: 20px 15px 0;
    text-align: center;
  }

  .footer-logo img {
    width: 120px;
    margin-left: 0;
  }

  .footer-social {
    margin-bottom: 10px;
  }

  .footer-social a {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer-links,
  .footer-text {
    text-align: center;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .custom-footer-btn {
    display: none;
  }

  .footer-social-icons {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;

    width: 100%;
    margin-top: 10px;
  }

  .footer-social-icons a {
    font-size: 20px;
  }

  .d-flex.align-items-center.gap-3 {
    justify-content: center;
  }
}

/* =========================
   TABLET / IPAD VIEW
========================= */

@media (min-width: 577px) and (max-width: 991px) {
  .navbar-nav {
    gap: 0;
    align-items: flex-start;
    padding-top: 10px;
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }

  .navbar-collapse {
    background: #fff;
    padding: 15px 0;
  }

  .navbar-toggler {
    border: none;
    box-shadow: none !important;
  }

  .about-banner {
    padding: 60px 20px 30px;
  }

  .about-subtitle {
    max-width: 90%;
  }

  .about-content-section {
    padding: 60px 20px;
    text-align: center;
  }

  .small-line {
    margin: auto !important;
    margin-bottom: 15px !important;
  }

  .content-title,
  .content-text {
    text-align: center !important;
  }

  .about-image {
    margin-top: 35px;
  }

  .about-image img {
    max-width: 100%;
    height: 320px;
  }

  .journey-section {
    padding: 50px 20px;
  }

  .journey-text {
    max-width: 95%;
  }

  .team-section {
    padding: 50px 20px 70px;
  }

  .team-card {
    margin-bottom: 30px;
  }

  .team-card img {
    max-width: 180px;
  }

  .gallery-section {
    padding: 50px 0 70px;
  }

  .gallery-slider {
    padding: 20px 0 40px;
  }

  .gallery-slider .slide-item {
    transform: scale(0.92);
    opacity: 0.8;
  }

  .gallery-slider .slick-center {
    transform: scale(1);
  }

  .gallery-slider .slide-item img {
    height: 260px;
  }

  .footer-section {
    padding: 40px 20px 0;
    text-align: center;
  }

  .footer-logo img {
    width: 140px;
    margin-left: 0;
  }

  .footer-social {
    margin-bottom: 20px;
  }

  .footer-social a {
    font-size: 20px;
  }

  .footer-text,
  .footer-links {
    text-align: center;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-bottom {
    margin-top: 20px;
    padding: 12px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .custom-footer-btn {
    display: none;
  }

  .footer-social-icons {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;

    width: 100%;
    margin-top: 10px;
  }

  .footer-social-icons a {
    font-size: 22px;
  }

  .d-flex.align-items-center.gap-3 {
    justify-content: center;
  }
}
