/* ==========================
   EGG ROOM NAVBAR
========================== */

.main_menu {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(13, 79, 90, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

/* Logo */
.navbar-brand img {
    width: 90px;
    height: auto;
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.navbar-nav .nav-link {
    color: #0D4F5A !important;
    font-size: 16px;
    font-weight: 600;
    margin: 0 12px;
    position: relative;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hover Effect */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFB617 !important;
}

/* Animated Underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #FFB617;
    left: 0;
    bottom: -8px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.navbar-toggler {
    border: 2px solid #0D4F5A;
    padding: 5px 10px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Mobile Menu Background */
@media(max-width:991px){

#navbarSupportedContent{
    display:none;
    width:100%;
    background:#fff;
    padding:20px;
}

}

/* ==========================
   EGG ROOM banner
========================== */

.banner_part {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #0D4F5A 0%,
        #14626f 60%,
        #0D4F5A 100%
    );
}

.banner_part::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 182, 23, 0.15);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.banner_part::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 182, 23, 0.12);
    border-radius: 50%;
    bottom: -120px;
    right: -120px;
}

.banner_text h5 {
    color: #FFB617;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.banner_text h1 {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
}

.banner_text p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;
}
.banner_text h1 {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    
    opacity: 0;
    transform: translateX(-40px);
    animation: slideText 1s ease forwards;

    text-shadow: 0 8px 25px rgba(0,0,0,0.25);
}


.banner_text p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    line-height: 1.8;

    opacity: 0;
    transform: translateX(-30px);
    animation: slideText 1s ease forwards;
    animation-delay: .4s;
}


/* Smooth Premium Animation */

@keyframes slideText {

    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* Small Highlight Effect */

.banner_text h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #FFB617;
    margin-top: 18px;
    border-radius: 10px;

    animation: lineShow 1s ease forwards;
    animation-delay: 1s;
    transform: scaleX(0);
    transform-origin: left;
}


@keyframes lineShow {

    to {
        transform: scaleX(1);
    }

}

.banner_img img {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: floatEgg 4s ease-in-out infinite;
}

@keyframes floatEgg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ==========================
   EGG ROOM About
========================== */

.about_part {
    padding: 120px 0;
    background: #ffffff;
}

.about_tag {
    display: inline-block;
    color: #FFB617;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about_text h2 {
    color: #0D4F5A;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about_text p {
    color: #666;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about_btn {
    display: inline-block;
    background: #0D4F5A;
    color: #FFFFFF;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about_img img {
    width: 100%;
    border-radius: 25px;
}

@media (max-width: 991px) {
    .about_part {
        text-align: center;
        padding: 80px 0;
    }

    .about_img {
        margin-bottom: 40px;
    }

    .about_text h2 {
        font-size: 38px;
    }
}

/* Image Animation */
.about_img {
    overflow: hidden;
    border-radius: 25px;
}

.about_img img {
    width: 100%;
    border-radius: 25px;
    transition: 0.6s ease;
    animation: aboutImage 1s ease forwards;
}

/* Image Hover */
.about_img:hover img {
    transform: scale(1.08) rotate(1deg);
}


/* Image Entry Animation */
@keyframes aboutImage {

    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Text Animation */
.about_text {
    animation: aboutText 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}


@keyframes aboutText {

    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Heading Hover Effect */
.about_text h2 {
    transition: 0.3s ease;
}

.about_text h2:hover {
    color: #FFB617;
}


/* Tag Animation */
.about_tag {
    animation: tagMove 1s ease;
}


@keyframes tagMove {

    from {
        opacity: 0;
        letter-spacing: 8px;
    }

    to {
        opacity: 1;
        letter-spacing: 2px;
    }
}


/* Button Hover */
.about_btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}


.about_btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    background: #FFB617;
    left: 0;
    top: 0;
    transition: 0.4s;
    z-index: -1;
}


.about_btn:hover::before {
    width: 100%;
}


.about_btn:hover {
    color: #0D4F5A;
}
/* ==========================
   PREMIUM FOOD SLIDER
========================== */


