@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&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");

:root {
  --primary-color: #ff833e;
  --primary-color-dark: #db6f35;
  --blue-color: #3079ee;
  --text-dark: #333333;
  --text-light: #767268;
  --green-color: #38a169;
  --white: #ffffff;
  --light: #ffffff;
  --dark: #000;
  --max-width: 1200px;
  --header-font: "Bebas Neue", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #ffffff;
    line-height: 1.6;
    text-decoration: none; 
}
/*index 004D40*/
.header {
    background-color: #ffffff;
    padding: 0px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo a {
    font-size: 1.75rem;
    font-weight: 400;
    font-family: "Bebas Neue", sans-serif;
    color: #333333;
    text-decoration: none; 
    margin-left: 75px;
}
.nav__links {
    position: absolute;
    top: 64px;
    right: 0;
    width: 100%;
    padding: 5rem;
    list-style: none;
    display: flex;
    align-items: end;
    justify-content: center;
    flex-direction: column;
    margin-left: 35rem;
    gap: 2rem;
    background-color: #ffffff;
    transition: 0.5s;
    transform: translateY(-100%);
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 5px;
    }

    .nav__links {
        position: absolute;
        top: 64px;
        right: 0;
        width: 100%;
        padding: 5rem;
        list-style: none;
        display: flex;
        align-items: end;
        justify-content: center;
        flex-direction: column;
        margin-left: 1.8rem;
        gap: 12rem;
        background-color: #0000;
        transition: 0.5s;
        transform: translateY(-100%);
    }
    .nav__logo img {
        margin-left: -6.4rem;
    }
    .header {
      box-shadow: 0 0.5px 1px rgba(0, 0, 0, 0.1);
      padding: 1px 20px;
  }
}

@media screen and (max-width: 600px) {
    .nav__logo a {
        font-size: 2rem;
    }

    .nav__links {
        gap: 15px;
    }
}
.nav__links.open {
    transform: translateY(0);
}
.nav__links a {
    font-weight: 500;
    color: #38a169; 
    text-decoration: none; 
    border-bottom: 4px solid transparent;
    padding-block: 5px;
}
.nav__links a:hover {
    color: var(--blue-color);
}
.nav__links {
    position: static;
    padding: 0;
    flex-direction: row;
    background-color: transparent;
    transform: none;
}

.hamburger {
  display: none; /* Hidden on larger screens */
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: #606060;
  margin: 1.2rem 3rem;
}

/* Media query for small screens */
@media (max-width: 768px) {
  .hamburger {
      display: block; /* Show hamburger button on small screens */

  }

  @media (max-width: 768px) {
      .nav__links {
          display: none; /* Hide nav items initially */
          flex-direction: column; /* Stack vertically */
          width: 100%; /* Full width */
          position: absolute; /* Position absolute to overlap */
          top: 60px; /* Adjust based on your header height */
          left: 0; /* Align to the left */
          background-color: #ffffff; /* Background color */
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Shadow for dropdown */
          z-index: 999; /* Above other content */
          padding: 10px 0; /* Padding around dropdown */
      }
  
      .nav__links.active {
          display: flex; 
      }
  
      .nav-item {
          width: 100%; 
          padding: 10px 20px; 
      }
  
      .nav-link {
          color: #606060; 
          display: block;

          border-radius: 4px; 
          transition: background-color 0.3s; 
          margin-right: 10rem;
      }
  
      .nav-link:hover {
          background-color: #e6f0ff; 
          color: #3366cc; 
      }
  }
}


/*Slider*/
.container {
  width: 1400px;
  margin: 50px auto;

}
.toggle-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  background-color: #ddd;
  border-radius: 30px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  height: 40px;
  margin-bottom: 20px;
  margin-right: 80rem;
}
.toggle-button {
  position: absolute;
  background-color: #007BFF; 
  border-radius: 30px;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
  width: 50%; 
}
.toggle-container button {
  border: none;
  background: none;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  width: 50%; 
  cursor: pointer;
  z-index: 1;
}
.toggle-container button:focus {
  outline: none;
}
#foodButton {
  color: #555;
}
.toggle-container.active #animalButton {
  color: #555;
}
.toggle-container.active #foodButton {
  color: #fff;
}
.category {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
.active-category {
  display: block;
  animation: slide 0.4s ease;
}
@keyframes slide {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}
@media (max-width: 768px) { 

  .toggle-container {
    height: auto; 
    width: 80%; 
    margin: 1rem 2.5rem;
  }
  .container {
    width: 400px;
    margin: 1rem -3rem;
  }
  .toggle-container button {
      width: 100%; 
      padding: 10px 0; 
      text-align: center; 
  }
}

.main-content {
    margin-top: 60px;
    padding: 20px;
}
.content-section {
    max-width: 1350px;
    margin: 0 auto;
    margin-right: 5.5rem;
}
@media (max-width: 768px) {
  .main-content {
      flex-direction: column; 
      margin: 0; 
  }

  .content-section {
      margin-left: 0; 
      padding: 15px; 
      width: 100%; 
      box-sizing: border-box; 
      margin-top: 5rem;
  }
}
/*POSTS*/
.post-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px; 
  
}
.post-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  padding: 15px;
  width: 110%;
  
}

