/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary-backcolor: #ffffff;
  --header-backcolor: #ecebeb;
  --primary-font-color: #000000;
  --menu-font: 'Inter', sans-serif;
  --primary-font: 'Poppins', sans-serif;
  --secondery-font: 'Roboto', sans-serif;
  --primary-font-size: 0.8rem;
  --small-font-size: clamp(10px, 0.9vw, 12px);
  --secondery-font-size: clamp(12px, 1.1vw, 14px);
  --menu-title-font-size: clamp(12px, 1.1vw, 14px);
  --special-font-size: clamp(16px, 1.125rem, 20px);
  --special-ww-font-size: clamp(28px, 1.875rem, 30px);
  --primary-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  --primary-border-radius: 3px;
  --primary-hover-color: #017ec3;
  --secondery-hover-color: #01b8ea;
  --primary-curtain-back-color: rgba(0, 0, 0, 0.45);
  --curtain-back-color: rgba(1, 126, 195, 0.45);
  --footer-menu-font-size: 1rem;
}

/* ======== GENERAL RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

a {
  text-decoration: none;
  color: var(--secondery-hover-color);
}

a:hover {
  color: var(--primary-hover-color);
  transition: 0.2s;
}
body {
  font-family: var(--primary-font);
  background-color: var(--primary-backcolor);
}

header {
  height: auto;
  background-color: var(--header-backcolor);
  padding: 0 0 20px 0;
}

.header-top-first {
  width: 80%;
  align-self: center;
  justify-self: center;
  color: var(--primary-font-color);
  text-align: end;
  font-size: var(--primary-font-size);
  padding: 5px 0;
}
header p {
  width: 80%;
  justify-self: center;
  margin-top: 0.6%;
  font-weight: 600;
}
header p a {
  color: #000;
}
header p a:hover {
  color: var(--secondery-hover-color);
  transition: 0.2s;
}
/* ======== NAVBAR STYLING ======== */
.navbar {
  display: flex; /* keeps logo + button inline */
  align-items: center; /* vertical center */
  justify-content: space-between;

  width: 80%;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  justify-self: center;
  border-radius: var(--primary-border-radius);
}

.navbar-brand {
  font-weight: 600;
  color: var(--primary-hover-color) !important;
}

.navbar-brand img {
  width: 90%;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 10px 20px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.show .nav-link {
  color: var(--secondery-hover-color) !important;
}

/* ======== MEGA MENU ======== */
.dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  top: 100%;
  border: none;
  border-radius: var(--primary-border-radius);
  padding: 20px 30px;
  background-color: var(--primary-backcolor);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
}

.mega-menu .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.mega-menu .col-md-3 {
  flex: 1 1 22%;
  min-width: 200px;
}

.mega-menu h6 {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--secondery-hover-color);
  font-weight: 600;
  border-bottom: 1px solid var(--secondery-hover-color);
  display: inline-block;
  padding-bottom: 2px;
}

.mega-menu h6 a {
  color: var(--primary-hover-color);
  text-decoration: none;
  font-size: var(--secondery-font-size);
}

.mega-menu ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

.mega-menu ul li {
  margin-bottom: 0;
}

.mega-menu ul li a {
  color: #555;
  text-decoration: none;
  font-size: var(--small-font-size);
}

.mega-menu ul li a:hover {
  color: var(--primary-hover-color);
  padding-left: 5px;
  transition: 0.2s;
}
.carousel-control-next,
.carousel-control-prev {
  width: 10%;
}
.carousel-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  filter: brightness(80%);
}
.carousel-inner img {
  max-width: 100%;
  display: block;
}

.carousel-caption {
  background: var(--primary-curtain-back-color);
  border-radius: 10px;
  padding: 15px 20px;
  width: 80%;
  display: flex;
  justify-content: start;
  align-items: center;
  justify-self: center;
  text-align: left !important;
  bottom: 20px;
}

.caption-left h2,
.caption-left p {
  margin: 0;
}

