/*====================================================*/
/* =============== 👉  HEADER SECTION ================*/
/*====================================================*/

.header{
    background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
    backdrop-filter: blur(6px);
    box-shadow:0 8px 30px rgba(0,0,0,.35);
    height: 70px;
}
.header-block {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 120px;
    margin-top: 60px;
    position: relative;
    background-color: #fff;
    z-index: 9;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 100%;
    padding: 2px;
}
.logo img {
    width: 100%;
}
.menu {
    display: flex;
    gap: 20px;
}
.menu li a{
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--black);
}
.menu li a:hover {
    color: var(--purple);
}
.header-contact{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 20px;
}
.header-call{
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-call img {
    width: 60px;
}
.header-call a {
    font-size: 15px;
    font-weight: 500;
    color: var(--blue);
}
.header-call span {
    font-size: 12px;
    color: #333;
    display: block;
}
.menu-toggle{
    display: none;
}
.menu-close {
    display: none;
}
.mobile-title{
    display: none;
}

/*=====================================================*/
/* ================= 👉  HERO SECTION ================ */
/*=====================================================*/

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slide {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px; /* Added spacing for large screens */
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(1.5px);
}
.hero-content {
  position: relative;
  z-index: 10;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  color: #fff;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  transform: translateY(25px);
}
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s;
  font-size: 20px;
  z-index: 50;
}
.custom-arrow:hover {
  background: #fff;
  color: #111;
}
.custom-arrow.prev { left: 30px; }
.custom-arrow.next { right: 30px; }

.swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  background: rgba(255,255,255,0.7);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: #fff;
}
/*** ANIMATION FIX ***/
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/*=====================================================*/
/* ============== 👉  CATEGORY SECTION =============== */
/*=====================================================*/