.food_menu{

    padding:90px 0;
    background:#ffffff;
    overflow:hidden;

}


/* Heading */

.section_tittle p{

    color:#c08b2c;
    font-size:18px;
    letter-spacing:2px;
    font-weight:600;

}


.section_tittle h2{

    font-size:45px;
    color:#222;
    font-weight:700;
    margin-bottom:50px;

}



/* Slider */

.food_slider{

    overflow:hidden;
    width:100%;

}


.food_track{

    display:flex;
    gap:30px;
    width:max-content;

    animation:moveFood 35s linear infinite;

}


.food_slider:hover .food_track{

    animation-play-state:paused;

}



/* Card */

.food_card{

    width:320px;
    height:430px;

    border-radius:35px;

    overflow:hidden;

    position:relative;

    flex-shrink:0;

    cursor:pointer;

    transition:.6s;

}



/* Image */

.food_card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;

}



/* Overlay */

.food_overlay{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    padding:30px;

    color:white;

    background:
    linear-gradient(
    transparent,
    rgba(0,0,0,.8)
    );

    transform:translateY(100px);

    transition:.5s;

}



.food_overlay h3{

    font-size:25px;
    margin:0;

}



/* Hover */

.food_card:hover{

    transform:
    translateY(-20px)
    scale(1.05);

    box-shadow:
    0 30px 60px rgba(0,0,0,.25);

}



.food_card:hover img{

    transform:scale(1.15);

}



.food_card:hover .food_overlay{

    transform:translateY(0);

}



/* Animation */

@keyframes moveFood{

    from{

        transform:translateX(0);

    }


    to{

        transform:translateX(-50%);

    }

}



/* Responsive */

@media(max-width:768px){

.food_card{

    width:240px;
    height:330px;

}


.section_tittle h2{

    font-size:32px;

}

}
/* Menu Button */

.menu_btn {

    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:25px;

    padding:14px 35px;

    background:#0D4F5A;
    color:white;

    font-size:16px;
    font-weight:600;

    border-radius:50px;

    text-decoration:none;

    transition:.4s ease;

}


.menu_btn i {

    transition:.4s ease;

}


/* Hover Effect */

.menu_btn:hover {

    background:#FFB617;

    color:white;

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}


.menu_btn:hover i {

    transform:translateX(8px);

}

/* Gallery Section */

.gallery_section{
    padding:90px 8%;
    background:#fff8ed;
}


.gallery_title{
    text-align:center;
    margin-bottom:50px;
}


.gallery_title p{
    color:#d39a32;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
}


.gallery_title h2{
    font-size:44px;
    font-weight:700;
    color:#222;
    font-family:"Plus Jakarta Sans",sans-serif;
}



/* Main Layout */

.gallery_wrapper{

    display:grid;
    grid-template-columns:1fr 1.15fr;
    gap:30px;
}



/* Left Big Image */

.gallery_main{

    height:460px;
    border-radius:30px;
    overflow:hidden;
    position:relative;
    box-shadow:
    0 20px 50px rgba(0,0,0,.18);

}


.gallery_main::after{

    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,.35)
    );

}


.gallery_main img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.8s ease;

}


.gallery_main:hover img{

    transform:scale(1.12);

}



/* Right Gallery */

.gallery_side{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;

}



.gallery_box{

    height:200px;
    overflow:hidden;
    border-radius:22px;
    position:relative;

    box-shadow:
    0 12px 30px rgba(0,0,0,.12);

    transition:.4s;

}



.gallery_box img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;

}



/* Hover Effect */

.gallery_box:hover{

    transform:translateY(-8px);
    box-shadow:
    0 20px 40px rgba(0,0,0,.22);

}


.gallery_box:hover img{

    transform:scale(1.18);

}



/* Shine Effect */

.gallery_box::before,
.gallery_main::before{

    content:"";
    position:absolute;
    width:80px;
    height:150%;
    background:rgba(255,255,255,.35);
    top:-30%;
    left:-120px;
    transform:rotate(25deg);
    transition:.7s;
    z-index:2;

}


.gallery_box:hover::before,
.gallery_main:hover::before{

    left:130%;

}



