@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Fira+Sans: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');


@import url('https://fonts.googleapis.com/css2?family=Cookie&family=Fira+Sans: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&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');


/********** Template CSS **********/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #000;
    --secondary: #EAA636;
    --light: #FDF5EB;
    --dark: #1E1916;
    --cursive-font-family :"Cookie", cursive;
    --normal-font-family: "Poppins", sans-serif;
}
.back-to-top {
    position: fixed;
    display: none;
    right: 32px;
    bottom: 77px;
    z-index: 99;
}
body{
    font-family: var(--normal-font-family);
}

 li{
  list-style-type: none;
 }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.top-header{
    background: var(--primary) !important;
    border-bottom: 2px solid gray;
    height: 35px;
    padding: 3px 15px;
}

.top-header .head-num a{
    color:var(--light);
    font-family: var(--normal-font-family);
}

@media (max-width:755px) {
  .top-header .head-num a{
    font-size: 12px;
}
  
}
.top-header .head-num a i{
    font-size: 12px;
    color: var(--secondary);
    padding: 3px;
    border-radius: 50%;
    border: 1px solid var(--secondary);
}
.top-header .head-icon i{
    color:var(--light);
    padding: 0px 5px;
    cursor: pointer;

}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.navbar{
    background: #000;
}
 

.navbar .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--light);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}
.navbar-brand img{
    max-width: 242px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--secondary);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: var(--secondary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        padding: 10px 0;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown-menu a{
    border-bottom: 1px solid var(--dark);
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        /* right: 15px; */
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
 
}

.navbar-collapse {
    text-align: center;
}

.banner-head{
  font-family: var(--cursive-font-family);
  letter-spacing: 2.4px;
  font-weight: 300;
  font-size: 25px;
}
/*** Header ***/
.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--secondary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/* HOME PAGE  */

.hero-header{
    padding: 16px !important;
    background: url(../images/banner.png);
    background-size: cover;
    background-position: center center ;
    background-repeat: no-repeat;
}
.hero-header h1{
    color: var(--light);
    font-size: 44px;
    font-family: var(--normal-font-family);
}
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}
 

/* HOME PAGE FORM*/ 

.form-container {
    background:rgba(255, 255, 255, 0.5); 
    padding: 45px; 
    border-radius: 48px;
    max-width: 520px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}

.event-form h2 {
    text-align: center;
    color: black;
    font-family: var(--normal-font-family);
    font-size: 35px;
    margin-bottom: 20px;
}

.event-form h2 span {  
    color: var(--secondary); 
    font-size: 25px; 
}