.category-section{
    background-color: #d2d2d2;
}
.category-card {
  text-align: center;
  text-decoration: none;
  color: #111;
  display: block;
  transition: 0.4s ease;
}
.category-card:hover {
  transform: translateY(-8px);
}
.category-image-wrap {
  width: 110px;
  height: 110px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.category-image-wrap img {
  width: 100%;
  height: 100%;
  padding: 20px;
    background-color: var(--white);
  object-fit: cover;
  transition: 0.45s ease-in-out;
}
.category-card:hover img {
  transform: scale(1.15);
}
.category-card:hover .category-image-wrap {
  box-shadow: 0 8px 25px rgba(0,0,0,0.18), 0 0 0 4px #ffffff, 0 0 12px rgba(255, 205, 100, 0.5);
}
.category-card h4 {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
  transition: 0.3s ease;
}
.category-card:hover h4 {
  color: #cd8d28; /* interior gold tone */
}


/*==================================================*/
/*==================👉 PACKAGE =====================*/
/*==================================================*/

.swiper {
  width: 100%;
  padding: 40px 10px;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

/* Pagination Dots */
.swiper-pagination-bullet {
  background: #b4b4b4;
  opacity: 0.7;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  background: #0f67ff;
  transform: scale(1.25);
  opacity: 1;
}

/* Navigation Buttons */
.packageSwiper .swiper-button-next,
.packageSwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  color: #333 !important;
  font-size: 20px;
  border: 1px solid #e5e5e5;
}

.packageSwiper .swiper-button-next:after,
.packageSwiper .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

/* Hover Effect */
.packageSwiper .swiper-button-next:hover,
.packageSwiper .swiper-button-prev:hover {
  background: #000;
  color: #fff !important;
  transform: scale(1.1);
  border-color: transparent;
}

/* Position Fix */
.packageSwiper .swiper-button-next {
  right: -10px;
}

.packageSwiper .swiper-button-prev {
  left: -10px;
}

/* ================================
   PACKAGE CARD DESIGN
================================ */

.package-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 6px 18px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
  height: 100%;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
}
.package-image {
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}
.package-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.category-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 600;
  color: #111;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: all .3s ease;
  pointer-events: none;
  border: 1px solid #eaeaea;
}
.package-card:hover .category-tag {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: scale(1.05);
}
.package-card:hover .package-image img {
  transform: scale(1.12);
}
.package-content {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.package-price {
  font-size: 15px;
  font-weight: 600;
  color: #0f67ff;
  margin: 16px 0;
}
.view-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 30px;
  background: #0f67ff;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}
.view-btn i {
  transition: 0.3s;
}
.view-btn:hover {
  background: #003cbd;
}

.view-btn:hover i {
  transform: translateX(6px);
}

/*=====================================================*/
/*=========== 👉 WELCOME ABOUT SECTION ===============*/
/*=====================================================*/

.about-section {
  
}
.about-btn {
  display: inline-block;
  padding: 14px 32px;
  margin-top: 15px;
  background: linear-gradient(135deg,#4c6fff,#9b47ff);
  color: #fff;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: .4s;
  box-shadow: 0 6px 20px rgba(76,111,255,.25);
}
.about-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(155,71,255,.3);
}
.about-image-collage {
  display: flex;
  flex-wrap: wrap;
  height: 420px;
  gap: 2%;
  align-items: start;
  position: relative;
}
.about-image-collage::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 4px solid #dcdcff;
  border-radius: 50% 20% 40% 10%;
  opacity: 0.5;
  z-index: 2;
}
.collage-item {
    width: 48%;
}
.collage-item-big {
  height: 420px;
  border-radius: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: .45s ease-in-out;
  overflow: hidden;
  position: relative;
}
.collage-item-small {
  height: 205px;
  border-radius: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: .45s ease-in-out;
  overflow: hidden;
  position: relative;
}
.collage-item-big img, .collage-item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease;
}
.collage-item-big img:hover, .collage-item-small img:hover {
  transform: scale(1.08);
  filter: brightness(.95);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

/*=====================================================*/
/*=========== 👉 FEATURE SECTION ===============*/
/*=====================================================*/

.features-section{
    background-image: url('http://dassenterprise.in/wp-content/uploads/2025/11/126767.jpg');
    background-size: cover;
}
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0;
  transform: translateY(20px);
  opacity: 0;
  animation: featureFadeUp .8s ease forwards;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.12), 0 0 15px rgba(93, 106, 255, .3);
  border-color: transparent;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,#4c6fff,#9b47ff,#ff3d77,#ffb14c);
  opacity: 0;
  transition: 0.5s;
  z-index: -1;
}
.feature-card:hover::before {
  opacity: 1;
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 200%;
  background: radial-gradient(rgba(255,255,255,.4), transparent 70%);
  top: -120%;
  left: -10%;
  transform: rotate(25deg);
  transition: .6s;
}
.feature-card:hover::after {
  top: -20%;
}
.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg,#dfe5ff,#ffffff);
  margin: 0 auto 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  font-size: 32px;
  color: #4c6fff;
  transition: .4s ease;
  box-shadow: 0px 6px 20px rgba(76,111,255,.18);
}
.feature-card:hover .feature-icon {
  background: #ffffff;
  transform: scale(1.15) rotate(8deg);
  color: #ff3d77;
  box-shadow: 0px 10px 30px rgba(255,61,119,.25);
}
.feature-card:hover h3 {
  color: #ffffff;
}
.feature-card:hover p {
  color: rgba(255,255,255,.9);
}
@keyframes featureFadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}


/*=====================================================*/
/* ============== 👉  PORTFOLIO SECTION ============== */
/*=====================================================*/

.portfolio-section{
    background: linear-gradient(180deg, #0f1720 0%, #1a242d 100%);
    color: var(--white);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.video-card video,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.video-card:hover video,
.video-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
  color: #fff;
  font-size: 15px;
  opacity: 0;
  transition: opacity .3s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  width: 90%;
  max-width: 1300px;
  max-height: 90vh;
}

.lightbox video,
.lightbox img {
  width: 100%;
  max-height: 90vh;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
}


    
/*=====================================================*/
/*=========== 👉 TESTIMONIAL SECTION ================= */
/*=====================================================*/

.testimonial-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    height: 100%;
    background: url(/wp-content/themes/beavian-studio/images/background/testimonial-card.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial-card p, .testimonial-card strong{
    font-weight: 300 !important;
    font-style: italic;
    font-size: 14px;
}
.quote {
    width: 50px;
    margin-bottom: 10px;
}
.testimonial-user {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.testimonial-user .name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}
.testimonial-user .location {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
}

/*=====================================================*/
/* =============== 👉  CONTACT SECTION =============== */
/*=====================================================*/

.contact-info-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}
.contact-box{
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 15px;
    transition: .5s ease-in-out;
    padding: 20px;
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    z-index: 9;
}
.contact-box i {
    font-size: 30px;
    width: 75px;
    height: 75px;
    line-height: 75px;
    text-align: center;
    background-color: var(--white);
    color: var(--blue);
    border-radius: 100px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.contact-box p a{
    text-align: center;
    color: var(--black);
}
.contact-form-wrap{
    padding: 20px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    border-radius: 5px;
    background-color: var(--white);
}
.contact-form{
    display:flex; 
    flex-direction:column; 
    gap:15px;
}
.contact-form input[type="text"], .contact-form input[type="tel"], .contact-form input[type="email"], .contact-form select{
    padding:10px; 
    border:1px solid #ccc;
    height: 40px;
    border-radius: 5px;
    font-size: 14px;
}
.contact-form textarea{
    padding:10px; 
    border:1px solid #ccc;
    height: 120px;
    border-radius: 5px;
    font-size: 14px;
}

#inquiryModal.modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: flex; align-items: center; justify-content: center;
}
#inquiryModal .modal-content {
    background: #fff; padding: 20px; width: 90%; max-width: 400px; border-radius: 8px;
    position: relative;
}
#inquiryModal .close-btn {
    position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 20px;
}