/* Button */

.gallery_btn{

    text-align:center;
    margin-top:50px;

}


.gallery_btn a{

    background:#0D4F5A;
    color:white;
    padding:16px 45px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    display:inline-block;
    box-shadow:0 12px 25px rgba(44, 34, 15, 0.35);
    transition:.4s;

}


.gallery_btn a:hover{

    background:#FFB617;
    transform:translateY(-6px);

}



/* Mobile */

@media(max-width:992px){

.gallery_wrapper{

    grid-template-columns:1fr;

}


.gallery_main{

    height:400px;

}

}



@media(max-width:600px){

.gallery_side{

    grid-template-columns:repeat(2,1fr);

}


.gallery_box{

    height:150px;

}


.gallery_title h2{

    font-size:32px;

}

}

/* Review Section */
.review_section{
    padding:100px 8%;
    background:#fff8ed;
    overflow:hidden;
}


.review_container{
    max-width:1200px;
    margin:auto;
}


.review_slider{
    position:relative;
}


.review_card{

    display:none;

    align-items:center;
    justify-content:center;

    gap:70px;

    background:#ffffff;

    padding:50px;

    border-radius:35px;

    box-shadow:0 20px 60px rgba(0,0,0,.12);

    animation:slide .7s ease;
}


.review_card.active{
    display:flex;
}



/* TEXT */

.review_content{

    width:55%;
    text-align:center;

}


.quote{

    font-size:80px;
    line-height:50px;

    color:#d89b32;

    font-family:serif;

}


.stars{

    color:#e5a100;

    font-size:25px;

    letter-spacing:5px;

    margin:20px 0;

}



.review_content p{

    font-size:18px;

    line-height:1.8;

    color:#555;

}



.review_content h3{

    margin-top:25px;

    font-size:25px;

    color:#252525;

}



.review_content span{

    color:#d89b32;

    font-weight:600;

}



/* IMAGE */


.review_image{

    width:320px;

    height:320px;

    position:relative;

}


.review_image::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background:#0D4F5A;

    border-radius:50%;

    top:20px;

    right:-20px;

    z-index:0;

}



.review_image img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:50%;

    position:relative;

    z-index:1;

    border:10px solid white;

    box-shadow:0 15px 40px rgba(0,0,0,.2);

}



/* BUTTON */


.review_buttons{

    text-align:center;

    margin-top:40px;

}


.review_buttons button{

    width:50px;

    height:50px;

    border:none;

    border-radius:50%;

    background:#0D4F5A;

    color:white;

    font-size:22px;

    margin:0 10px;

    cursor:pointer;

    transition:.3s;

}



.review_buttons button:hover{

    background:#FFB617;

    transform:translateY(-5px);

}



/* Animation */

@keyframes slide{

from{

opacity:0;

transform:translateX(80px);

}

to{

opacity:1;

transform:translateX(0);

}

}



/* Mobile */

@media(max-width:768px){

.review_card{

flex-direction:column-reverse;

padding:35px;

}


.review_content{

width:100%;

}


.review_image{

width:220px;

height:220px;

}

}



/* Contact Area */

.contact-area{
    position:relative;
    padding:100px 0;
    background:#ffffff;
    overflow:hidden;
}


.egg-side-img{
    position:absolute;
    bottom:-120px;
    left:-180px;
    width:900px;
    opacity:.10;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.15));
    animation:eggMove 6s ease-in-out infinite;
}


@keyframes eggMove{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-20px);
    }

}


/* Title */

.contact-title{
    text-align:center;
    margin-bottom:60px;
}


.contact-title p{
    color:#e8a400;
    font-size:22px;
    font-weight:700;
    letter-spacing:1px;
}


.contact-title h2{
    font-size:42px;
    font-weight:800;
    color:#222;
    margin-top:8px;
}


.contact-title span{
    display:block;
    width:80px;
    height:4px;
    background:#e8a400;
    margin:20px auto;
    border-radius:10px;
}




/* Cards */

.contact-wrapper{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}


.contact-card{

    background:white;
    padding:40px 30px;
    text-align:center;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    transition:.5s;
    border:1px solid rgba(232,164,0,.15);

}