.caption-share {
  display: flex;
  gap: 12px;
  font-size: 22px;
}

.caption-share a {
  color: var(--primary-backcolor);
  transition: 0.2s ease;
}

.caption-share a:hover {
  color: var(--secondery-hover-color);
}

/* ======== NAV TOGGLER ======== */
.navbar-toggler {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-icon {
  font-size: 24px;
  color: rgba(0, 0, 0, 0.95);
  padding: 5px 5px;
}

/* ======== ICONS ======== */
.navbar-nav .nav-link i {
  margin-right: 6px;
  font-size: 16px;
}

/* ======== MIDDLE SECTION ======== */
.section_mdl {
  padding: 30px 0 25px 0;
  background-color: var(--primary-backcolor);
}
.section_mdl_content {
  width: 80%;
  margin: 0 auto;
}
.section_mdl .section_mdl_content h3,
h5 {
  text-align: center;
}

.section_mdl_content p {
  font-size: var(--menu-title-font-size);
}

/* ================= CURTAIN CARD EFFECT ================= */

.section_mdl .card {
  position: relative;
  overflow: hidden;
  border-radius: var(--primary-border-radius);
  border: none;
  box-shadow: var(--primary-box-shadow);
}

/* Image stays clean */
.section_mdl .card img {
  height: 270px;
  object-fit: cover;
}
.card-img,
.card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/* Curtain container */
.curtain-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 58px; /* visible curtain height */
  background: var(--primary-curtain-back-color);
  color: var(--primary-backcolor);
  padding: 14px 16px;
  transition: height 0.5s ease;
  backdrop-filter: blur(6px);
  border-radius: var(--primary-border-radius);
}

/* Card hover reveals full curtain */

.section_mdl .card:hover .curtain-body {
  height: 75%;
}

/* Title always visible */
.curtain-title {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  z-index: 2;
}

/* Hidden content */
.curtain-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
  margin-top: 14px;
}

/* Show curtain on hover */
.section_mdl .card:hover .curtain-content {
  opacity: 1;
  transform: translateY(0);
}

/* Text inside curtain */
.curtain-text {
  text-align: left;
  font-size: var(--secondery-font-size);
  color: var(--primary-backcolor);
}

/* Button */
.curtain-content .btn {
  position: absolute;
  margin-top: 5%;
  top: 100%;
  right: 16px;
  padding: 6px 18px;
  border-radius: var(--primary-border-radius);
  background-color: var(--primary-hover-color);
  font-size: var(--primary-font-size);
  font-weight: 500;
  transition: all 0.3s ease;
}

.curtain-content .btn:hover {
  background-color: var(--secondery-hover-color);
  color: var(--primary-backcolor);
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.35);
}

/* Text inside curtain */
.curtain-content p {
  font-size: var(--secondery-font-size);
  font-weight: normal;
}

/* Links */
.curtain-content a {
  color: var(--primary-backcolor);
  font-size: var(--primary-font-size);
}

.curtain-content a:hover {
  color: var(--secondery-hover-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-hover-color);
  --bs-btn-border-color: var(--primary-hover-color);
  --bs-btn-hover-color: var(--primary-backcolor);
  --bs-btn-hover-bg: var(--secondery-hover-color);
  --bs-btn-hover-border-color: var(--primary-hover-color);
  --bs-btn-focus-shadow-rgb: 255, 107, 0;
  --bs-btn-active-color: var(--primary-backcolor);
  --bs-btn-active-bg: var(--primary-hover-color);
  --bs-btn-active-border-color: var(--primary-hover-color);
}
/* ================= CURTAIN CARD PREMIUM SHADOW ================= */

