    :root {
      --color: #e5e7f3;
      --theme: #5f1519;
      --f1: 'Poppins', sans-serif;
      --f2: 'Montserrat', sans-serif;
      --light: #2c2d39;
      --ctr: center;
    }

   

    footer {
      background-color: var(--theme);
      color: white;
      padding: 3rem 3rem 1.5rem;
      font-size: 18px;
      margin-top: 70px;
    }

    footer li {
      list-style-type: none;
      margin: 10px 0;
    }

    footer a {
      text-decoration: none;
      color: #fff;
    }

    footer a:hover {
      text-decoration: underline;
    }

    footer .socials i {
      font-size: 32px;
      margin: 5px;
    }

    footer i {
      margin-right: 10px;
    }

    footer .sect-1 {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 40px;
      width: 80%;
    }

    footer .f1 img {
      width: 145px;
      margin-right: 10px;
      height: 65px;
      object-fit: cover;
    }

    footer .f1 h2 {
      display: inline-block;
      font-size: 36px;
      vertical-align: middle;
      font-weight: 700;
    }

    footer .f1 p {
      margin-top: 25px;
      font-size: 19px;
      line-height: 1.6em;
      color: #fff;
    }

    footer .footer-section h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    footer .l {
      width: 90vw;
      height: 2px;
      background-color: #fff;
      margin: 30px auto;
    }

    footer .f-h {
      text-align: center;
      transform: translateY(-43px);
      background-color: var(--theme);
      width: 220px;
      margin: 0 auto;
    }

    .contact-details p {
      margin: 10px 0;
      font-size: 18px;
    }

    .socials {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 5px;
      margin-top: 15px;
    }

    .footer-bottom {
      text-align: left;
      margin-top: 25px;
      font-size: 17px;
    }

    /* Responsive Layout */
    @media screen and (max-width: 1000px) {
      footer {
        padding: 3rem 2rem;
      }

      footer .sect-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      footer .f1 {
        max-width: 100%;
      }

      footer .footer-section ul {
        padding: 0;
      }

      .footer-section {
        text-align: center;
      }

      .footer-section h3 {
        text-align: center;
      }

      .footer-section .socials {
        justify-content: center;
      }

      .footer-bottom {
        text-align: center;
      }

      .contact-details {
        text-align: center;
      }
    }

    @media screen and (max-width: 600px) {
      footer {
        font-size: 16px;
        padding: 2.5rem 1.5rem;
      }

      footer .f1 h2 {
        font-size: 28px;
      }

      .socials i {
        font-size: 28px;
      }


      footer .f-h {
        width: 180px;
      }
    }
    
   