.contact-card:hover{

    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);

}




.icon-box{

    width:75px;
    height:75px;
    background:#ffca28;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:30px;
    transition:.4s;

}


.contact-card:hover .icon-box{

    transform:rotateY(360deg);

}



.contact-card h3{

    margin:25px 0 15px;
    font-size:24px;
    font-weight:800;
    color:#222;

}



.contact-card p{

    color:#666;
    line-height:1.8;
    min-height:95px;

}




.contact-card a{

    display:block;
    color:#444;
    text-decoration:none;
    margin-top:12px;
    font-weight:600;
    transition:.3s;

}


.contact-card a i{

    color:#e8a400;
    margin-right:10px;

}


.contact-card a:hover{

    color:#e8a400;
    transform:translateX(5px);

}





/* Responsive */

@media(max-width:991px){

.contact-wrapper{

grid-template-columns:1fr;

}


.contact-title h2{

font-size:32px;

}


.egg-side-img{

display:none;

}

}

.egg-footer{

    background:#0D4F5A;
    padding:80px 10%;
    color:#FFFFFF;

}


.footer-main{

    display:grid;

    grid-template-columns:
    1fr 1fr 1fr;

    align-items:center;

    gap:50px;

}


/* Title */

.footer-title h2{

    color:#FFB617;

    font-size:38px;

    line-height:1.2;

    font-weight:800;

}



/* Links */

.footer-links{
    border-left:2px solid #FFB617;
    padding-left:40px;
}


.footer-links h4{
    color:#FFB617;
    margin-bottom:30px;
}


.footer-links ul{
    list-style:none;
    padding:0;
}


.footer-links li{
    font-size:20px;
    margin:15px 0;
}


.footer-links li a{
    color:#FFFFFF;
    text-decoration:none;
    transition:0.3s ease;
    display:inline-block;
    position:relative;
}


/* Hover Effect */
.footer-links li a:hover{
    color:#FFB617;
    transform:translateX(8px);
}


/* Underline Animation */
.footer-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#FFB617;
    transition:0.3s ease;
}


.footer-links li a:hover::after{
    width:100%;
}



/* Social */

.footer-social{

    display:flex;

    gap:20px;

    margin-top:25px;

}


.footer-social a{

    width:55px;
    height:55px;

    background:#FFB617;

    color:#FFFFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    font-size:22px;

    transition:.4s;

}


.footer-social a:hover{

    background:#FFFFFF;

    color:#0D4F5A;

    transform:translateY(-8px);

}



/* Right Food Image */

.footer-food-img{

    text-align:right;

}


.footer-food-img img{

    width:280px;

    height:280px;

    object-fit:cover;

    border-radius:50%;

    border:8px solid #FFB617;

    animation:floatFood 4s infinite ease-in-out;

}



@keyframes floatFood{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-15px);

    }

}

/* Footer Bottom */

.footer_end{

    background:#0D4F5A;

    padding:25px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid rgba(255,255,255,0.2);

    font-size:15px;

}


/* Left & Right Text */

.footer_end_left,
.footer_end_right{

    color:#FFFFFF;

    font-size:15px;

    letter-spacing:.3px;

    animation:footerFade .8s ease;

}


/* Links */

.footer_end a{

    color:#FFB617;

    text-decoration:none;

    font-size:16px;

    font-weight:700;

    margin-left:5px;

    transition:.3s ease;

}


/* Hover Effect */

.footer_end a:hover{

    color:#FFFFFF;

    letter-spacing:1px;

}


/* Animation */

.footer_end_left,
.footer_end_right{

    animation:footerFade .8s ease;

}


@keyframes footerFade{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}



/* Mobile Responsive */

@media(max-width:768px){

    .footer_end{

        flex-direction:column;

        gap:15px;

        text-align:center;

        padding:20px;

    }


    .footer_end_left,
    .footer_end_right{

        font-size:14px;

    }


    .footer_end a{

        font-size:15px;

    }

}

/* ==========================================
   COMPLETE MOBILE RESPONSIVE FIX
========================================== */