.post-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
}
.post-thumbnail img {
  display: block;
  width: 95%; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 8px;
  margin-bottom: 10px;    
  margin-left: 0.4rem;
}
.post-content {
  padding: 5px;
  text-align: left;
  font-size: 12px;
  
}
.post-title {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-top: 1px;
  display: block;
}
.post-metadata {
  font-size: 12px;
  color: #007BFF;
  margin-top: 1px;
}
.post-actions {
  text-align: right;
  margin-top: -1.7rem;
} 
.post-category:first-child {
  margin-left: 0; 
}
@media (max-width: 768px) {
  .post-grid {
      grid-template-columns: 1fr; 
      gap: 10px; 
  }
  .post-card {
    padding: 5px;
    width: 105%;
    
    
  }
  .post-thumbnail {
      height: 200px; 
  }

  .post-title {
      font-size: 1rem;
  }

  .post-metadata {
      font-size: 0.875rem; 
  }
}

.notification {
  position: fixed;
  top: 20px; 
  left: 50%; 
  transform: translateX(-50%); 
  background-color: #4CAF50;
  color: white;
  padding: 15px;
  border-radius: 5px;
  z-index: 1000;
  max-width: 90%; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  overflow-y: auto;
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.close:hover,
.close:focus {
  color: #333;
  text-decoration: none;
}

#modal-post-title {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

#modal-post-author,
#modal-post-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
}

#modal-post-content {
  margin-top: 20px;
  line-height: 1.6;
  color: #444;
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    padding: 20px;
  }
}
/*PAGINATION*/
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.pagination-btn {
    background-color: #f8f8f8;
    border: none;
    color: #606060;
    padding: 8px 16px;
    margin: 0 4px;
    cursor: pointer;
    border-radius: 2px;
    font-size: 14px;
    text-decoration: none;
}
.pagination-btn:hover {
    background-color: #e8e8e8;
}
.pagination-btn.active {
    background-color: #065fd4;
    color: #ffffff;
}


.main-con {
    margin-top: 90px;
    padding: 20px;
}

.content-sec {
    max-width: 1000px;
    margin: 0 auto;
    margin-right: 28rem;
}
.post-thumb {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}
.post-thumb img, .post-thumb video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*ABOUT SECTION*/

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  line-height: 25px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
}