.form-group {
    display: flex; 
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.form-group input, textarea ,select {
    width: 100%;  
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #747170;
}
input::placeholder,textarea::placeholder {
    color:var(--dark); /* Change placeholder color to gray */
    opacity: 1; /* Ensures the color is fully opaque */
}
 
button {
    width: 30%; /* Set button width to 30% of the parent container */
    max-width: 200px; /* Max width for larger screens */
    padding: 10px;
    background-color: var(--dark);
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
}

button:hover {
    background-color:#00000072;
}



/* ANIMATION BUTTON */

.button-animation {
  position: relative; 
  display: inline-block;
  padding: 20px 18px;
  color:  #FBA504;
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 2px;
  transition: 0.5s;
}
.button-animation span {
  position: absolute;
  display: block;
}
.button-animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent,#FBA504);
  animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.button-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent,#FBA504);
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
.button-animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 80%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #FBA504);
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
.button-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #FBA504);
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
.button-animation:hover {
  background-color:  #FBA504;
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #FBA504, 0 0 25px #FBA504, 0 0 50px #FBA504, 0 0 100px #FBA504;
}


/*** ABOUT US  ***/

.studio-about h2{
  font-family: var(--normal-font-family);
  font-size: 35px;
  font-weight: bold;
}
.studio-about h3{
  font-family: var(--normal-font-family);
  font-size: 22px;
  font-weight: bold;
}
.studio-about .animated i,b{
  color: var(--dark);
}
.studio-about h5{
  font-family: var(--cursive-font-family);
  font-size: 35px;
}

@media (max-width:426px) {
  .studio-about h2{ 
  font-size: 22px; 
}
}

/* CUSTOMIZED GIFT SECTION */

.new-box {
  width: 100%;
  height: 100%; 
  display: flex;
  justify-content: center;
  align-items: center;
}

.box {
  width: 290px;
  height: 100%; 
  border-radius: 12px;
  box-shadow: 1px 2px 9px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin: 20px 10px;
}
.box:hover,.box:hover img { 
  transform-style: preserve-3d;
  cursor: pointer;
  transform: scale(1.03); 
  transition: all ease 0.3s;
}
 
.box:hover .marvel {
  color: #EAA636;
  transition: all ease 0.5s;
}
.model {
  height: 260px;
  max-height: 100%;
  max-width: 100%;
  padding: 5px;
}

.details {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0px 0px 20px 0px;
}

.marvel {
  color: #32323e;
  font-family: var(--cursive-font-family);
  font-size: 28px;
  margin-top: 10px;
margin-bottom: 0px !important;
  font-weight: bold;
  letter-spacing: 2px;  
} 
 
.details .btn {
  width: 70%;
  padding: 5px; 
  border-radius: 5px;
  border: navajowhite;
  transition: all 0.3s;
}
.details .btn a{
   background: transparent;
}

.box:hover .details .btn, .btn a {
  background: #000;
  color: #fff;
}



@media (max-height: 600px) {
  .new-box {
    height: 90%;
  }
}

/*** Facts ***/
.fact-item {
    transition: .3s;
    border-radius: 20px;
    cursor: pointer;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.fact-item h4{
    font-family: var(--cursive-font-family);
    font-size: 42px;
    word-spacing: 2.2px;
}

.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--dark);
    z-index: -1;
}


/*** Service ***/
.service-Sec p{
    color: var(--secondary);
    font-size: 15px; 
}
.service-Sec h2
{
    color: var(--light);
    font-family: var(--normal-font-family);
}

.service-item h4{
    font-family: var(--cursive-font-family);
    font-size:30px;
}
.service-item,
.service-item * {
    transition: .3s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--secondary) !important;
}

.service-item:hover * {
    color: var(--dark);
}

.service-item .service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-overlay {
    opacity: 1;
}


/*** Full Images***/
.web-full-image {
    background: url(../images/mid_banner.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; 
    padding: 220px;
}

/*** Our Wprks Area ***/

.our-works p{
    font-size: bold;
    color:var(--secondary);

}
.our-works h2{
    font-family: var(--normal-font-family);

}
/*** Project ***/
.project-item {
    position: relative;
}

.project-item .project-title {
    position: absolute;
    top: auto;
    font-family: var(--cursive-font-family); 
    font-size:36px;
    bottom: 1rem;
    padding: 5px 7px;
    left: 1rem; 
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.project-item:hover .project-title {
    color:var(--secondary);
    background: var(--dark);
}


/*** Experiance ***/
.studio-experiance{
    background: var(--primary);
}
.studio-experiance h2{
    font-family: var(--normal-font-family);
    color: var(--light);
}

/*** Team ***/

.studio-team h2{
    font-family: var(--normal-font-family);
}
.studio-team-content h4{
    font-family:var(--normal-font-family);
    font-size:24px;
    font-weight: 400;
}
.team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #FFFFFF transparent;      
}

@media (min-width: 576px) {
    .flex-sm-row .team-img::after,
    .flex-lg-row-reverse .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }
}

@media (min-width: 992px) {
    .flex-lg-row-reverse .team-img::after,
    .flex-sm-row-reverse .team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }

    .flex-sm-row-reverse.flex-lg-row .team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}


/*** Testimonial ***/

.studio-testimonials h2{
    font-family: var(--normal-font-family);
}
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}
.testimonial-item h5{
    font-family: var(--normal-font-family);   
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-radius: 20px;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer{
    background: var(--primary);
}
@media (min-width: 992px) {
    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--secondary);
    }
}

.footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--secondary);
    transform: skew(40deg);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--secondary);
    letter-spacing: 1px;
    box-shadow: none;
}

 

  .page-banner{
    background: var(--primary);  
    padding:80px;
  }
  .page-banner h1{
    /* font-size: 32px; */
    color: var(--secondary);
    font-family: var(--normal-font-family);
  }
    .page-banner h1 span{
    font-size: 30px; 
  }

  @media (max-width:426px) {
      .page-banner h1{
    font-size: 21px; 
  }
   .page-banner h1 span{
    font-size: 18px; 
  }
    .page-banner{ 
    padding:20px;
  }
    
  }
  /*** BLOG SECTION ***/

  
.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    overflow: hidden;
    box-shadow: 0px 2px 20px #d7dfe2;
    background: white;
    border-radius: 0.5rem;
    position: relative;
    width: 350px;
    margin: 1rem;
    transition: 250ms all ease-in-out;
    cursor: pointer;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 40px #d7dfe2;
  }
  
  .banner-img {
    position: absolute;
    object-fit: cover;
    height: 14rem;
    width: 100%;
  }
  
  .category-tag {
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    background: red;
    padding: 0.5rem 1.3rem 0.5rem 1rem;
    text-transform: uppercase;
    position: absolute;
    z-index: 1;
    top: 1rem;
    border-radius: 0 2rem 2rem 0;
  }
  
  .popular {
    background: #ef257a;
  }
  
  .technology {
    background: #651fff;
  }
  
  .psychology {
    background: #e85808;
  }
  
  .card-body {
    margin: 15rem 1rem 1rem 1rem;
  }
  
  .blog-hashtag {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4d97b2;
  }
  
  .blog-title {
    /* line-height: 1.5rem; */
    font-size: 22px;
    font-family: var(--normal-font-family);
    /* margin: 1rem 0 0.5rem; */
  }
  
  .blog-description {
    color: #616b74;
    font-size: 0.9rem;
  }
  
  .card-profile {
    display: flex;
    margin-top: 2rem;
    align-items: center;
  }
  
  .profile-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .card-profile-info {
    margin-left: 1rem;
  }
  
  .profile-name {
    font-size: 1rem;
  }
  
  .profile-followers {
    color: #616b74;
    font-size: 0.9rem;
  }

  .card-footer {
    background: var(--primary); 
    height: 40px; 
  }
  .card-footer p{
    text-align: center; 
  }
  .card-footer p a{
    color: var(--light);
    text-align: center;
  }

  .error-page h2,.error-page h1{
font-family: var(--normal-font-family);
  } 
 /* Bounce animation */
@keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    20% {
      transform: translateY(-10px);
    }
    40% {
      transform: translateY(0);
    }
    60% {
      transform: translateY(-5px);
    }
    80% {
      transform: translateY(0);
    }
  }
  
  /* Apply the bounce animation to all fact-item boxes */
  .fact-item {
    animation: bounce 1s ease-in-out infinite;
  }
  

  :root{ 
    /* Transition & Box Shadow */
    --transition: 0.4s ease-in-out; 
    --shadow: 0px 60px 56px -12px rgba(9, 40, 163, 0.05); 
    
    } 
  
    .faq_section .haeed{
      font-weight: 600; 
      margin-bottom: 20px;
      text-align: center;
    }
   
    
    .accordion__wrapper {
        background-color:   #eff2f5ce; 
        padding: 20px; 
        border-radius: 10px;
    } 
    .accordion {
        border-bottom: 0.1rem solid var(--dark); 
        padding: 10px;
    }
    
    .accordion__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        cursor: pointer;
    } 
    
    .accordion__icon {
        background-color: var(--primary);
        width:1.3rem;
        height:1.3rem;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color:var(--light);
        flex-shrink: 0;
    }
    
    .accordion__question{
        font-size: 17px;
        font-family: var(--normal-font-family);
        font-weight: 500;
        color: var(--dark);
    }
    
    .accordion__answer{
        padding: 7px 4px;
    }
    
    .accordion__content{
        overflow: hidden;
        height: 0;
        transition: var(--transition);
    }
 

    .worksample {
        height: 70vh;
        display: grid;
        place-items: center;
        overflow: hidden;
      }
      
      main {
        position: relative;
        width: 100%;
        height: 100%;
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
      }
      
      .item {
        width: 200px;
        height: 300px;
        list-style-type: none;
        position: absolute;
        top: 65%;
        transform: translateY(-50%);
        z-index: 1;
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
        transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
      
        &:nth-child(1), &:nth-child(2) {
          left: 0;
          top: 0;
          width: 100%;
          height: 100%;
          transform: none;
          border-radius: 0;
          box-shadow: none;
          opacity: 1;
        }
      
        &:nth-child(3) { left: 50%; }
        &:nth-child(4) { left: calc(50% + 220px); }
        &:nth-child(5) { left: calc(50% + 440px); }
        &:nth-child(6) { left: calc(50% + 660px); opacity: 0; }
      }
      
      .content {
        width: min(30vw,400px);
        position: absolute;
        top: 50%;
        left: 3rem;
        transform: translateY(-50%);
        font: 400 0.85rem helvetica,sans-serif;
        color: white;
        text-shadow: 0 3px 8px rgba(0,0,0,0.5);
        opacity: 0;
        display: none;
      
        & .title {
          font-family: 'arial-black';
          text-transform: uppercase;
        }
      
        & .description {
          line-height: 1.7;
          margin: 1rem 0 1.5rem;
          font-size: 0.8rem;
        }
      
        & button {
          width: fit-content;
          background-color: rgba(0,0,0,0.1);
          color: white;
          border: 2px solid white;
          border-radius: 0.25rem;
          padding: 0.75rem;
          cursor: pointer;
        }
      }
      
      .item:nth-of-type(2) .content {
        display: block;
        animation: show 0.75s ease-in-out 0.3s forwards;
      }
      
      @keyframes show {
        0% {
          filter: blur(5px);
          transform: translateY(calc(-50% + 75px));
        }
        100% {
          opacity: 1;
          filter: blur(0);
        }
      }
      
      .nav {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        user-select: none;
      
        & .btn {
          background-color: rgba(255,255,255,0.5);
          color: rgba(0,0,0,0.7);
          border: 2px solid rgba(0,0,0,0.6);
          margin: 0 0.25rem;
          padding: 0.75rem;
          border-radius: 50%;
          cursor: pointer;
      
          &:hover {
            background-color: rgba(255,255,255,0.3);
          }
        }
      }
      
      @media (width > 650px) and (width < 900px) {
        .content {
          & .title        { font-size: 1rem; }
          & .description  { font-size: 0.7rem; }
          & button        { font-size: 0.7rem; }
        }
        .item {
          width: 160px;
          height: 270px;
      
          &:nth-child(3) { left: 50%; }
          &:nth-child(4) { left: calc(50% + 170px); }
          &:nth-child(5) { left: calc(50% + 340px); }
          &:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
        }
      }
      
      @media (width < 650px) {
        .content {
          & .title        { font-size: 0.9rem; }
          & .description  { font-size: 0.65rem; }
          & button        { font-size: 0.7rem; }
        }
        .item {
          width: 130px;
          height: 220px;
      
          &:nth-child(3) { left: 50%; }
          &:nth-child(4) { left: calc(50% + 140px); }
          &:nth-child(5) { left: calc(50% + 280px); }
          &:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
        }
      }
      @keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.hover-gallery {
  transform: translate3d(0, 0, 0); 
  padding: 50px;
  min-height: 300px;
  text-align: center;
}

.gallery-container {
  padding: 0;
  margin: 0;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 450px;
}

.item-gallery {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  transition-delay: 0.25s;
}

.item-gallery:hover {
  flex: 14;
}













/* Image gallery styling */
.all-img-gallery { 
  margin: 20px auto 0;
  text-align: center;
}

.container__img-holder {
  max-width: 280px;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-left: 16px;
  cursor: pointer;
}

.all-img-gallery .container__img-holder:nth-child(3n+1) {
  margin-left: 0;
}

.container__img-holder img {
  width: 100%;
  height: 220px;
  display: block;
}