html,body{
    overflow-x:hidden;
    width:100%;
}

*{
    max-width:100%;
}

img{
    display:block;
    max-width:100%;
    height:auto;
}


/* ==========================================
   NAVBAR MOBILE FIX
========================================== */

@media(max-width:991px){

.navbar{
    position:relative;
    z-index:9999;
}

.navbar-toggler{
    display:block;
    border:0;
    outline:none;
}

.navbar-collapse{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    padding:20px;
    border-radius:0 0 20px 20px;
    z-index:99999;
}


.navbar-nav{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}


.nav-link{
    width:100%;
    text-align:center;
    padding:12px;
}


}


/* ==========================================
   HERO MOBILE FIX
========================================== */

@media(max-width:768px){

.hero-section,
.banner-section{
    height:auto;
    padding:60px 15px;
}

.hero-section img,
.banner-section img{
    width:100%;
    height:auto;
    object-fit:contain;
}

}


/* ==========================================
   ALL SECTION MOBILE FIX
========================================== */

@media(max-width:768px){

.container{
    width:100%;
    padding-left:15px;
    padding-right:15px;
}


.row{
    margin-left:0;
    margin-right:0;
}


[class*="col-"]{
    padding-left:15px;
    padding-right:15px;
}


}


/* ==========================================
   FOOTER IMAGE FIX
========================================== */

.footer img,
.footer-logo img,
footer img{

    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    width:180px !important;
    height:auto !important;

    object-fit:contain;

    margin:0 auto 20px;

}


@media(max-width:576px){

.footer{
    text-align:center;
    padding:40px 15px;
}


.footer img{
    width:150px !important;
}


.footer_end{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:15px;
}


}


/* ==============================
 FOOTER IMAGE MOBILE FIX
============================== */


.footer-food-img{

    display:flex;

    justify-content:center;

    align-items:center;

}


.footer-food-img img{

    display:block !important;

    visibility:visible !important;

    opacity:1 !important;

    width:300px;

    height:auto;

}



@media(max-width:768px){


.egg-footer{

    overflow:hidden;

}


.footer-main{

    display:flex;

    flex-direction:column;

    text-align:center;

}


.footer-food-img{

    order:3;

    margin-top:30px;

}


.footer-food-img img{

    width:220px;

}



}

/* ===========================
   MOBILE MENU COMPLETE FIX
=========================== */

@media(max-width:991px){

.main_menu{
    position:relative;
    z-index:99999;
}


.navbar{
    display:flex;
    justify-content:space-between;
}


.navbar-toggler{

    display:block !important;

    width:45px;
    height:40px;

    border:none;
    background:#0D4F5A;

    border-radius:8px;

}


.navbar-toggler i{

    color:#fff;
    font-size:22px;

}


.navbar-collapse{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#ffffff;

    padding:20px;

    z-index:99999;

}


.navbar-collapse.show{

    display:block !important;

}


.navbar-nav{

    text-align:center;

}


.nav-item{

    margin:10px 0;

}


.nav-link{

    color:#0D4F5A !important;

    font-size:18px;

}


}

/* ============================
   PAGE LOAD ANIMATIONS
============================ */

/* Header */
.main_menu{
    animation: slideDown 0.8s ease forwards;
}

/* Breadcrumb */
.egg_breadcrumb{
    animation: zoomFade 1s ease forwards;
}

/* Title */
.contact-title{
    opacity:0;
    animation: fadeUp 1s ease forwards;
    animation-delay:0.3s;
}

/* Cards */
.contact-card{
    opacity:0;
    transform:translateY(80px);
    animation: fadeUp 0.8s ease forwards;
}

.contact-card:nth-child(1){
    animation-delay:0.5s;
}

.contact-card:nth-child(2){
    animation-delay:0.8s;
}

.contact-card:nth-child(3){
    animation-delay:1.1s;
}

/* Footer */
.egg-footer{
    opacity:0;
    animation: fadeUp 1s ease forwards;
    animation-delay:1.3s;
}

/* Animations */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-100px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomFade{
    from{
        opacity:0;
        transform:scale(1.1);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}