.responsive-cell-block {
  min-height: 75px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bigContainer {
  padding-top: 0px;
  padding-right: 50px;
  padding-bottom: 0px;
  padding-left: 50px;
  margin-top: 50px;
  margin-right: 0px;
  margin-bottom: 50px;
  margin-left: 0px;
}

.responsive-container-block.Container {
  max-width: 1320px;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
}

.mainImg {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.blueDots {
  position: absolute;
  top: 150px;
  right: 15%;
  z-index: -1;
  left: auto;
  width: 80%;
  height: 500px;
  object-fit: cover;
}

.imgContainer {
  position: relative;
  width: 48%;
  margin-right: 10px;
}

.responsive-container-block.textSide {
  width: 48%;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  z-index: 100;
}

.text-blk.heading {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.text-blk.subHeading {
  font-size: 16px;
  line-height: 26px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.cardImg {
  width: 59px;
  height: 59px;
}

.cardImgContainer {
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(229, 229, 229);
  border-right-color: rgb(229, 229, 229);
  border-bottom-color: rgb(229, 229, 229);
  border-left-color: rgb(229, 229, 229);
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 0px;
}

.text-blk.cardHeading {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
}

.text-blk.cardSubHeading {
  color: rgb(153, 153, 153);
  line-height: 22px;
  font-size: 12px;
  font-weight: bold;
}

.explore {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: white;
  background-color: #F57C00;
  box-shadow: rgba(244, 152, 146, 0.25) 0px 10px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  cursor: pointer;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: initial;
  border-right-style: initial;
  border-bottom-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-bottom-color: initial;
  border-left-color: initial;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  padding-top: 12px;
  padding-right: 25px;
  padding-bottom: 12px;
  padding-left: 25px;
}

.explore:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: var(--primary-color-dark);
}

#ixvck {
  margin-top: 60px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.redDots {
  position: absolute;
  bottom: -350px;
  right: -100px;
  height: 500px;
  width: 400px;
  object-fit: cover;
  top: auto;
}

@media (max-width: 1024px) {
  .responsive-container-block.Container {
    position: relative;
    align-items: flex-start;
    justify-content: center;
  }

  .mainImg {
    bottom: 0px;
  }

  .imgContainer {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: auto;
    width: 60%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    width: 70%;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .imgContainer {
    position: relative;
    width: auto;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
    width: 100%;
  }

  .responsive-container-block.Container {
    flex-direction: row-reverse;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .responsive-container-block.textSide {
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .text-blk.subHeading {
    text-align: center;
    font-size: 17px;
    max-width: 520px;
  }

  .text-blk.heading {
    text-align: center;
  }

  .imgContainer {
    opacity: 0.8;
  }

  .imgContainer {
    height: 500px;
  }

  .imgContainer {
    width: 30px;
  }

  .responsive-container-block.Container {
    flex-direction: column-reverse;
  }

  .responsive-container-block.Container {
    flex-wrap: nowrap;
  }

  .responsive-container-block.textSide {
    width: 100%;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 20px;
    margin-left: 0px;
  }

  .imgContainer {
    width: 90%;
  }

  .imgContainer {
    height: 450px;
    margin-top: 5px;
    margin-right: 33.9062px;
    margin-bottom: 0px;
    margin-left: 33.9062px;
  }

  .redDots {
    display: none;
  }

  .explore {
    font-size: 16px;
    line-height: 14px;
  }
}

@media (max-width: 500px) {
  .imgContainer {
    position: static;
    height: 450px;
  }

  .mainImg {
    height: 100%;
  }

  .blueDots {
    width: 100%;
    left: 0px;
    top: 0px;
    bottom: auto;
    right: auto;
  }

  .imgContainer {
    width: 100%;
  }

  .responsive-container-block.textSide {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .responsive-container-block.Container {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    overflow-x: visible;
    overflow-y: visible;
  }

  .responsive-container-block.bigContainer {
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding: 0 30px 0 30px;
  }

  .redDots {
    display: none;
  }

  .text-blk.subHeading {
    font-size: 16px;
    line-height: 23px;
  }

  .text-blk.heading {
    font-size: 28px;
    line-height: 28px;
  }
.responsive-container-block.textSide {
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }

.imgContainer {
    margin-top: 5px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 100%;
    position: relative;
  }

.explore {
    padding-top: 17px;
    padding-right: 0px;
    padding-bottom: 17px;
    padding-left: 0px;
    width: 100%;
  }

#ixvck {
    width: 90%;
    margin-top: 40px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    font-size: 15px;
  }

.blueDots {
    bottom: 0px;
    width: 100%;
    height: 80%;
    top: 10%;
  }

.text-blk.cardHeading {
    font-size: 16px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 8px;
    margin-left: 0px;
    line-height: 25px;
  }
.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12 {
    padding-top: 10px;
    padding-right: 0px;
    padding-bottom: 10px;
    padding-left: 0px;
  }
}


  body {
    margin: 0;
  }
  
  .wk-desk-1 {
    width: 8.333333%;
  }
  
  .wk-desk-2 {
    width: 16.666667%;
  }
  
  .wk-desk-3 {
    width: 25%;
  }
  
  .wk-desk-4 {
    width: 33.333333%;
  }
  
  .wk-desk-5 {
    width: 41.666667%;
  }
  
  .wk-desk-6 {
    width: 50%;
  }
  
  .wk-desk-7 {
    width: 58.333333%;
  }
  
  .wk-desk-8 {
    width: 66.666667%;
  }
  
  .wk-desk-9 {
    width: 75%;
  }
  
  .wk-desk-10 {
    width: 83.333333%;
  }
  
  .wk-desk-11 {
    width: 91.666667%;
  }
  
  .wk-desk-12 {
    width: 100%;
  }
  
  @media (max-width: 1024px) {
    .wk-ipadp-1 {
      width: 8.333333%;
    }
  
    .wk-ipadp-2 {
      width: 16.666667%;
    }
  
    .wk-ipadp-3 {
      width: 25%;
    }
  
    .wk-ipadp-4 {
      width: 33.333333%;
    }
  
    .wk-ipadp-5 {
      width: 41.666667%;
    }
  
    .wk-ipadp-6 {
      width: 50%;
    }
  
    .wk-ipadp-7 {
      width: 58.333333%;
    }
  
    .wk-ipadp-8 {
      width: 66.666667%;
    }
  
    .wk-ipadp-9 {
      width: 75%;
    }
  
    .wk-ipadp-10 {
      width: 83.333333%;
    }
  
    .wk-ipadp-11 {
      width: 91.666667%;
    }
  
    .wk-ipadp-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .wk-tab-1 {
      width: 8.333333%;
    }
  
    .wk-tab-2 {
      width: 16.666667%;
    }
  
    .wk-tab-3 {
      width: 25%;
    }
  
    .wk-tab-4 {
      width: 33.333333%;
    }
  
    .wk-tab-5 {
      width: 41.666667%;
    }
  
    .wk-tab-6 {
      width: 50%;
    }
  
    .wk-tab-7 {
      width: 58.333333%;
    }
  
    .wk-tab-8 {
      width: 66.666667%;
    }
  
    .wk-tab-9 {
      width: 75%;
    }
  
    .wk-tab-10 {
      width: 83.333333%;
    }
  
    .wk-tab-11 {
      width: 91.666667%;
    }
  
    .wk-tab-12 {
      width: 100%;
    }
  }
  
  @media (max-width: 500px) {
    .wk-mobile-1 {
      width: 8.333333%;
    }
  
    .wk-mobile-2 {
      width: 16.666667%;
    }
  
    .wk-mobile-3 {
      width: 25%;
    }
  
    .wk-mobile-4 {
      width: 33.333333%;
    }
  
    .wk-mobile-5 {
      width: 41.666667%;
    }
  
    .wk-mobile-6 {
      width: 50%;
    }
  
    .wk-mobile-7 {
      width: 58.333333%;
    }
  
    .wk-mobile-8 {
      width: 66.666667%;
    }
  
    .wk-mobile-9 {
      width: 75%;
    }
  
    .wk-mobile-10 {
      width: 83.333333%;
    }
  
    .wk-mobile-11 {
      width: 91.666667%;
    }
  
    .wk-mobile-12 {
      width: 100%;
    }
  }

  h3 {
    font-family: "Noto Serif Display", serif;
    font-size: 2rem;
    font-weight: 300;

  }
  a {
    text-decoration: none;
    color: var(--dark);
  }

  ul {
    list-style-type: none;
    padding: 0;
  }
  button {
    appearance: none;
    border: 0;
    background: transparent;
  }
  .c-link {
    color: initial; 

  }
  
  .c-link:hover {
    color: blue; /* Change color on hover */
    text-decoration: underline
  }
  .flex {
    display: flex;
  }
  .footer_video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    border: none;
  }
  .footer_inner {
    background: var(--light);
    backdrop-filter: blur(50px);
    border: 0.1px solid rgba(233, 232, 232, 0.208);
    border-radius: 5px;
    padding: 2rem;
    margin: 1rem 0;
  }
  .footer {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 70vh;
    background-color: #007BFF;
  }
  .container2 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, 400px);
    border-bottom: 1px solid var(--dark);
  }
  
  input {
    padding: 0.75rem 0;
    border: none;
    background: none;
    font-weight: 500;
    transition: border 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    border-radius: 0;
    width: 100%;
    font-size: 1.05rem;
  }
  input:focus {
    outline: none;
  }
  @media (min-width: 675px) {
    .layout {
      display: flex;
      flex-wrap: nowrap;
      column-gap: 2rem;
    }
    .w-50 {
      width: 50%;
    }
    .w-25 {
      width: 25%;
    }
  }
  form {
    position: relative;
  }
  svg {
    margin: 0.5rem;
  }
  .c-2 {
    margin-top: 3.5rem;
  }
  .footer_copyright {
    color: var(--light);
  }



.hover-underline {
    color: blue; 
    text-decoration: none; 
    position: relative; 
}

.hover-underline::after {
    content: ''; 
    position: absolute;
    width: 100%; 
    height: 2px; 
    background-color: blue; 
    bottom: 0; 
    left: 0; 
    transform: scaleX(0); 
    transition: transform 0.3s ease; 
}

.hover-underline:hover::after {
    transform: scaleX(1); 
}

.hover-underline:hover {
    color: darkblue;
}


.social-icons {
  display: flex; 
}

.social-icons a {
  margin-right: 15px; 
  font-size: 24px; 
  transition: color 0.3s; 
}

.social-icons a:hover {
  color: #ffcc00; 
}

.footer-section h3 {
  font-size: 25px;
  margin: 0 5rem;
}

.footer-section{
  margin: 0 -2rem;  
}

@media (max-width: 480px) {
  .footer-section{
    margin: 0 0rem;  

  }
  .logos img {
    margin: 0 -0.90rem;
  }
}