/* ===============================
   Premium Egg Room Breadcrumb
================================ */

.egg_breadcrumb {
    position: relative;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    animation: bgZoom 12s ease-in-out infinite alternate;
}


/* Dark Premium Overlay */

.egg_breadcrumb::before {
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(13,79,90,.92),
        rgba(0,0,0,.55),
        rgba(255, 176, 5, 0.969)
    );

    z-index:1;
}


/* Yellow Light Effect */

.egg_breadcrumb::after {
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#FFB617;
    border-radius:50%;
    right:-120px;
    bottom:-150px;
    opacity:.25;
    filter:blur(70px);
}



/* Content Box */

.breadcrumb_content {

    position:relative;
    z-index:2;

    text-align:center;

    padding:40px 70px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);

    border:1px solid rgba(255,255,255,.2);

    border-radius:25px;

    animation:contentShow 1.2s ease;

}


/* Small Text */

.breadcrumb_content p {

    color:#FFFFFF;

    font-size:17px;

    font-weight:500;

    letter-spacing:2px;

    margin-bottom:15px;

}


.breadcrumb_content p a {

    color:#FFB617;

    text-decoration:none;

}



.breadcrumb_content span {

    margin:0 12px;

    color:#FFFFFF;

}



/* Main Heading */

.breadcrumb_content h2 {

    color:#FFFFFF;

    font-size:60px;

    font-weight:800;

    letter-spacing:1px;

    margin:0;

    font-family:"Plus Jakarta Sans",sans-serif;

    text-transform:capitalize;

    text-shadow:
    0 5px 20px rgba(0,0,0,.4);

}



/* Hover Effect */

.egg_breadcrumb:hover .breadcrumb_content{

    transform:translateY(-8px);

    transition:.5s;

}



/* Background Animation */

@keyframes bgZoom {

    from{
        background-size:100%;
    }

    to{
        background-size:115%;
    }

}


/* Content Animation */

@keyframes contentShow {


    from{

        opacity:0;

        transform:translateY(50px);

        filter:blur(15px);

    }


    to{

        opacity:1;

        transform:translateY(0);

        filter:blur(0);

    }

}



/* Responsive */

@media(max-width:768px){

    .egg_breadcrumb{

        height:320px;

    }


    .breadcrumb_content{

        padding:25px 30px;

    }


    .breadcrumb_content h2{

        font-size:38px;

    }


    .breadcrumb_content p{

        font-size:14px;

    }

}
/* =========================
   About Section
========================= */

.about_section{
    padding:100px 0;
    background:#FFFFFF;
    overflow:hidden;
}


.about_wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}


/* Text */

.about_content{
    width:55%;
    animation:slideLeft 1s ease;
}


.about_content span{
    display:inline-block;
    color:#FFB617;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:15px;
}


.about_content h2{
    color:#0D4F5A;
    font-size:45px;
    line-height:1.2;
    font-weight:800;
    font-family:"Plus Jakarta Sans",sans-serif;
    margin-bottom:25px;
}


.about_content p{
    color:#555;
    font-size:17px;
    line-height:1.8;
    margin-bottom:15px;
}
/* About Text Blur Reveal Effect */

.about_content span,
.about_content h2,
.about_content p {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(30px);
    animation: textReveal 1s ease forwards;
}


/* Delay each text */

.about_content span{
    animation-delay:0.2s;
}

.about_content h2{
    animation-delay:0.4s;
}

.about_content p:nth-of-type(1){
    animation-delay:0.6s;
}

.about_content p:nth-of-type(2){
    animation-delay:0.8s;
}

.about_content p:nth-of-type(3){
    animation-delay:1s;
}

.about_content p:nth-of-type(4){
    animation-delay:1.2s;
}

.about_content p:nth-of-type(5){
    animation-delay:1.4s;
}

.about_content p:nth-of-type(6){
    animation-delay:1.6s;
}
.about_content p:nth-of-type(7){
    animation-delay:1.6s;
}



/* Animation */

@keyframes textReveal {

    0%{
        opacity:0;
        filter:blur(15px);
        transform:translateY(30px);
    }

    60%{
        opacity:0.8;
        filter:blur(3px);
    }

    100%{
        opacity:1;
        filter:blur(0);
        transform:translateY(0);
    }

}

/* Image */
/* About Image Premium Effect */

