:root {
  --color1: #ffffff;
  --color2: #111827;
  --color3: #f4b86a;          /* warmer gold accent */
  --color4: #f4f0e8;          /* soft background */
  --color5: #755e4a;          /* improved neutral brown */
  --color6: #243b53;          /* deep slate blue */
  --color7: #212529;
  --color8: #6c757d;
  --color9: #cccccc;
  --color10: #999999;
  --color11: #f8f9fa;
  --color12: #888888;
  --color13: #d1d5db;
  --font-primary: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI",
  "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
  "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-secondary: "Playfair Display", "Times New Roman", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--font-primary);
  color: var(--color2);
}

/* Generic container for consistent widths */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Reusable button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  background-color: var(--color3);
  color: var(--color2);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary:hover {
  background-color: var(--color6);
  color: var(--color1);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* HEADER */
.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background-color: var(--color4);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  flex-wrap: wrap;
  background: transparent;
}

.header p {
  font-family: var(--font-secondary);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--color2);
  letter-spacing: 0.12em;
}

.header .pageNav .NavLinks {
  display: flex;
  flex-direction: row;
  gap: 28px;
  list-style-type: none;
}

.header .pageNav .NavLinks li a {
  position: relative;
  text-decoration: none;
  color: var(--color5);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  font-family: var(--font-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header .pageNav .NavLinks > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: var(--color6);
  transition: width 0.25s ease;
}

.header .pageNav .NavLinks > li > a:hover::after {
  width: 100%;
}

.header .pageNav .NavLinks > li > a:hover {
  color: var(--color2);
}

.dropdown {
  position: relative;
}

.header .pageNav .NavLinks .submenu {
  position: absolute;
  top: 150%;
  left: 0;
  background: var(--color1);
  padding: 16px 4px;
  min-width: 190px;
  list-style: none;
  z-index: 1000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
}

.drophead {
  display: flex;
  gap: 5px;
  align-items: center;
  cursor: pointer;
}

.pageNav .NavLinks .dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header .NavLinks .submenu li a {
  display: block;
  padding: 8px 16px;
  transition: background-color 0.25s ease, color 0.25s ease;
  text-decoration: none;
  color: var(--color2);
  font-family: var(--font-primary);
  font-size: 14px;
}

.header .NavLinks .submenu li a:hover {
  background-color: var(--color4);
  color: var(--color6);
}

/* HAMBURGER MENU STYLING */
.menu-icon {
  display: none;
  position: relative;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  color: var(--color2);
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
  }

  .header .menu-icon {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 20px;
  }

  .header .pageNav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    background-color: var(--color1);
    padding: 14px 20px 20px;
    gap: 10px;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.25);
    z-index: 1001;
  }

  .header #menu-toggle:checked ~ .pageNav {
    display: flex;
  }

  .header .pageNav .NavLinks {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  .header .pageNav .NavLinks li {
    width: 100%;
  }

  .header .pageNav .NavLinks li a {
    color: var(--color2);
    display: block;
    padding: 10px 0;
  }

  .header .pageNav .NavLinks > li:hover {
    background-color: transparent;
  }

  .header .pageNav .NavLinks > li:hover a,
  .pageNav .NavLinks > li:hover i {
    color: var(--color6);
  }

  .header .pageNav .NavLinks .dropdown:hover .submenu li a {
    color: var(--color2);
  }

  .header .pageNav .NavLinks .dropdown .submenu {
    position: static;
    box-shadow: none;
    padding: 4px 0 0;
    border-radius: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header .pageNav .NavLinks .dropdown .submenu li a {
    padding-left: 18px;
  }
}

/* MAIN CONTENT */
#main-content {
  flex-grow: 1;
  padding-top: 84px;
  padding-bottom: 100px;
}

/* SECTION1 */
.section-body {
  position: relative;
  background-image: linear-gradient(
          to right,
          rgba(17, 24, 39, 0.86),
          rgba(17, 24, 39, 0.55)
  ),
  url(/images/hero_bg_1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 60% center;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 50px;
}

.section-body-left {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  color: var(--color1);
  text-align: center;
}

.section-body-left .h {
  font-family: var(--font-secondary);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.2;
}

.section-body-left .p {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #e5e7eb;
}

.section-body-right {
  position: relative;
}

.open-button {
  /* kept for existing HTML, but style via .btn-primary */
}

/* Popup */
.popup {
  position: absolute;
  top: -450%;
  left: -140%;
  width: 900px;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--color1);
  margin-top: 200px;
  padding: 24px 22px 26px;
  border-radius: 16px;
  width: 500px;
  text-align: left;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.35);
}

.popup-content h2 {
  font-family: var(--font-secondary);
  font-size: 24px;
  font-weight: 600;
  color: var(--color2);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0;
  align-items: stretch;
  padding-bottom: 10px;
}