/* Base card shadow */
.section_mdl .card {
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: deeper & floating */
.section_mdl .card:hover {
  transform: translateY(-12px);
  box-shadow:
    0 25px 55px rgba(0, 0, 0, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

/* Soft shadow for image edge */
.section_mdl .card img {
  box-shadow: inset 0 -30px 40px rgba(0, 0, 0, 0.25);
}

/* Curtain shadow separation */
.curtain-body {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.section_mdl .card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.section_mdl .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* ======== MIDDLE SECTION END ======== */
/* ======== FOOTER START ======== */
.footer {
  padding-top: 3rem !important;
  width: 100%;
  background-color: var(--header-backcolor);
}
.section_footer_content {
  width: 80%;
  justify-self: center;
}
.section_footer_content img {
  width: 50%;
}
.section-footer-content-context {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 0.1rem;
}
.section-footer-content-context .footer-left {
  width: 30%;
}
.section-footer-content-context .footer-right {
  width: 70%;
}
.section-footer-content-context .footer-right h5 {
  font-family: var(--secondery-font);
  text-align: start;
  font-size: var(--secondery-font-size);
}
.section-footer-content-context .footer-left .footer-left-img {
  width: 100%;
}
.section-footer-content-context .footer-left .footer-left-text {
  margin-top: 3%;
  margin-bottom: 3%;
  margin-right: 5%;
  text-align: start;
  font-family: var(--menu-font);
  font-size: var(--small-font-size);
}
.section-footer-content-context .footer-right .footer-right-context {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2rem;
}
.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--primary-font-color);
  text-decoration: none;
  font-size: var(--primary-font-size);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--secondery-hover-color);
  padding-left: 4px;
}

.footer-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  text-align: center;
  background: var(--secondery-hover-color);
  color: var(--primary-backcolor);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-hover-color);
  transform: translateY(-4px);
}

hr {
  background: var(--primary-hover-color);
  border-color: var(--primary-hover-color);
}
.footer-note {
  font-size: var(--small-font-size);
}

/* ======== FOOTER END ======== */
/* ======== SECOND START ======== */

.hero-section-second {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  background: #f5f5f5;
}

.hero-section-second-position {
  width: 100%;
  height: clamp(220px, 34vw, 360px); /* smaller, clean & responsive height */
  overflow: hidden;
}
.hero-section-second-position img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* professional crop */
  display: block;
}

.top-banner {
  background: rgba(0, 0, 0, 0.45);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  color: #f9fafa;
}

.header-top-section {
  padding: 8px 0;
  border-bottom: 1px solid #f9fafa;
}

.hero-header {
  margin: 0;
  font-size: 3rem;
  font-weight: 600;
}

.context-slug {
  padding: 10px 0;
}
.context-content {
  text-align: start;
  font-size: var(--primary-font-size);
  font-weight: normal;
  font-style: normal;
  margin-bottom: 3%;
}
/* ===== BLOG CONTENT RESET ===== */
.blog-content,
.blog-content p,
.blog-content ul,
.blog-content li {
  font-family: var(--primary-font);
  font-style: normal !important;
  font-weight: 400;
  color: #333;
}

/* Paragraph spacing */
.blog-content p {
  margin-bottom: 12px;
  line-height: 1.8;
  font-size: var(--primary-font-size) !important;
}

/* Strong / Bold */
.blog-content strong {
  font-weight: 600;
  color: var(--primary-hover-color);
}

/* Bullet list spacing */
.blog-content ul.blog-list {
  margin-left: 30px;
  padding-left: 0;
  margin-bottom: 15px;
  list-style: none;
}

/* Bullet item spacing */
.blog-content ul.blog-list li {
  font-family: var(--menu-font);
  margin-bottom: 6px;
  position: relative;
  padding-left: 26px;
}

/* Custom bullet */
.blog-content ul.blog-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background-image: url('../img/cusicon.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

/* Remove accidental italics inheritance */
.blog-content em,
.blog-content i {
  font-style: normal;
}

/* ======== SECOND END ======== */
/* ======== FOURTH START ======== */
.sitemap > p {
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
}
.sitemap > p a {
  color: #000;
}

.sitemap > p a:hover {
  font-style: normal;
  text-decoration: underline;
  transition: 0.2s;
}

.section_mdl_content_context {
  display: block;
  gap: 0;
  padding: 0;
}
.content-row {
  display: flex;
}
/* LEFT MENU */
.content-row .left-menu,
.content-row .right-content {
  flex: 0 0 50%;
  margin-top: 3%;
}
.left-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-menu ul li {
  font-size: 20px;
  font-weight: 600;
  padding: 14px 20px;
  cursor: pointer;
  position: relative;
  background: #f0f0f0; /* light background */
  border-left: 5px solid #6b6a6a;
  transition: background 0.3s ease;
  width: 550px;
}

/* Left color bar */
.left-menu ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0px;
  height: 100%;
  transition: width 0.3s ease;
}

