/* ======================= CDN links ========================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* common style */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body,html{
    overflow-x: hidden;
    font-family: "Poppins";
    font-size: 16px;
}
ul li{
    list-style: none;
}
a{
    text-decoration: none;
}
.container{
    max-width: 1170px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}
.heading h2{
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px ;
    font-size: 50px;
    /* color: black; */
    color: #ffff;
    text-align: center;
} 
.heading p{
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 40px;
    font-size: 20px;
    /* color: black; */
    color: #ffff;
    text-align: center;
}
.main-btn{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    border: black 2px solid;
    background-color: #fff;
    color: black;
    text-transform: capitalize;
}
.main-btn:hover{
    background-color: rgb(218, 87, 11);
    color: #ffff;
    border: 2px solid #ffff;
}
.com-gap{
    padding: 101px, 0;
}
/*============================================== header =====================================*/
/*============================================== navbar =====================================*/
.header{
    padding: 20px 50px;
    background-color: black;
    z-index: 100;
    position: relative;
}
.sticky{
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
}
.navbar{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.nav-menu{
   display: flex;
}
.nav-menu li{
    padding: 0 15px;
}
.nav-menu li a{
    display: inline-block;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    font-weight: 600;
}
.nav-menu li a:hover{
    color: rgba(241, 114, 40, 1);
}
.nav-menu li a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: rgb(254, 161, 22);
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 2s ease;
}
.nav-menu li a::before{
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    background-color: rgba(241, 114, 40, 1);
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 2s ease;
}
.logo{
    display: block;
    width: 250px;
    height: 100px;
    border: 3px solid #fff;
}
.nav-menu li a:hover::after, .nav-menu li a:hover::before{
    width: 100%;
}
.search i{
    color: #ffff;
    padding-right: 15px;
}
.search a{
    display: inline-block;
}
.search .ico-bars{
    display: none;
}
/* ======================================= banner =========================================== */
.banner-section{
    min-height: 100vh;
    background:  linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../IMAGES/banner-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center; 
    z-index: 100;
}
.banner-section-child{
    width: 60%;
}
.banner-section-child h1{
    font-size: 100px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    color: transparent;
    -webkit-text-stroke: 2px #fff;
    background-image: url(../IMAGES/text-wave.svg);
    -webkit-background-clip: text;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -700px 0;
    animation: text-a 9s linear infinite;
    margin-bottom: 40px;
}
@keyframes text-a{
    100%{
        
        background-position: 0 0;
    }
}
.banner-section-child p{
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
}
.hero-btn-area{
    display: flex;
    flex-wrap: wrap;
}
.hero-btn-area .main-btn{
    display: inline-block;
    position: relative;
    background-color: transparent;
    border: 2px solid white;
    z-index: 1;
    overflow: hidden;
    width: 25%;
    color: aliceblue;
    /* margin: 0 10px; */
    text-align: center;
}
.hero-btn-area .video-btn{
    margin: 0 20px;
}
.hero-btn-area .main-btn::after{
    content: "";
    position: absolute;
    background: rgba(241, 114, 40, 1);
    height: 100%;
    width: 100%;
    top:0;
    left: -100%;
    z-index: -1;
    transition: all 2s ease;
}
.hero-btn-area .main-btn:hover::after{
    left:0;
}
/* ==================================== menu ===================================== */
.menu-section{
    padding: 90px 0;
    background: rgb(254,161,22);
    background: linear-gradient(90deg, rgba(254,161,22,1) 8%, rgba(162,106,23,1) 15%, rgba(77,50,11,1) 25%, rgba(0,0,0,1) 49%, rgba(51,33,6,1) 71%, rgba(180,117,23,1) 86%, rgba(254,161,22,1) 92%);
}
.menu-card-layout{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-card{
    width: 282px;
    height: 270px;
    border: 3px solid #ffff;
    position: relative;
    overflow: hidden;
    margin: 0 5px;
}
.menu-card .front, .menu-card .back{
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    backface-visibility: hidden;
    cursor: pointer;
    transition: transform 2s ease;

}
.menu-card .front{
    transform: perspective(550px) rotateY(0deg);
}
.menu-card .back{
    transform: perspective(550px) rotateY(180deg);
}
.menu-card:hover .front{
    transform: perspective(550px) rotateY(-180deg);
}
.menu-card:hover .back{
    transform: perspective(550px) rotateY(0deg);
}
.menu-card .back{
   padding: 30px 15px;
   background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
}
.menu-card .back h3{
    color: #ffff;
    margin-bottom: 10px;
}
.menu-card .back p{
    color: #ffff;
    margin-bottom: 10px;
}

/* ================================== gallery ============================= */
.gallery-section{
    padding: 90px 0;
    background: rgb(254,161,22);
    background: linear-gradient(90deg, rgba(254,161,22,1) 8%, rgba(162,106,23,1) 15%, rgba(77,50,11,1) 25%, rgba(0,0,0,1) 49%, rgba(51,33,6,1) 71%, rgba(180,117,23,1) 86%, rgba(254,161,22,1) 92%);
}
.gallery-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ffff;
} 
.item5{
    grid-column: span 2;
}
.see-btn{
    color: #ffff;
    background: transparent;
    outline: none;
    border: none;
}
.see-btn:hover{
    background: transparent;
    border: none;
    outline: none;
    color: #fea116;
}