/* Popup Styling */
.img-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.img-popup img {
  max-width: 900px;
  width: 100%;
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.3s, transform 0.3s;
}

.close-btn {
  width: 35px;
  height: 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.close-btn .bar {
  height: 4px;
  background: #333;
}

.close-btn .bar:nth-child(1) {
  transform: rotate(45deg);
}

.close-btn .bar:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.opened {
  display: flex;
}

.opened img {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 880px) {
  .all-img-gallery .container__img-holder:nth-child(3n+1) {
    margin-left: 16px;
  }
}


 

.book-section { 
  width: 100%;
  padding: 40px 0;
  text-align: center;
}


.book-section > .book-main-sec {
  height: 430px;
  width: 700px;
  position: relative;
  left: 22%;
  transform: translateX(-50%);
  border-radius: 2%;
  margin-bottom: 30px;
  perspective: 1200px;
}
@media (max-width:400px) {
  .book-section > .book-main-sec {
    height: 250px;
    width: 346px; 
    left: 48%;
  }
  
}

.book-main-sec > .right {  
  position: absolute;
  height: 100%;
  width: 50%;
  transition: 0.7s ease-in-out;
  transform-style: preserve-3d;
}

.book-section > .book-main-sec > .right {
  right: 0;
  transform-origin: left;
  border-radius: 10px 0 0 10px;
}

.right > figure.front, .right > figure.back {
  margin: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover; /* Ensures the image covers the figure area */
  background-repeat: no-repeat;
  backface-visibility: hidden;
  background-color: white;
  overflow: hidden;
}

.right > figure.front {
  background-position: center;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 2px 15px -2px rgba(0,0,0,0.2);
}

.right > figure.back {
  background-position: center;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 2px 15px -2px rgba(0,0,0,0.2);
  transform: rotateY(180deg);
}

.flip {
  transform: rotateY(-180deg);
}

.flip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  border-radius: 0 10px 10px 0;
  background-color: rgba(0,0,0,0.1);
}

.book-section > button {
  border: 2px solid #ef9f00;
  background-color: transparent;
  color: #ef9f00;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  transition: 0.3s ease-in-out;
}

.book-section > button:focus, .book-section > button:active {
  outline: none;
}

.book-section > p {
  color: rgba(0,0,0,0.7);
  font-family: calibri;
  font-size: 24px;
}

.book-section > p > a {
  text-decoration: none;
  color: #ef9f00;
}

.book-section > button:hover {
  background-color: #ef9f00;
  color: #fff;
}

.front#cover, .back#back-cover {
  background-color: #ffcb63;
  font-family: calibri;
  text-align: left;
  padding: 0 30px;
}

.front#cover h1 {
  color: #fff;
}

.front#cover p {
  color: rgba(0,0,0,0.8);
  font-size: 14px;
}


.gallery {
  columns: 3;
  column-gap: 1.5rem;
  width: 100%;
}

@media (max-width: 768px) {
  .gallery {
      columns: 2;
  }
}

@media (max-width: 480px) {
  .gallery {
      columns: 1;
  }
}

.gallery-item {
  break-inside: avoid;
  /* margin-bottom: 1.5rem; */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: calc(var(--delay) * 0.2s);
}

.gallery-item:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item img {
  /* width: 100%; */
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
} 


.photo-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-size: 0.8rem;
  opacity: 0.8;
  text-decoration: none;
}

.photo-credit:hover {
  opacity: 1;
}

@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: #00A89D;
  z-index: 1000;
  transition: width 0.3s ease;
}
.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0px 12px;
}