/* Active row */
.left-menu ul li.active {
  background: #f0f0f0; /* light active background */
  border-left: 5px solid #a8a7a7;
  color: #a8a7a7;
}

.left-menu ul li.active::before {
  width: 1px; /* thickness of left bar */
}

/* Underline animation */
.left-menu ul li .underline {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #a8a7a7;
  transition: width 0.3s ease;
}

.left-menu ul li.active .underline {
  width: 100%;
}

.left-menu p,
.right-content p {
  font-family: var(--menu-font);
  font-size: var(--special-font-size);
  font-weight: normal;
  text-align: left;
  margin-bottom: 0.2rem;
}

.right-content {
  padding-left: 30px;
  min-height: 300px;
  position: relative;
  text-align: right;
}

/* LEFT border */
.right-content .border-left {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  background: rgba(0, 0, 0, 0.45);
  animation: drawLeft 0.5s forwards;
}

/* TOP border */
.right-content .border-top {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: rgba(0, 0, 0, 0.45);
  animation: drawTop 0.5s forwards;
  animation-delay: 0.5s;
}

/* RIGHT border */
.right-content .border-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 0;
  background: rgba(0, 0, 0, 0.45);
  animation: drawRight 0.5s forwards;
  animation-delay: 1s;
}

/* BOTTOM border */
.right-content .border-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.45);
  animation: drawBottom 0.5s forwards;
  animation-delay: 1.5s;
}

.left-menu img,
.right-content img {
  width: 85%;
  height: auto;
  object-fit: cover;
  border-radius: var(--primary-border-radius);
}

.aboutus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* equal width */
  gap: 32px;
  margin-top: 3%;
}

.aboutus-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;

  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
  transition: all 0.25s ease;
}

.aboutus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
}

.aboutus-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.aboutus-icon img {
  width: 28px;
  height: 28px;
}

.aboutus-content h4 {
  margin: 0 0 6px 0;
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
}

.aboutus-content p {
  margin: 0;
  font-family: var(--menu-font);
  font-size: var(--primary-font-size);
  line-height: 1.6;
  color: #6b7280;
}

