body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

.container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.arrow {
    font-size: 2rem;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    background-color: #00DF93;
    border-radius: 50%;
    z-index: 1;
}

.arrow:hover {
    background-color: #B830FC;
}

.tiles-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.tiles {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.tile {
    min-width: calc(33.33% - 20px);
    height: 200px;
    background-color: white;
    /* background-color: #FFC000; */
    border-radius: 10px;
    box-shadow: 0 4px 8px #00DF93;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    text-decoration: none;
    color: black;
    transition: transform 0.2s;
    flex-shrink: 0;
}

.tile:hover {
    transform: scale(1.03);
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); */
    box-shadow: 0 6px 12px #B830FC;
}

.tile h2 {
    margin: 0;
    font-size: 1.5rem;
}

.tile p {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #666;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-container .logo-img {
    width: 400px;
    height: 200px;
    object-fit: contain;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    margin-left: 15px;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* 
---------------------------------------------
Try it out
--------------------------------------------- 
*/

.try-it-out a {
  display: inline-block;
  background-color: #B830FC;
  box-shadow: 0 4px 8px #00DF93;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
  text-decoration: none;
  position: absolute;
  top: 20px;
  left: 20px;
}

.try-it-out a:hover {
  background-color: #00DF93;
  box-shadow: 0 6px 12px #B830FC;
}

/* 
---------------------------------------------
founder's corner
--------------------------------------------- 
*/
.founder-corner a {
  display: inline-block;
  background-color: #fff;
  box-shadow: 0 4px 8px #00DF93;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  padding: 12px 25px;
  border-radius: 23px;
  letter-spacing: 0.25px;
  transition: all .3s;
  text-decoration: none;
  position: absolute;
  top: 20px;
  right: 20px;
}

.founder-corner a:hover {
  background-color: #fff;
  box-shadow: 0 6px 12px #B830FC;
}

.founder-corner a img {
  width: 25px;
  height: 25px;
  object-fit: contain;
  border-radius: 50%;
}

/* 
---------------------------------------------
Footer
--------------------------------------------- 
*/

/* Container for icons */
.social-icons-wrapper {
  text-align: center; /* center the ul inside */
}

/* Social icons list */
.social-icons {
  margin-top: 10px;
  padding: 0;
  list-style: none;
  display: inline-block; /* make the list behave like text */
}

/* List items inside the ul */
.social-icons li {
  display: inline-block;
  margin: 0 2px;
}

/* Optional: style anchor/icon wrappers */
.social-icons li a {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}



footer .copyright p {
  text-align: center;
  border-top: 1px solid #eee;
  color: #afafaf;
  margin-top: 10px;
  padding: 20px 0px;
  font-weight: 300;
}

footer .copyright p a {
  color: #afafaf;
  text-decoration: none;
}

footer .copyright p a:hover {
   color: #B830FC;
}

/* 
---------------------------------------------
SVG images
--------------------------------------------- 
*/

.i-github {
  -webkit-mask: url("../imgs/github.svg") no-repeat center;
  mask: url("../imgs/github.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #afafaf;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: sub;
}

.i-github:hover {
  background-color: #B830FC;
}

.i-linkedin {
  -webkit-mask: url("../imgs/linkedin.svg") no-repeat center;
  mask: url("../imgs/linkedin.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #afafaf;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: sub;
}

.i-linkedin:hover {
  background-color: #B830FC;
}

.i-whatsapp {
  -webkit-mask: url("../imgs/whatsapp.svg") no-repeat center;
  mask: url("../imgs/whatsapp.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #afafaf;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: sub;
}

.i-whatsapp:hover {
  background-color: #B830FC;
}

.i-medium {
  -webkit-mask: url("../imgs/medium.svg") no-repeat center;
  mask: url("../imgs/medium.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #afafaf;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: sub;
}

.i-medium:hover {
  background-color: #B830FC;
}

.i-mail {
  -webkit-mask: url("../imgs/mail.svg") no-repeat center;
  mask: url("../imgs/mail.svg") no-repeat center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: #afafaf;
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: sub;
}

.i-mail:hover {
  background-color: #B830FC;
}



/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/
@media (max-width: 768px) {
    .tile {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .tile {
        min-width: calc(100% - 20px);
    }
}