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

* {
  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-color: #fff;
  width: 100%;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.06);
}

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

.navbar-nav {
  gap: 18px;
  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;
}

/* =========================
   CORPORATE SECTION
========================= */

.corporate-section {
  padding: 50px 0;
}

.corporate-content {
  max-width: 720px;
  margin: auto;
}

.corporate-content h2 {
  color: #000;
}

.sub-heading {
  color: #535252;
  max-width: 800px;
  line-height: 1.8;
}

/* =========================
   REPORT CARD
========================= */

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

.report-card img {
  width: 160px;
  margin-bottom: 18px;
  border-radius: 20px 0 20px 0;
  box-shadow: 10px 10px 10px #504f4f;
}

.report-card span {
  display: block;
  color: #cb2626;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
}

.download-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #cb2626;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 14px;
  transition: 0.3s;
}

.download-btn:hover {
  background: #b51212;
  color: #fff;
}

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

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

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

.footer-text {
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

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

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

.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;
}

/* =========================
   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;
}

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

.footer-bottom {
  background: #cc2b2b;
  text-align: center;
  padding: 15px 10px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

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

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

@media (min-width: 577px) and (max-width: 991px) {
  .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;
    padding: 10px 0;
  }

  .corporate-section {
    padding: 45px 20px;
    text-align: center;
  }

  .corporate-content {
    max-width: 90%;
  }

  .sub-heading {
    max-width: 100%;
    padding: 0 10px;
  }

  .report-card img {
    width: 145px;
  }

  .download-btn {
    padding: 11px 24px;
  }

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

  .footer-logo img {
    width: 135px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Hide Share Button */

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

  /* Show Social Icons */

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

    display: flex !important;
    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 !important;
  }

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

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

@media (max-width: 576px) {
  .custom-navbar {
    padding: 10px 0;
  }

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

  .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;
    padding: 10px 0;
  }

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

  .corporate-content,
  .sub-heading {
    padding: 0 10px;
  }

  .report-card img {
    width: 130px;
  }

  .download-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

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

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

  .footer-bottom {
    padding: 12px 10px;
  }

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

  /* Hide Share Button */

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

  /* Show Social Icons */

  .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;
  }
}
