 
  .flex-center {    display: flex;    align-items: center;    justify-content: center;}
  /*a,
  a:visited,
  a:hover,
  a:active {    color: inherit;    text-decoration: none;  }
  */.outer-menu {    position: absolute;    top: 3vh;    left: 14%;    z-index: 9;    width: 130px;    line-height: 40px;    border: #000 1px solid;    font-size: 18px;    border-radius: 45px;    padding: 0 0 0 15px;}
  .outer-menu .checkbox-toggle {   position: absolute;    top: 0;    right: 0;    z-index: 2;    cursor: pointer;    width: 60px;    height: 60px;    opacity: 0;    left: auto;}
  .outer-menu .checkbox-toggle:checked + .hamburger > div {
    transform: rotate(135deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:before,
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    top: 0;
    transform: rotate(90deg);
  }
  .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
    opacity: 0;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu {
    pointer-events: auto;
    visibility: visible;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div {
    transform: scale(1);
    transition-duration: 0.75s;
  }
  .outer-menu .checkbox-toggle:checked ~ .menu > div > div {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
  }
  .outer-menu .checkbox-toggle:hover + .hamburger {
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.0);
  }
  .outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
    transform: rotate(225deg);
  }
  .outer-menu .hamburger {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    z-index: 1;
    width: 60px;
    height: 40px;
    padding: 0.5em 1em;
    /* background: rgba(33, 150, 243, 0.75); */
    border-radius: 0 0.12em 0.12em 0;
    cursor: pointer;
    transition: box-shadow 0.4sease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex
  ;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .hamburger > div {
    position: relative;
    flex: none;
    width: 100%;
    height: 2px;
    background: #000;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .hamburger > div:before,
  .outer-menu .hamburger > div:after { content: ''; position: absolute;  z-index: 1; top: -8px; left: 0;  width: 100%; height: 2px; background: inherit; transition: all 0.4sease;  }
  .outer-menu .hamburger > div:after {    top: 8px;  }
  .outer-menu .menu {    position: fixed;    top: 0;    left: 0;    width: 100%;    height: 100%;    pointer-events: none;    visibility: hidden;    overflow: hidden;    -webkit-backface-visibility: hidden;            backface-visibility: hidden;
    outline: 1px solid transparent;   display: flex;    align-items: center;    justify-content: center;}
  .outer-menu .menu > div {    width: 200vw;    height: 200vw;    color: #FEFEFE;    background: rgb(255 255 255 / 97%);    border-radius: 50%;    transition:all 0.4s ease;    flex: none;    transform: scale(0);    -webkit-backface-visibility: hidden;            backface-visibility: hidden;    overflow: hidden;    display: flex;    align-items: center;    justify-content: center;}
  .outer-menu .menu > div > div {
    text-align: center;
    max-width: 90vw;
    max-height: 100vh;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .outer-menu .menu > div > div > ul {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    display: block;
    max-height: 100vh;
  }
  .outer-menu .menu > div > div > ul > li {
    padding: 0;
    margin: 1em;
    font-size: 24px;
    display: block;
  }
  .outer-menu .menu > div > div > ul > li > a {
    position: relative;
    display: inline;
    cursor: pointer;
    transition: color 0.4s ease;
    color:#000
  }
  .outer-menu .menu > div > div > ul > li > a:hover {
    color: #e5e5e5;
  }
  .outer-menu .menu > div > div > ul > li > a:hover:after {
    width: 100%;
  }
  .outer-menu .menu > div > div > ul > li > a:after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    background: #e5e5e5;
    transition: width 0.4s ease;
  }
/* General Styling */
#projects {
  width: 100%;
  float: left;
  padding: 20px;
}

.project-wrapper {
  width: 100%;
  max-width: 1710px;
  margin: 40px auto;
  text-align: center;
}

/* Tabs Styling */
.tabs {
  display: flex;
  /* justify-content: center; */
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #b59875;
  padding-bottom: 12px;
  flex-wrap: wrap;
}

.tab {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin: 0 !important;
  padding: 12px 15px;
  transition: all 0.3sease-in-out;
  color: #333;
  position: relative;
}

.tab:hover {
  color: black;
}

.tab.active {
  color: #b59875;
  /* font-weight: bold; */
}

.tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 3px;
  background: #b59875;
}

/* Responsive Grid for Project Cards */
.project-list {
  display: block;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-content: center;
      margin-top: 2%;

      width: 100%;
    float: left;
}

.project-card {
  position: relative;
 /* overflow: hidden;
  /* border-radius: 8px; */
  transition: transform 0.3s ease-in-out;
  width: 20%;
    float: left;
    margin: 2.5%;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-card img {
  width: 100%;
  /*height: 378px;*/
  object-fit: cover;
  /* border-radius: 8px; */
}

/* Overlay for Image Text */
.overlayy {
  position: relative;
  bottom: 0;
  width: 100%;
 /* background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0) 100%);*/
  color: white;
  padding: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 1%;
}

.overlayy h3 {
  font-size: 24px; font-family: "Raleway", sans-serif;
   color:#282828;
  margin: 0;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
 /* width: 60%;
 */ font-weight: 600;
}

.overlayy p {
  font-size: 16px;
  color: #777777 !important;
  margin: 4px 0px;
}

.overlayy p span{text-align: right;float: right;}

/* Hidden Class */
.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .tabs {
      justify-content: center;
      gap: 10px;
  }

  .tab {
      font-size: 14px;
      padding: 10px;
  }

  .project-list {
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 768px) {
  .tabs {
      flex-wrap: wrap;
      justify-content: center;
      gap: 5px;
  }

  .tab {
      font-size: 14px;
      padding: 8px 12px;
  }

  .project-list {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .overlayy {
      padding: 10px;
  }

  .overlayy h3 {
      font-size: 14px;
  }

  .overlayy p {
      font-size: 10px;
  }
  .mobile{
    display: none !important;
  }
  .project-card{width: 100%;}
}

@media (max-width: 480px) {
  .tabs {    flex-direction: row;    align-items: center;}
  .project-list {      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));}
  .overlayy {      padding: 8px;}
  /*.tab {    font-size: 11px;    padding: 8px 12px;}*/
      .tab {
           font-size: 16px;
        padding: 8px 5px;
      }
  .overlayy h3 {      font-size: 18px; margin: 0 0 10px 0 !important;}
  .overlayy p {      font-size: 14px;  }
  .mobile{  display: none !important; }
  .project-card{width: 100%; margin: 0 0 50px 0 !important;}
}
.divider {  display: flex;  align-items: center;  gap: 0.5rem;  margin: 0rem 0;}
.divider span {  flex: 1;  height: 2px;  background: #0a2240;}
.section-3-div-right-1 button:hover, button:focus, .button:hover, .button:focus {  background: none !important;}