.input-group {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

label {
  width: 26%;
  font-size: 14px;
  color: var(--color7);
}

input {
  width: 100%;
  padding: 9px 10px;
  margin: 4px 0;
  border: 1px solid var(--color9);
  border-radius: 6px;
  font-family: var(--font-primary);
  font-size: 14px;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--color3);
  border-color: var(--color3);
}

.popup-content form button {
  @apply: none;
}

.popup-content form button,
.section7 form button {
  /* ensure all form buttons use primary style */
  border-radius: 999px;
  padding: 10px 22px;
  background-color: var(--color3);
  border: none;
  color: var(--color2);
  font-weight: 500;
  cursor: pointer;
  align-self: center;
  transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.popup-content form button:hover,
.section7 form button:hover {
  background-color: var(--color6);
  color: var(--color1);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Close button */
.close-button {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  background-color: var(--color7);
  color: var(--color1);
  text-decoration: none;
  border-radius: 999px;
  font-size: 13px;
}

#popup-form:target {
  display: flex;
}

@media (max-width: 768px) {
  .section-body-left .h {
    font-size: 32px;
  }

  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .popup-content {
    width: 90%;
    margin-top: 0;
  }

  .input-group {
    flex-direction: column;
    align-items: flex-start;
  }

  label {
    width: 100%;
  }
}
/*SECTION1*/

/*SECTION2*/
.section2{
  position: relative;
  min-height: 120vh;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  padding: 50px 80px;
  margin-bottom: 50px;
  background-color: var(--color11);
}

.section2 .section2-head{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.section2-head h3{
  font-family: var(--font-secondary), serif;
  font-size: 32px;
  line-height: 38px;
  font-weight: 300;
  color: var(--color6);
}

.section2-head strong{
  color: var(--color2);
  font-weight: 700;
}

.section2-head p{
  font-size: 16px;
  line-height: 27.2px;
  font-weight: 300;
  color: var(--color6);
}

.section2 .section2-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  padding: 0 60px;
  gap: 100px;
  /* background-color: var(--color3); */
  width: 100%;
}

.section2 .section2-body .section2-body-1{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 150px;
  width: 100%;
  align-items: center;
  align-content: center;
  justify-items: center;
  max-width: 1200px;
  position: relative;
  /* background-color: var(--color3); */
}

.section2-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: var(--color1);
  padding: 60px 20px 20px;
  width: 300px;
  box-shadow: 0 10px 10px -5px var(--color6);
}

.section2-card.center{
  position: relative;
  top: 30px;
}

.section2-card.center-{
  position: relative;
  top: -30px;
}

.icon-container {
  position: relative;
  align-items: center;
  width: 60px;
  height: 60px;
}

.section2-card .icon-container .item {
  position: absolute;
  align-content: center;
  width: 50px;
  height: 50px;
}

.section2-card .icon-container .item1{
  z-index: 1;
  color: var(--color2);
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.section2-card .icon-container .item2{
  z-index: 0;
  background-color: var(--color3);
  border-radius: 50%;
  top: 8%;
  left: 8%;
  width: 50px;
  height: 50px;
  position: absolute;
}

.section2-card h3 {
  font-family: var(--font-secondary);
  color: var(--color2);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.section2-card p {
  font-family: var(--font-primary);
  color: var(--color10);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.section2-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section2-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.18);
}

@media (max-width: 768px) {
  .section2 .section2-body .section2-body-1 {
    flex-direction: column;
    gap: 30px;
  }

  .section2-card.center,
  .section2-card.center- {
    top: 0;
    left: 0;
  }
}
/*SECTION2*/

/* SECTION3 */
.section3 {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
  padding: 60px 20px;
  margin-bottom: 50px;
  background-color: var(--color1);
}

.section3 > .container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.section3-images {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.section3-images img {
  width: 260px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.3);
}

.section3-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}

.section3-text h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  font-family: var(--font-secondary);
  color: var(--color6);
}