.about_image{
    width:40%;
    position:relative;
    opacity:0;
    transform:translateX(60px) scale(.95);
    animation:imageReveal 1.3s ease forwards;
    animation-delay:.5s;
}


.image_box{
    position:relative;
    z-index:2;
    overflow:hidden;
    border-radius:35px;
}


.image_box img{
    width:100%;
    display:block;
    border-radius:35px;
    transition:0.6s ease;
    filter:brightness(.95);
}


/* Hover Image */

.image_box:hover img{
    transform:scale(1.08);
    filter:brightness(1.05);
}



/* Floating Effect */

.image_box{
    animation:floatImage 4s ease-in-out infinite;
}



/* Yellow Glow Behind Image */

.shape{
    position:absolute;
    width:300px;
    height:300px;
    background:#FFB617;
    border-radius:50%;
    right:-80px;
    bottom:-80px;
    z-index:1;
    opacity:.8;
    filter:blur(5px);
    animation:glowMove 4s infinite alternate;
}



/* Image Reveal */

@keyframes imageReveal{

    from{
        opacity:0;
        transform:translateX(60px) scale(.9);
        filter:blur(15px);
    }

    to{
        opacity:1;
        transform:translateX(0) scale(1);
        filter:blur(0);
    }

}


/* Floating Animation */

@keyframes floatImage{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

}


/* Background Glow Animation */

@keyframes glowMove{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.15);
    }

}



/* Background Shape */

.shape{
    position:absolute;
    width:280px;
    height:280px;
    background:#FFB617;
    border-radius:50%;
    right:-70px;
    bottom:-70px;
    z-index:1;
    opacity:.8;
}



/* Animation */