/*=====================================================*/
/* ================ 👉  FOOTER SECTION ================ */
/*=====================================================*/

.footer-section{
    padding: 70px 0 50px 0;
    color: var(--white);
    background: linear-gradient(180deg, #0f1720 0%, #1a242d 100%);
}
.social-list {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social-list a {
    color: var(--orange);
}
.social-list i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    background-color: var(--blue);
    color: var(--white);
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
.footer-menu li, .footer-menu li a{
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
}
.footer-bottom {
    background-color: var(--black);
    height: 60px;
}
.footer-bottom .container{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.copyright{
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}
.copyright a{
    color: var(--white);
}
.legal-menus{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.legal-menus li a {
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
}

/*=====================================================*/

/* 👉  RESPONSIVE */

/*=====================================================*/


@media (max-width: 768px) {

.desktop-title{
    display: none;
}
.min-mg {
    margin-top: 10px !important;
}  
.mid-mg {
    margin-top: 20px !important;
}
.section, .footer-section {
    padding: 40px 0 !important;
}
.header {
    backdrop-filter: none;
}
.header-block {
    height: 75px;
}
.site-nav {
    position: fixed;
    top: 0;
    right: -350px;
    height: 100%;
    width: 350px;
    background: #fff;
    padding: 20px;
    transition: right 0.3s ease-in-out;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.menu {
    flex-direction: column;
}
.menu li a {
    font-size: 20px;
}
.menu-toggle {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: none;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.menu-close {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    margin-left: auto;
}
.header-contact{
    display: none;
}
.site-nav.active {
    right: 0;
}
.logo {
    width: 45px;
    margin-top: 0;
}
.mobile-title{
    color: var(--blue);
    font-weight: 600;
    font-size: 20px;
    font-style: italic;
    display: flex;
    align-items: center;
    margin: 0;
}
.heading {
    font-size: 25px;
    line-height: 30px;
}
.mini-heading{
    font-size: 15px;
    line-height: 20px;
}
.slide-info{
    /*justify-self:start;*/
    display: none;
}
.top-package-card{
    margin-top: 15px;
}
.category-list {
    flex-wrap: wrap;
    gap: 10px;
}
.category-list {
    flex-wrap: wrap;
}
.category-box {
    width: 100px;
    height: 100px;
    padding: 15px;
    gap: 0px;
}
.category-box img {
    width: 35px;
}
.package-card{
    height: auto;
    margin-bottom: 15px;
}
.about-item-box {
    margin-bottom: 2%;
}
.page-banner {
    height: 170px;
}
.lb-controls {
    margin-top: 30px;
}
.product-gallery{
    margin-top: 15px;
}
.sub-heading {
    font-size: 25px;
    line-height: 30px;
} 
.mid-heading{
    font-size: 18px;
}
.feature-item-image {
    margin-top: 0 !important;
}
.product-card, .feature-item-box, .testimonial-card {
    margin-bottom: 15px !important;
    height: auto !important;
}
.event-card {
    height: auto !important;
    margin-bottom: 15px !important;
}
.footer-nav{
    margin-top: 15px;
}
.footer-bottom {
    height: auto !important; 
}
.footer-bottom .container {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    justify-content: center !important;
    height: auto !important;
}
.package-image{
    margin-top: 20px;
}
.contact-section{
    background-size: cover !important;
    background-position: bottom !important;
}
.category-section .category-list .col-md-3 {
    margin-bottom: 15px !important;
}
.contact-form-wrap{
    margin-top: 20px;
}
.contact-form .section-head{
    margin-top: 15px;
}
.whatsapp-btn {
    font-size: 32px;
    width: 48px;
    height: 48px;
}
.about-image img{
    display: none;
}
.contact-section{
    background: var(--white);
}

}