/* KEYFRAMES */
@keyframes drawLeft {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes drawTop {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes drawRight {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes drawBottom {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.content-box {
  display: none;
}
.content-box h3 {
  padding-top: 20px;
}
.content-box p {
  padding: 0 15px;
  text-align: start;
}
.content-box.active {
  display: block;
}

/* RESPONSIVE */

/* SCALE-UP ANIMATION */
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Apply scale-up to content box when active */
.content-box {
  display: none;
  opacity: 0;
  transform: scale(0.95);
}

.content-box.active {
  display: block;
  animation: scaleUp 2s ease forwards;
}

.last-context {
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
}

.last-context-left {
  width: 30%;
}

.last-context-left img {
  width: 100%;
  height: auto;
}

.last-context-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: var(--primary-font-size);
  gap: 1rem;
}
.last-context-right-heading {
  font-family: var(--secondery-font);
  font-size: var(--special-ww-font-size);
  font-weight: 700;
  color: var(--primary-hover-color);
  text-align: start;
}
.last-context-right-text {
  text-align: start;
  font-size: var(--primary-font-size);
  font-weight: normal;
}
/* ======== FOURTH END ======== */
/* ======== CONTACT US START ======== */
.contact-info h5,
.contact-form h5 {
  color: var(--primary-hover-color);
}

.contact-info i,
.contact-form i {
  color: var(--primary-hover-color);
}

.contact-form .form-control {
  height: 48px;
  border-radius: 8px;
}

.contact-form textarea {
  border-radius: 8px;
}

.contact-info,
.contact-form {
  border-radius: 16px;
}

.social-icons a:hover {
  color: #0d6efd;
  transition: 0.3s;
}
.map-container {
  height: 400px;
}

/* ======== CONTACT US END ======== */

/* ========= RESPONSIVE SECTION START ========= */

@media (max-width: 430px) {
  .hero-header {
    font-size: 1.2rem;
  }
  .context-slug {
    font-size: 1rem;
  }
  .card-item {
    width: 300px;
  }
  .card-item h4 {
    font-size: 1rem;
  }
  .card-item p {
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .carousel-img {
    height: 30vh;
  }
  .map-container {
    height: 300px;
  }
  .navbar {
    width: 95%;
  }
  .navbar-brand {
    width: 80%;
  }
  .navbar-brand img {
    width: 100%;
    height: auto;
  }
  .navbar-toggler {
    padding: 6px 0;
  }
  .navbar-toggler-icon {
    display: block !important;
    padding: 5px 0;
  }
  .card-item {
    min-width: 140px;
  }
  .footer-social a {
    margin-right: 6px;
  }
}

@media (max-width: 768px) {
  .carousel-img {
    height: 40vh;
  }
  .carousel-caption {
    width: 95%;
    bottom: 10px;
    padding: 10px;
    font-size: 0.9rem;
    text-align: center !important;
  }

  .caption-share {
    justify-content: center;
    gap: 10px;
    font-size: 18px;
  }

  .section_mdl_content_context {
    flex-direction: column;
  }
  .left-menu ul li {
    width: 100%;
  }
  .right-content {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }
  .card-item {
    min-width: 160px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 0 0 5px 0;
  }
  .header-top-first {
    width: 95%;
  }
  .navbar {
    width: 95%;
    margin: 0 auto;
    border-radius: 5px;
  }
  .navbar-brand img {
    width: 70%;
    height: auto;
  }
  .px-4 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }
  .carousel-img {
    height: 50vh;
  }
  .dropdown-menu.mega-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    padding: 10px 15px;
  }

  .mega-menu .row {
    flex-direction: column;
    gap: 10px;
  }

  .mega-menu .col-md-3 {
    min-width: 100%;
  }

  .navbar-nav .nav-link {
    padding: 8px 15px;
  }

  .hero-section-second {
    height: auto;
    padding: 0;
  }
  .hero-header {
    font-size: 2.2rem;
  }

  .section_mdl_content {
    width: 94%;
    margin: 0 auto;
  }
  .card-item {
    min-width: 200px;
  }
  .section_footer_content {
    width: 94%;
    margin: 0 auto;
  }
  .section_footer_content img {
    width: 40%;
  }
  .section-footer-content-context {
    flex-direction: column;
  }
  .section-footer-content-context .footer-left {
    width: 100%;
  }
  .section-footer-content-context .footer-left .footer-left-text {
    margin-right: 0;
  }
  .section-footer-content-context .footer-right {
    width: 100%;
  }
  .section-footer-content-context .footer-left .footer-left-img {
    text-align: center;
  }
  .section-footer-content-context .footer-left .footer-social {
    text-align: center;
  }
  .section-footer-content-context .footer-right .footer-right-context {
    margin-top: 5%;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .context-content {
    margin-bottom: 5%;
  }

  .last-context {
    flex-direction: column;
  }

  .last-context-left,
  .last-context-right {
    width: 100%;
  }
  .last-context-right {
    margin: 3% 0 0 0;
    gap: 0.3rem;
  }

  .content-row {
    flex-direction: column;
  }

  .content-row .left-menu,
  .content-row .right-content {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
  }
  .left-menu img,
  .right-content img {
    width: 100%;
    height: auto;
  }

  .aboutus-cards {
    grid-template-columns: 1fr;
  }
}
