#main{
    display: flex;
    justify-content: space-evenly;
}
#left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    height: 100vh;
    position: sticky;
    top: 0;
}
h1{
    font-size: 3vw;
    font-weight: 800;
    padding: 2vw;
    border-radius: 10px;
    letter-spacing: 1px;
    font-weight: 900;
}
#right {
    padding: 5vw 3vw;
    display: flex;
    row-gap: 3rem;
    column-gap: 5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 60%;
    height: 100%;
    position: relative;
}
#right .limg, #right .rimg{
    padding-top: 1vw;
    width: 250px;
    border-radius: 10px;
    height: 350px;
    background-color: #0039c836;
    box-sizing: 5px 5px 10px 10px #00071a;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    flex-direction: column;
    animation: fadeUp both;
}
#right .rimg{
    margin-top: 10vw;
}
#right .limg img, #right .rimg img{
    width: 95%;
    height: 240px;
    border-radius: 10px;
    margin-bottom: 1rem;
    animation: imageReveal both;
    animation-timeline: view();
}
#right .limg h3, #right .rimg h3{
    font-size: 1.9vw;
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}
#right .limg p, #right .rimg p{
    font-size: 1.3vw;
    font-weight: 500;

}

@keyframes fadeOut {
    from{
        opacity: 0;
    } to{
        opacity: 1;
    }
}
@keyframes imageReveal {
    from{
        filter: saturate(0) contrast(4) brightness(0.1) blur(5px);
        opacity: 0;
        scale: 0.95;
        transform: 0 4rem;
    } to{
        filter: none;
        opacity: 1;
        scale: 1;
        translate: 0 0;
    }
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.5);
    }
    to{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
}

/* Footer Start */
/* footer start */
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 80px;
  /* color: #fff; */
  border-top: 1px solid #c5b9b9;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
}

.footer-logo {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}

.footer-logo span img {
  height: 50px;
}

.footer-logo span {
  color: #00071a;
  margin-right: 8px;
}

.footer-desc {
  margin: 20px 0;
  font-size: 15px;
  max-width: 280px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 1px;
  color: #00071a;
}

.footer-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-icons i {
  font-size: 1.5rem;
  cursor: pointer;
  color: #00071a;
}

.footer-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-links a {
  text-decoration: none;
  text-transform: capitalize;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.footer-contact i {
  font-size: 1.5rem;
  color: #00071a;
}
.footer-contact li a {
  color: #00071a;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #00071a;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  margin-top: 3px;
  filter: brightness(0) invert(1);
}

.footer-contact address {
  font-style: normal;
  line-height: 1.4;
}
/* Footer Ends here */

/* Creating Animation */
@media (max-width: 768px) {
    #main {
        flex-direction: column;
        align-items: center;
    }

    #left {
        width: 100%;
        height: auto;
        position: relative;
        text-align: center;
        padding: 4vw;
    }

    h1 {
        font-size: 7vw;
    }

    #right {
        width: 100%;
        padding: 5vw 4vw;
        row-gap: 2rem;
        column-gap: 2rem;
    }

    #right .limg,
    #right .rimg {
        width: 90%;
        height: 50%;
    }

    #right .limg img,
    #right .rimg img {
        width: 100%;
        height: auto;
    }

    #right .limg h3,
    #right .rimg h3 {
        font-size: 5vw;
    }

    #right .limg p,
    #right .rimg p {
        font-size: 4vw;
    }
}

@media (max-width: 480px) {
    #right {
        padding: 5vw 2vw;
    }

    #right .limg,
    #right .rimg {
        width: 90%;
    }

    h1 {
        font-size: 8vw;
    }

    #right .limg h3,
    #right .rimg h3 {
        font-size: 6vw;
        margin-top: -1rem;
    }

    #right .limg p,
    #right .rimg p {
        font-size: 4.5vw;
    }

    .footer {
        padding: 30px 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-column {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .footer-icons {
        justify-content: center;
    }
}