.section3-text p {
  font-family: var(--font-primary);
  color: var(--color6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.section3-text .open-button {
  display: inline-flex;
  margin: 0;
}

@media (max-width: 768px) {
  .section3 {
    padding: 50px 20px;
  }

  .section3 > .container {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .section3-images img {
    width: 180px;
  }
}

/* SECTION4 */
.section4 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 20px 70px;
  margin-bottom: 50px;
  background-color: var(--color11);
}

.section4 h3 {
  font-family: var(--font-secondary);
  color: var(--color6);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.section4-customers {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.section4-customers-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  padding: 28px 22px;
  background-color: var(--color1);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  max-width: 360px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section4-customers-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.section4-customers-card .info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.section4-customers-card .info img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.section4-customers-card .info .info-info h4 {
  font-family: var(--font-primary);
  color: var(--color6);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.section4-customers-card .info .info-info p {
  font-family: var(--font-primary);
  color: var(--color9);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.section4-customers-card > p {
  font-family: var(--font-primary);
  color: var(--color6);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section4-customers {
    flex-direction: column;
    gap: 18px;
  }
}

/* SECTION5 */
.section5 {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 20px 70px;
  margin-bottom: 0;
  background-color: var(--color1);
}

.section5-left {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  width: 70%;
}

.section5-left-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section5-left img {
  width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.28);
}

.section5-left-content h3 {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.3;
  font-family: var(--font-secondary);
  color: var(--color6);
}

.section5-left-content p,
.section5-left-content ul {
  font-family: var(--font-primary);
  color: var(--color6);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.section5-left-content ul {
  list-style-type: disc;
  padding-left: 18px;
}

.section5-right {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 360px;
}

.dropdown-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px;
}

.dropdown-title {
  cursor: pointer;
  font-family: var(--font-secondary);
  color: var(--color10);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  border: 1px solid var(--color9);
  padding: 10px 12px;
  border-radius: 12px;
  background-color: var(--color11);
}

.dropdown-title:hover {
  color: var(--color2);
}

.dropdown-content {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color12);
  background-color: var(--color1);
  margin-top: 10px;
  padding: 10px 12px 14px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .section5 {
    flex-direction: column;
    gap: 30px;
  }

  .section5-left {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
  }

  .section5-left img {
    width: 80%;
    max-width: 280px;
  }

  .section5-right {
    width: 100%;
  }

  .dropdown-container {
    width: 100%;
  }
}

/* SECTION6 */
.section6 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 20px 70px;
  margin-bottom: 50px;
  background-color: var(--color11);
}

.section6 h3 {
  font-family: var(--font-secondary);
  color: var(--color6);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.section6-customers {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.section6-customers-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 250px;
  margin: 0;
  padding: 70px 22px 20px;
  background-color: var(--color1);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section6-customers-card img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.section6-customers-card .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.section6-customers-card .info h4 {
  color: var(--color9);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

.section6-customers-card .info h5 {
  color: var(--color6);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}

.section6-customers-card .info p {
  color: var(--color6);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.section6-customers-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

@media (max-width: 768px) {
  .section6-customers {
    flex-direction: column;
    gap: 36px;
  }
}

/* SECTION7 */
.section7 {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  padding: 60px 20px 70px;
  margin-bottom: 50px;
  background-color: var(--color11);
}

form.about-form,
.about-left-name,
.input-group,
.input-group input {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.section7 form {
  display: flex;
  flex-direction: column;
  width: 70%;
  gap: 18px;
  align-items: stretch;
  padding-bottom: 10px;
}

.about-left-name {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-start;
  width: 100%;
}

.about-form input[type="text"],
.about-form input[type="email"],
.about-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color9);
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: 4px;
  font-size: 14px;
}

.about-form textarea {
  height: 150px;
  resize: vertical;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--color1);
  width: 30%;
  padding: 30px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.about-right h3 {
  font-family: var(--font-secondary);
  color: var(--color2);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.about-right-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-right-info h4 {
  font-family: var(--font-primary);
  color: var(--color2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.about-right-info p {
  font-family: var(--font-primary);
  color: var(--color6);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section7 {
    flex-direction: column;
    gap: 30px;
  }

  .section7 form {
    width: 100%;
  }

  .about-right {
    width: 100%;
  }

  .about-left-name {
    flex-direction: column;
  }
}

/* FOOTER */
footer {
  position: relative;
  background-image: url(/images/hero_bg_footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 20px;
  overflow: hidden;
  margin: 0;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
          to top,
          rgba(15, 23, 42, 0.9),
          rgba(15, 23, 42, 0.7)
  );
}

footer > * {
  position: relative;
}

.foot {
  display: flex;
  flex-direction: row;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(156, 163, 175, 0.6);
}

.foot1,
.foot2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 180px;
}

.foot1 h4,
.foot2 h4 {
  color: var(--color1);
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.foot1-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.foot1 p {
  color: var(--color1);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
}

.foot1-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.foot1-icons i {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color3);
  color: var(--color1);
  border-radius: 999px;
  height: 32px;
  width: 32px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.foot1-icons i:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.45);
  background-color: var(--color6);
}

.foot2 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}

.foot2 li {
  list-style-type: none;
}

.foot2 li a {
  color: var(--color13);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.foot2 li a:hover {
  color: var(--color1);
}

.end p {
  color: var(--color1);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

.end p i:hover {
  color: var(--color3);
}

.end p strong:hover {
  color: var(--color3);
}/*FOOTER*/