/* ================================== review ============================= */
.review-section{
   padding: 90px 0;
    background: url(../IMAGES/review-bg.jpg) 0 50% repeat-y fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
 .test-card{
    border-radius: 10px;
    color: #fff;
    backdrop-filter: blur(10px);
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
}
.test-content{
    padding: 30px 20px;
    background: #333;
}
.test-img img{
    border-radius: 8px 8px 0px 0px ;
}
.name-deg-star{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-section .heading h2{
    color: #ffff;
}

/* ========================================== about us ===================================== */
.about-us-section{
    padding: 90px 0;
    background-color: whitesmoke;
}
.about-us-child{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about-left{
    width: 50%;
}
.about-left h2{
    text-transform: capitalize;
    font-size: 50px;
    margin-bottom: 20px;
}
.about-left h3{
    text-transform: capitalize;
    font-size: 22px;
    margin-bottom: 20px;
}
.about-left p{
    margin-bottom: 20px;
}
/* ===================================== member ==================================== */
.member-section{
    padding: 90px 0;
    background-color: whitesmoke;
}
.member-layout{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-line{
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px ;
    font-size: 50px;
    color: black;
    text-align: center;
}
.master-line{
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px ;
    font-size: 24px;
    color: black;
    text-align: center;
}
.member-card{
    padding: 15px 20px;
    background: #ffff;
}
.member-card h4{
    margin-bottom: 10px;
}
.member-card span{
   color: #fea116;
   margin-bottom: 10px;
}
/* =================================== partner ================================== */
.partner-section{
    padding: 50px 0;
    background-color: whitesmoke;

}
.partner-logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.partner-logo img{
  background: transparent;
  width: 30%;
  transition: all 0.5s ease;

}
.partner-logo img:hover{
    filter: brightness(1.2) grayscale(0) opacity(1);
    transform: scale(1.9);
}
.part-line{
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px ;
    font-size: 50px;
    color: black;
    text-align: center
}
.part-para{
    text-transform: capitalize;
    line-height: 1.5;
    margin-bottom: 40px;
    font-size: 20px;
    color: black;
    text-align: center;
}

/* ======================================== contact ====================================== */
.contact-section{
    padding: 90px 0;
    background: rgb(254,161,22);
    background: linear-gradient(90deg, rgba(254,161,22,1) 8%, rgba(162,106,23,1) 15%, rgba(77,50,11,1) 25%, rgba(0,0,0,1) 49%, rgba(51,33,6,1) 71%, rgba(180,117,23,1) 86%, rgba(254,161,22,1) 92%);
}
.contact-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.contact-right form input{
    padding: 10px;
    margin-bottom: 25px;
    border: 2px solid black;
    outline: 2px solid #fea116;

}
.contact-right form input::placeholder{
    color: black;
}
.contact-right form #fst-name{
    margin-right: 20px;
}
.contact-right form input[type="email"],
.contact-right form input[type="number"]{
    width: 100%;
}
.contact-right form .frm-btn{
    display: flex;
}
.frm-btn .reset-btn{
    margin-left: 20px;
}
.frm-btn .main-btn{
    width: 100%;
    border: 2px solid black;
    outline: 2px solid #fea116;
}
.line{
    text-transform: capitalize;
    letter-spacing: 2px;
    margin-bottom: 20px ;
    font-size: 50px;
    color: #ffff;
    text-align: center;
}
.error {
    border: 1px solid red;
}

.error-message {
    color: red;
    display: block; /* Ensures the error message is on a new line */
    font-size: 0.8em;
}

/* ===================================== footer ============================================ */
.footer-child{
    display: flex;
    justify-content: space-between;
}
.footer-section{
    background-color: #000;
    color: white;
    padding: 78px 0 0px 0;
}
.left{
    width: 30%;
}
.footer-child a{
    color: #ffff;
    display: inline-block;
}
.para{
    color:#fea116;
    text-decoration: underline;
    font-size: 20px;
    font-weight: 600;
}
.footer-links li a,.para,#logopara{
    padding-bottom: 25px;
}
.left a i{
    font-size: 20px;
    padding: 10px;
    border: 2px solid #fea116;;
    border-radius: 50%;
    background-color: #000;
}
.left a i:hover{
    background-color: #ffff;
    color: #333;
    transition: 0.2s  ease-in-out;
}
.last p{
    text-align: center;
}
.footer-logo{
     margin-bottom: 10px;
}

/* ===================== swiper ===================== */
.swiper {
    width: 100%;
    height: 100%;
  }

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* background: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }








/* media query */
/* media query */
/* media query */
/* media query */
@media (min-width: 320px) and (max-width: 575.98px) {
    /* navbar */
    .header{
        padding: 15px 25px;
    }
    .logo{
        width: 90px;
        height: 30px;
       }
   .search .ico-bars{
    display: inline;
   }
   .nav-menu{
        display: block;
        position: absolute;
        top: 60px;
        background: linear-gradient(pink,red);
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 100;
    }
    .nav-menu li{
        padding: 15px 0;
     }
     .search i{
        padding-right: 5px;
     }
    /* banner */
   .banner-section{
    min-height: 60vh;
   }
  .banner-section-child{
       text-align: center;
       width: 100%;
   }
   .banner-section-child h1{
       font-size: 30px;
       margin-bottom: 10px;
   }
   .banner-section-child p{
       font-size: 15px;
       margin-bottom: 10px;
   }
   .hero-btn-area{
    justify-content: center;
   }
  .hero-btn-area .main-btn{
    width: 40%;
    font-size: 8px;
   }
   .hero-btn-area .video-btn{
    margin: 0 15px;
}
   /* menu */
   .menu-section{
    padding: 30px 0;
   }
   .menu-card-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;
    }
    .menu-card{
        margin: 5px 0;
    }
     /* gallery */
     .gallery-section{
        padding: 30px 0;
    }
    .gallery-layout{
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    .item5{
        grid-column: span 1;
    }
    .grid-item{
        height: auto;
    }
    .heading h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .heading p{
        font-size: 15px;
        margin-bottom: 10px;
    }
     /* review */
     .review-section{
        padding: 30px 0;
    }
     /* about us */
   .about-us-section{
    padding: 30px 0;
   }
   .about-left{
    text-align: center;
    width: 100%;
    }
    .about-left{
        margin: 20px 0;
    }
     .about-left h2{
        font-size: 30px;
    } 
    .about-left p{
        font-size: 15px;
    }
    .about-left h3{
        font-size: 18px;
        margin-bottom: 10px;
    }
     /* member */
    .member-section{
        padding: 30px 0;
    }
   .member-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;
   }
   .member-card{
       margin: 10px 0;
   }
   .team-line{
    font-size: 30px;
    margin-bottom: 10px;
   }
   .master-line{
    font-size: 18px;
    margin-bottom: 10px;
   }
   /* partner */
   .partner-section{
    padding: 30px 0;
  }
  .partner-logo{
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .partner-logo img{
    width: 60%;
  }
  .part-line{
    font-size: 30px;
    margin-bottom: 10px;
  }
  .part-para{
    font-size: 18px;
    margin-bottom: 10px;
  }
   /* contact */
     .contact-content{
        justify-content: center;
    }
    .contact-section{
        padding: 30px 0;
    }
    .contact-right{
        margin: 25px 0;
    }
    .line{
        font-size: 30px;
        margin-bottom: 10px;
    }
      /* footer-section */
      .footer-child{
        flex-direction: column;
        text-align: center;
    }
    .left{
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .four-div{
        padding: 20px 0;
    }
    /* footer-section */

}

@media (min-width: 576px) and (max-width: 765.98px) {
   /* navbar */
   .search .ico-bars{
    display: inline;
   }
   .logo{
    width: 150px;
    height: 50px;
   }
   .nav-menu{
        display: block;
        position: absolute;
        top: 90px;
        background: linear-gradient(pink,red);
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 100;
   }
   .nav-menu li{
    padding: 15px 0;
   }
   /* banner */
   .banner-section{
     min-height: 50vh;
    }
   .banner-section-child{
        text-align: center;
        width: 100%;
    }
    .banner-section-child h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .banner-section-child p{
        font-size: 15px;
        margin-bottom: 10px;
    }
    .hero-btn-area{
        justify-content: center;
        align-items: center;
    }
    .hero-btn-area .main-btn{
        width: 25%;
        font-size: 10px;
    }
    /* menu */
    .menu-section{
        padding: 30px 0;
    }
    .menu-card-layout{
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .menu-card{
        margin: 5px 0;
    }
    .heading h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .heading p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    /* gallery */
    .gallery-section{
        padding: 30px 0;
    }
    .gallery-layout{
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .item5{
        grid-column: span 1;
    }
    .heading h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .heading p{
        font-size: 18px;
        margin-bottom: 20px;
    }
    /* review */
    .review-section{
        padding: 30px 0;
    }
     /* about us */
   .about-us-section{
    padding: 30px 0;
   }
   .about-left{
    text-align: center;
    width: 100%;
    }
    .about-left{
        margin: 20px 0;
    }
    .about-left h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .about-left p{
        margin-bottom: 10px;
    }
     /* member */
    .member-section{
        padding: 30px 0;
    }
   .member-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;

   }
   .member-card{
       margin: 10px 0;
   }
   .team-line{
    font-size: 30px;
    margin-bottom: 10px;
   }
   .master-line{
    font-size: 18px;
    margin-bottom: 10px;
   }
  /* partner */
  .partner-section{
    padding: 30px 0;
  }
  .partner-logo{
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  .partner-logo img{
    width: 50%;
  }
  .part-line{
    font-size: 30px;
    margin-bottom: 10px;
  }
  .part-para{
    font-size: 18px;
    margin-bottom: 10px;
  }
    /* contact */
    .contact-content{
        justify-content: center;
    }
    .contact-section{
        padding: 30px 0;
    }
    .contact-right{
        margin: 25px 0;
    }
    .line{
        font-size: 30px;
        margin-bottom: 10px;
    }
    /* footer-section */
    .footer-child{
        flex-direction: column;
        text-align: center;
    }
    .left{
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .four-div{
        padding: 20px 0;
    }
    /* footer-section */

}

@media (min-width: 768px) and (max-width: 991.98px){
    /* navbar */
   .search .ico-bars{
    display: inline;
   }
   .nav-menu{
        display: block;
        position: absolute;
        top: 140px;
        background: linear-gradient(pink, red);
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 100;
   }
   .nav-menu li{
      padding: 15px 0;
   }
    /* banner */
   .banner-section{
    min-height: 70vh;
   }
  .banner-section-child{
       text-align: center;
       width: 100%;
   }
   .hero-btn-area{
      justify-content: center;
      align-items: center;
   }
   /* menu */
   .menu-card-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;
   }
   .menu-card{
    margin: 5px 0;
   }
   /* about us */
   .about-us-section{
    padding: 50px 0;
   }
   .about-left{
    text-align: center;
    width: 100%;
    }
    .about-left{
        margin: 20px 0;
    }
    .about-left h2{
        font-size: 30px;
        margin-bottom: 10px;
    }
    .about-left p{
        margin-bottom: 10px;
    }
    /* member */
    .member-section{
        padding: 50px 0;
     }
   .member-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;
   }
   .member-card{
       margin: 10px 0;
   }
   .team-line{
    font-size: 30px;
    margin-bottom: 10px;
   }
   .master-line{
    font-size: 18px;
    margin-bottom: 10px;
   }
    /* contact */
    .contact-content{
        justify-content: center;
    }
    .contact-section{
        padding: 50px 0;
    }
    .contact-right{
        margin: 25px 0;
    }
    .line{
        font-size: 30px;
        margin-bottom: 10px;
    }
     /* footer-section */
     .footer-child{
        flex-direction: column;
        text-align: center;
    }
    .left{
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    .four-div{
        padding: 20px 0;
    }
    /* footer-section */
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    /* navbar */
   .search .ico-bars{
    display: inline;
   }
   .nav-menu{
        display: block;
        position: absolute;
        top: 140px;
        background: linear-gradient(pink, red);
        width: 100%;
        left: 0;
        text-align: center;
        z-index: 100;
   }
   .nav-menu li{
      padding: 15px 0;
   }
   /* banner */
   .banner-section-child{
    width: 75%;
   }

   /* menu */
   .menu-card-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;
   }
   .menu-card{
    margin: 5px 0;
   }
   /* member */
   .member-layout{
    flex-wrap: wrap;
    justify-content: space-evenly;

   }
   .member-card{
       margin: 10px 0;
   }
   /* contact */
   .contact-right{
    margin: 20px 0;
   }



}
@media (min-width: 1200px) and (max-width: 1399.98px) {



}