@keyframes slideLeft{
    from{
        opacity:0;
        transform:translateX(-50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}


@keyframes slideRight{
    from{
        opacity:0;
        transform:translateX(50px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}



/* Responsive */

@media(max-width:991px){

.about_wrapper{
    flex-direction:column;
}

.about_content,
.about_image{
    width:100%;
}

.about_content h2{
    font-size:35px;
}

.about_image{
    margin-top:30px;
}

}

/* 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);

}


/* REVIEW BUTTONS */

.review_buttons{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:40px;
}


.review_buttons button{

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#0D4F5A;

    color:#ffffff;

    font-size:25px;
    font-weight:200;

    display:flex;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    

    transition:all .3s ease;

}


.review_buttons button:hover{

    background:#FFB617;

    transform:translateY(-6px);

    box-shadow:0 10px 20px rgba(0,0,0,.2);

}

/* ================================== */
         /* ====fanchise==== */
/* ================================== */
.contact-wrapper{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:80px;
}

.contact-card{
    width:350px;
    background:#fff;
    border-radius:25px;
    padding:90px 25px 30px;
    position:relative;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    border-top:5px solid #FFB617;
}

.contact-card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 50px rgba(255,182,23,.25);
}

.branch-img{
    position:absolute;
    top:-60px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:120px;
    border-radius:50%;
    padding:5px;
    background:linear-gradient(135deg,#FFB617,#0D4F5A);
    box-shadow:0 10px 30px rgba(255,182,23,.4);
}

.branch-img img{
    width:100%;
    height:100%;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #fff;
    transition:.5s;
}

.contact-card:hover .branch-img img{
    transform:scale(1.1);
}


.contact-card h3{
    color:#0D4F5A;
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.contact-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.contact-card a{
    display:block;
    text-decoration:none;
    color:#0D4F5A;
    margin:10px 0;
    font-weight:600;
    transition:.3s;
}

.contact-card a i{
    color:#FFB617;
    margin-right:8px;
}

.contact-card a:hover{
    color:#FFB617;
}

.branch-img{
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%,100%{
        transform:translateX(-50%) translateY(0);
    }
    50%{
        transform:translateX(-50%) translateY(-10px);
    }
}
/* ============================= */
/* Franchise Main WhatsApp Button */
/* ============================= */

.franchise-whatsapp{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:25px;

    background:#0D4F5A;
    color:#fff !important;

    padding:14px 35px;

    border-radius:50px;

    font-size:16px;
    font-weight:700;

    text-decoration:none;

    box-shadow: #FFB617;

    transition:.4s;

}


.franchise-whatsapp i{

    font-size:22px;
}


.franchise-whatsapp:hover{

    background:#FFB617;

    transform:translateY(-5px);

    box-shadow: #FFB617;

}
/* =============================== */
/* Location Icon Center Fix */
/* =============================== */

.icon-box{
    width:65px;
    height:65px;

    margin:10px auto 20px;

    background:#FFB617;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;

    position:relative;
    z-index:5;

    transition:.3s;
}


.icon-box a{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#0D4F5A;   /* icon visible before hover */
}


.icon-box i{
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}


.icon-box:hover{
    background:#0D4F5A;
    transform:scale(1.1);
}


.icon-box:hover a{
    color:#FFB617;   /* icon color after hover */
}

/* =============================== */
/* Location Icon Final Fix */
/* =============================== */

.icon-box{
    width:65px;
    height:65px;
    margin:10px auto 20px;

    background:#FFB617;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
    z-index:10;

    transition:.3s;
}


.icon-box a{
    display:flex !important;

    width:65px;
    height:65px;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#0D4F5A !important;
}


.icon-box a i{
    font-size:24px;
    color:#0D4F5A;

    display:flex;
    align-items:center;
    justify-content:center;

    line-height:1;
}



.icon-box{
    width:70px;
    height:70px;
    margin:0 auto 25px;

    background:#FFB617;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;
}

.icon-box a{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
}

.icon-box i{
    font-size:28px;
    color:#0D4F5A;

    line-height:0;
    margin:0;
    padding:0;

    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.icon-box:hover{
    background:#0D4F5A;
}

.icon-box:hover i{
    color:#FFB617;
}
/* ==================== */
/* MENU */
/* ==================== */
.three-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 25px 15px;
}

/* =========================
   BOX
========================= */
.box {
    width: 30%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 12px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    /* Animation */
    opacity: 0;
    transform: translateY(30px);

    animation: boxAppear 0.8s ease forwards;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

/* Different animation delay for each box */
.box:nth-child(1) {
    animation-delay: 0.1s;
}

.box:nth-child(2) {
    animation-delay: 0.25s;
}

.box:nth-child(3) {
    animation-delay: 0.4s;
}

/* Box Hover */
.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


/* =========================
   IMAGE
========================= */
.box img {
    width: 100%;
    height: 150px;

    object-fit: contain;
    display: block;
    margin: 0 auto;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

/* Image Hover */
.box:hover img {
    transform: scale(1.06);
}


/* =========================
   TEXT
========================= */
.box h3 {
    margin: 10px 5px;
    font-size: 16px;
    font-weight: 500;
    color: #333;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

/* Text Hover */
.box:hover h3 {
    color: #0F5B6A;
    transform: translateY(-2px);
}


/* =========================
   BUTTON
========================= */
.box-btn {
    display: inline-block;

    padding: 7px 20px;

    background: #0F5B6A;
    color: #fff;

    text-decoration: none;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Button Hover */
.box-btn:hover {
    background: #F3920F;
    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(243, 146, 15, 0.3);
}

/* Section Heading */
.section_tittle {
    width: 100%;
    margin-bottom: 20px;
}

.section_tittle p {
    margin-bottom: 5px;
}

.section_tittle h2 {
    margin-bottom: 0;
}


/* Three Boxes */
.three-boxes {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 15px 25px;
}


/* Box */
.box {
    width: 30%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding: 12px;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(30px);

    animation: boxAppear 0.8s ease forwards;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


/* Animation Delay */
.box:nth-child(1) {
    animation-delay: 0.1s;
}

.box:nth-child(2) {
    animation-delay: 0.25s;
}

.box:nth-child(3) {
    animation-delay: 0.4s;
}


/* Box Hover */
.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}


/* Image */
.box img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    display: block;
    margin: 0 auto;

    transition: transform 0.5s ease;
}


/* Image Hover */
.box:hover img {
    transform: scale(1.06);
}


/* Title */
.box h3 {
    margin: 10px 5px;
    font-size: 16px;
    font-weight: 500;
    color: #333;

    transition: 0.3s ease;
}

.box:hover h3 {
    color: #0F5B6A;
}


/* Button */
.box-btn {
    display: inline-block;
    padding: 7px 20px;

    background: #0F5B6A;
    color: #fff;

    text-decoration: none;
    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.box-btn:hover {
    background: #F3920F;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 146, 15, 0.3);
}
/* =========================
   SECTION TITLE ANIMATION
========================= */

.section_tittle {
    position: relative;
    text-align: center;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(25px);
    animation: titleFadeUp 0.9s ease forwards;
}


/* Small Text */
.section_tittle p {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #F3920F;
    letter-spacing: 1px;

    opacity: 0;
    transform: translateY(15px);

    animation: smallText 0.7s ease forwards;
    animation-delay: 0.2s;
}


/* Main Heading */
.section_tittle h2 {
    position: relative;
    display: inline-block;

    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #0F5B6A;

    opacity: 0;
    transform: translateY(15px);

    animation: headingFade 0.8s ease forwards;
    animation-delay: 0.4s;
}


/* Animated Underline */
.section_tittle h2::after {
    content: "";
    position: absolute;

    left: 50%;
    bottom: -10px;

    width: 0;
    height: 3px;

    background: #F3920F;
    border-radius: 5px;

    transform: translateX(-50%);

    animation: underline 0.8s ease forwards;
    animation-delay: 0.9s;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes titleFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes smallText {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes headingFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes underline {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}


/* =========================
   HOVER EFFECT
========================= */

.section_tittle h2 {
    transition: color 0.3s ease;
}

.section_tittle h2:hover {
    color: #F3920F;
}


/* Mobile */
@media (max-width: 600px) {

    .section_tittle h2 {
        font-size: 25px;
    }

    .section_tittle p {
        font-size: 14px;
    }

}

/* Box Animation */
@keyframes boxAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Tablet */
@media (max-width: 992px) {

    .three-boxes {
        gap: 15px;
    }

    .box {
        width: 32%;
    }

    .box img {
        height: 130px;
    }
}


/* Mobile */
@media (max-width: 600px) {

    .three-boxes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .box {
        width: 90%;
        max-width: 350px;
    }

    .box img {
        height: 150px;
    }
}
/* =========================
   BOX APPEAR ANIMATION
========================= */
@keyframes boxAppear {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================
   TABLET
========================= */
@media (max-width: 992px) {

    .three-boxes {
        gap: 15px;
    }

    .box {
        width: 32%;
    }

    .box img {
        height: 130px;
    }

}


/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .three-boxes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .box {
        width: 90%;
        max-width: 350px;
    }

    .box img {
        height: 150px;
    }

}
/* ==================== */
/* MOBILE RESPONSIVE */
/* ==================== */

@media (max-width: 991px){

    .menu-section{
        padding:70px 0;
    }

    .menu-grid{
        width:95%;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .menu-item{
        height:350px;
        border-radius:20px;
    }

    .menu-popup img{
        width:90%;
        height:auto;
        max-height:80vh;
    }

    .menu-nav-btn{
        width:45px;
        height:45px;
        font-size:28px;
    }

    .menu-prev{
        left:15px;
    }

    .menu-next{
        right:15px;
    }

    .menu-close{
        top:15px;
        right:20px;
        font-size:38px;
    }
}

@media (max-width: 576px){

    .menu-section{
        padding:50px 0;
    }

    .menu-grid{
        width:92%;
        grid-template-columns:1fr;
        gap:18px;
    }

    .menu-item{
        height:280px;
        border-radius:18px;
    }

    .menu-popup img{
        width:95%;
        max-height:75vh;
    }

    .menu-nav-btn{
        width:40px;
        height:40px;
        font-size:24px;
    }

    .menu-prev{
        left:10px;
    }

    .menu-next{
        right:10px;
    }

    .menu-close{
        top:10px;
        right:15px;
        font-size:32px;
    }
}
/* gallery */
.gallery-section{
    padding:100px 5%;
    background:#fff;
}

.gallery-container{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:25px;
}

/* Big Image */

.gallery-main{
    height:550px;
    overflow:hidden;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.gallery-main img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    cursor:pointer;
    transition:.6s;
}

.gallery-main:hover img{
    transform:scale(1.08);
}

/* Grid */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
}

.gallery-grid img{
    width:100%;
    height:170px;
    object-fit:cover;
    object-position:center;
    display:block;
    border-radius:20px;
    cursor:pointer;
    transition:.5s;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-grid img:hover{
    transform:scale(1.1);
    box-shadow:0 20px 40px rgba(0,0,0,.25);
}

/* Animation */

.gallery-item{
    opacity:0;
    transform:translateY(60px);
    animation:menuShow .8s ease forwards;
}

.gallery-item:nth-child(1){animation-delay:.1s;}
.gallery-item:nth-child(2){animation-delay:.2s;}
.gallery-item:nth-child(3){animation-delay:.3s;}
.gallery-item:nth-child(4){animation-delay:.4s;}
.gallery-item:nth-child(5){animation-delay:.5s;}
.gallery-item:nth-child(6){animation-delay:.6s;}
.gallery-item:nth-child(7){animation-delay:.7s;}
.gallery-item:nth-child(8){animation-delay:.8s;}
.gallery-item:nth-child(9){animation-delay:.9s;}

@keyframes menuShow{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Popup */

.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.image-popup.active{
    display:flex;
}

.image-popup img{
    max-width:90%;
    max-height:85%;
    border-radius:20px;
}

.image-popup span{
    position:absolute;
    top:25px;
    right:40px;
    font-size:55px;
    color:#fff;
    cursor:pointer;
}

.image-popup span:hover{
    color:#FFB617;
}

/* Mobile */

@media(max-width:900px){

    .gallery-container{
        grid-template-columns:1fr;
    }

    .gallery-main{
        height:350px;
    }

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-grid img{
        height:150px;
    }

}

/* ================= IMAGE SHINE EFFECT ================= */

.gallery-item{
    position:relative;
    overflow:hidden;
}


/* Shine Light */

.gallery-item::after{
    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.6),
        transparent
    );

    transform:skewX(-25deg);

    transition:.7s;

    z-index:3;
}


/* Hover Shine */

.gallery-item:hover::after{

    left:130%;

}


/* =================== */
      /*Contect  */
/* =================== */
.whatsapp-form{

    min-height:700px;

    padding:100px 5%;

    background:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
    overflow:hidden;

}

/* Egg Background Container */

.egg-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}



/* All Eggs */

.egg-bg span{

    position:absolute;

    width:70px;
    height:100px;

    background:linear-gradient(
        145deg,
        #FFB617,
        #8a5b00
    );

    border-radius:50% 50% 45% 45%;

    opacity:.22;

    box-shadow:
    0 15px 30px rgba(13,79,90,.25);

    animation:eggFloat 7s infinite ease-in-out;

}



/* Egg Positions */

.egg-bg span:nth-child(1){

    left:5%;
    top:20%;
    animation-delay:0s;

}


.egg-bg span:nth-child(2){

    left:18%;
    bottom:15%;
    width:90px;
    height:125px;
    animation-delay:2s;

}


.egg-bg span:nth-child(3){

    right:15%;
    top:12%;
    width:80px;
    height:115px;
    background:linear-gradient(
        145deg,
        #0D4F5A,
        #062f36
    );

    animation-delay:1s;

}


.egg-bg span:nth-child(4){

    right:5%;
    bottom:25%;
    width:110px;
    height:150px;
    animation-delay:3s;

}


.egg-bg span:nth-child(5){

    left:45%;
    top:5%;
    width:60px;
    height:90px;
    background:linear-gradient(
        145deg,
        #FFB617,
        #b87800
    );

    animation-delay:4s;

}


.egg-bg span:nth-child(6){

    left:55%;
    bottom:8%;
    width:85px;
    height:120px;

    background:linear-gradient(
        145deg,
        #0D4F5A,
        #062f36
    );

    animation-delay:5s;

}

/* Extra Egg 7 */

.egg-bg span:nth-child(7){

    right:35%;
    top:35%;

    width:65px;
    height:95px;

    background:linear-gradient(
        145deg,
        #FFB617,
        #8a5b00
    );

    animation-delay:2s;

}


/* Extra Egg 8 */

.egg-bg span:nth-child(8){

    left:30%;
    top:55%;

    width:100px;
    height:140px;

    background:linear-gradient(
        145deg,
        #0D4F5A,
        #062f36
    );

    animation-delay:4s;

}



/* Extra Egg 9 */

.egg-bg span:nth-child(9){

    right:22%;
    bottom:50%;

    width:55px;
    height:80px;

    background:linear-gradient(
        145deg,
        #FFB617,
        #b87800
    );

    animation-delay:1.5s;

}



/* Extra Egg 10 */

.egg-bg span:nth-child(10){

    left:12%;
    top:45%;

    width:75px;
    height:110px;

    background:linear-gradient(
        145deg,
        #0D4F5A,
        #062f36
    );

    animation-delay:3.5s;

}


/* Floating Animation */

@keyframes eggFloat{

    0%,100%{

        transform:translateY(0) rotate(0deg);

    }


    50%{

        transform:translateY(-40px) rotate(15deg);

    }

}

/* Glow Effect */
.form-container{

    width:650px;
    max-width:100%;

    padding:45px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(15px);

    border-radius:35px;

    box-shadow:
    0 25px 70px rgba(13,79,90,.25);

    position:relative;

    z-index:5;

    animation:formPop 1s ease;

}

/* Form Entry Animation */

@keyframes formPop{

    from{

        opacity:0;
        transform:translateY(80px) scale(.8);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}


.form-title{
    text-align:center;
    position:relative;
    z-index:2;
}


.form-title span{
    color:#FFB617;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}


.form-title h2{
    font-size:38px;
    color:#0D4F5A;
    margin:10px 0;
}


.form-title p{
    color:#777;
    margin-bottom:35px;
}



.input-box{
    position:relative;
    margin-bottom:20px;
    z-index:2;
}


.input-box input,
.input-box textarea{

    width:100%;
    padding:16px 20px;
    border-radius:15px;
    border:2px solid #eee;
    outline:none;
    font-size:15px;
    transition:.4s;
    background:#fff;

}


.input-box textarea{

    height:140px;
    resize:none;

}



.input-box input:focus,
.input-box textarea:focus{

    border-color:#FFB617;
    box-shadow:0 0 15px rgba(255,182,23,.25);

}



button{

    width:100%;
    padding:17px;
    border:none;
    border-radius:50px;
    background:#0D4F5A;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    transition:.4s;
    z-index:2;

}



button i{

    margin-left:10px;
    transition:.4s;

}



button:hover{

    background:#FFB617;
    color:#0D4F5A;
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(0,0,0,.2);

}



button:hover i{

    margin-left:20px;

}




@media(max-width:700px){

.form-container{

    padding:25px;

}


.form-title h2{

    font-size:28px;

}

}

/* ==========================================
   WHOLE PAGE LOAD ANIMATION
========================================== */

body.page-load{
    overflow-x:hidden;
}

/* Header */
.main_menu{
    opacity:0;
    animation:slideDown 0.8s ease forwards;
}

/* Breadcrumb */
.egg_breadcrumb{
    opacity:0;
    animation:zoomIn 1s ease forwards;
    animation-delay:.2s;
}

/* Section Title */
.contact-title{
    opacity:0;
    transform:translateY(50px);
    animation:fadeUp 0.8s ease forwards;
    animation-delay:.5s;
}

/* Cards */
.contact-card{
    opacity:0;
    transform:translateY(80px);
    animation:cardUp .8s ease forwards;
}

.contact-card:nth-child(1){
    animation-delay:.8s;
}

.contact-card:nth-child(2){
    animation-delay:1.1s;
}

.contact-card:nth-child(3){
    animation-delay:1.4s;
}

/* Images */
.branch-img img{
    transition:.5s;
}

.branch-img:hover img{
    transform:scale(1.08);
}

/* Location Icon */
.icon-box{
    opacity:0;
    animation:popIn .8s ease forwards;
    animation-delay:1.6s;
}

/* Footer */
.egg-footer{
    opacity:0;
    transform:translateY(60px);
    animation:fadeUp .8s ease forwards;
    animation-delay:1.8s;
}

.footer_end{
    opacity:0;
    animation:fadeIn 1s ease forwards;
    animation-delay:2s;
}

/* Buttons */
.franchise-whatsapp{
    transition:.4s;
}

.franchise-whatsapp:hover{
    transform:translateY(-5px);
}

/* ==========================================
   KEYFRAMES
========================================== */

@keyframes slideDown{
    from{
        opacity:0;
        transform:translateY(-100px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(1.15);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes cardUp{
    from{
        opacity:0;
        transform:translateY(80px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes popIn{
    0%{
        opacity:0;
        transform:scale(.3);
    }
    80%{
        transform:scale(1.1);
    }
    100%{
        opacity:1;
        transform:scale(1);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