.gallery-item {
  width: calc(28% - 100px);
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.gallery-item img:hover {
  transform: scale(0.90);
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.img-content {
  margin: auto;
  margin-top: 140px;
  display: block;
  width: 40%;
  max-width: 1200px;
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .gallery-item {
      width: calc(45% - 20px);
  }
}

@media (max-width: 768px) {
  .gallery-item {
      width: calc(100% - 20px);
  }
}

@media (max-width: 480px) {
  .gallery-item {
    width: calc(100% - 20px);
}.modal-content { 
  margin-top: 180px; 
  width: 90%;
  max-width: 1200px;
}
}
@media (max-width:360px) {
  .footer-logo{
    max-width: 180px !important;
  }
  
}
.whats_link {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 999;
}
.whats_link img {
  width: 50px;
  border-radius: 20%;
}
 


.lSAction>a{
  background-color: #000;
  border-radius: 50%;
} 

.content-page h2{
  font-family: var(--normal-font-family);
  font-size: 42px;
}

.contact-info-box {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.contact-info-box h2{
  font-family: var(--cursive-font-family);
  font-size: 42px;
  letter-spacing: 2.5px;
  color:var(--primary);
}
.contact-info-box ul {
  margin-top: 20px;
}
.contact-info-box ul li{
  text-align: left; 
  list-style: none;
  margin-top: 8px;
  margin-left: 12px;
}
/* .contact-info-box ul li i{
  font-size: 15px;
  background-color: grey;
  color: var(--light);
  padding: 7px;
  border-radius: 50%;
} */
.contact-info-box ul li i a{
  font-size: 15px;
  color: var(--dark) !important;
}


@media (max-width:972px) {
  .navbar-toggler {
    padding: 1.25rem 28.75rem;}
}

@media (max-width:790px) {
  .navbar-toggler {
    padding: 1.25rem 20.75rem;}
}

@media (max-width:640px) {
  .navbar-toggler {
    padding: 1.25rem 5.75rem;}
}


@media (max-width:464px) {
  .navbar-toggler {
    padding: 1.25rem 2.75rem;}
}

.time-sec-gmb h4{
  color: var(--secondary);
  font-family: var(--normal-font-family);
}
.time-sec-gmb h4 i{
  background: var(--light);
  color: var(--dark);
  padding: 12px 14px;
  border-radius: 50%;  
}
.time-sec-gmb p{
  margin-left: 50px;
  color:var(--light);
}
.time-sec-gmb p a{ 
  color:var(--light);
}


/* Enquiry Pop CSS */
.dialog-box { position: relative; top:21%; }
        .contentSecMod { border-radius: 15px; overflow: hidden; }
        .modelbodySec { display: flex; padding: 0; }
        .modal-image { width:70%; background: url('../gallery/6.png') center/cover no-repeat;border-radius: 10px; }
        .modal-form { width: 60%; padding: 30px; }
        .modal-title{
          font-family: var(--normal-font-family);
          font-size: 30px;
        }
        .modal-header { border-bottom: none; padding: 20px; }
        .form-control { border-radius: 10px; }
        .submit-btn { background-color: var(--primary); color: var(--light); border-radius: 20px; padding: 10px; width: 100%; border: none; font-size: 16px; font-weight: bold; transition: 0.3s; }
        .submit-btn:hover { background-color: var(--secondary);color: var(--dark); }
        #thankYouMessage, #errorMessage { display: none; font-weight: bold; text-align: center; margin-top: 10px; }
        #thankYouMessage { color: green; }
        #errorMessage { color: red; }



        .ser-sec-box{
          height:85% !important;
        } 

        .justify-text
        {
          text-align: justify;
        }


        .web-btn{
          background: var(--primary);
          color: var(--light);
          font-weight: bold;
          padding: 7px; 
          transition: ease-out 0.3s;
        }
        .web-btn:hover{ 
          transform: scale(1.1); 
          background: var(--primary);
          font-weight: bold;
          color: var(--secondary);
          padding: 7px; 
        }
     
          .web-btn i {   
            color: white;   
            font-size: 20px;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
            text-align: center;
            z-index: 1000;
            transition: 0.3s;
            margin-top: 6px;
            margin-right: 5px;
          }   
          .read-more{
            margin-top: 200px !important;
            color: var(--light);  padding:5px 10px;border-radius: 10px;
            background-color: var(--primary);
            transition: all 0.3s;
          }
          .read-more:hover{
            border: none;
            background-color: var(--secondary);
            color: #fff;
          }

          .contact-details li a,.contact-details li i{
            color: var(--primary);
          }