* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #323232;
    background: white;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
}

* {
    transition: 0.3s;
}

a {
    text-decoration: none !important;
}
/*Loader*/
  .preloader-wrapper{    
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    height: 100%;
    min-width: 1905px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    transition: 1s ease-out;
  }
  .preloader-wrapper::after{
    content: 'Click to Enter';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 15px 20px 6px rgb(0 18 45 / 50%);
    cursor: pointer;
  }
  .preloader-wrapper.start::after{
      display: none;
  }
  .preloader .ldr_prt{
    height: 100vh;
    width: 50%;
    background: #118fc0;
    background-image: url(../img/locaderbg-min.png);
    background-size: 200%;
    background-position: -10px center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    transition: 1.2s ease-in-out;
  }
  .preloader .ldr_prt.rgt{
    left: 50%;
    background-position: calc(100% - 10px) center;
  }
  .preloader .lft::after{
    content: "";
    width: 300px;
    height: 500px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-180%, 0%);
    background-image: url(../img/bagha-c.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    visibility: hidden;
  }
  .preloader-wrapper.start .lft::after{
    visibility: visible;
    animation: moveOne 2s ease forwards; /* runs once */
  }
  .preloader .rgt::after{
    content: "";
    width: 300px;
    height: 500px;
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translate(80%, 0%);
    background-image: url(../img/gupi-c.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    visibility: hidden;
  }
  .preloader-wrapper.start .rgt::after{
    visibility: visible;
    animation: moveTwo 2s ease forwards; /* runs once */
  }
  .preloader .cntr{
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100vh);
    max-width: 500px;
    width: 90%;
    transition: 1s;
    z-index: 1;
    text-align: center;
  }
  .preloader .cntr img{
      display: none;
  }
  .preloader .cntr::after{
    content: "";
    width: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    height: 300px;
    position: absolute;
    opacity: 1;
    /* animation: show 4s infinite; */
    z-index: 1;
    /* display: none; */
    background-image: url(../img/eye-min.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
  } 
  .preloader-wrapper.start .preloader .cntr::after{
    opacity: 1;
    animation: zoomRotate 2s ease forwards;
    animation-delay: 2s; /* waits 3s before starting */
  } 
  .preloader .cntr p{
    color: #737373;
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.4;
  }
  .preloader .ldr{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    z-index: 5;
    opacity:0;
  }
  
  .preloader-wrapper.start .preloader .ldr{
    opacity: 1;
    animation: zoomin 3s ease forwards;
    animation-delay: 2s; /* waits 3s before starting */
  }
  .preloader .ldr .fa{
    color: var(--secondary-color);
  }
  .preloader .ldr .ldrtxt{
    font-size: 16px;
    font-weight: 500;
    padding-left: 12px;
    margin: 10px auto;
    color: #bfbfbf;
  }
    /* First Animation */
    @keyframes moveOne {
      from {
        transform: translate(-180%, 0%);
      }
      to {
        transform: translate(66%, -42%);
      }
    }
    /* Second Animation */
    @keyframes moveTwo {
      from {
        transform: translate(175%, 0%);
      }
      to {
        transform: translate(-57%, -50%) rotate(-14deg);
      }
    }
    @keyframes zoomin {
      from {
        transform: translateX(-50%) translateY(200%) scale(0);
      }
      to {
        transform: translateX(-50%) translateY(-25%) scale(2);
      }
    }
    @keyframes zoomRotate {
      0% {
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
        opacity: 1;
      }
      70% {
        transform: translate(-50%, -50%) scale(20) rotate(400deg);
        opacity: 1;
      }
      100% {
        transform: translate(-50%, -50%) scale(50) rotate(720deg);
        opacity: 0;
      }
    }
  @keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  @-webkit-keyframes show {
    0% {
      opacity: .7;
      /*backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);*/
      transform: translateX(0%);
    } 
    100% {
      opacity: .4;
      /*backdrop-filter: blur(0px);
      -webkit-backdrop-filter: blur(0px);*/
      transform: translateX(110%);
    }
  }
  .preloader-wrapper.active{
    opacity: 1;
    visibility: visible;
    z-index: 999999;
  }
  .preloader-wrapper.active .preloader .cntr{
    transform: translate(-50%, -50%);
  }
  .preloader .lft{
    transform: translateX(-220%);
  }
  .preloader .rgt{
    transform: translateX(220%);
  }
  .preloader-wrapper.active .preloader .lft{
    transform: translateX(0);
  }
  .preloader-wrapper.active .preloader .rgt{
    transform: translateX(0);
  }
/*end*/
section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,
.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)) {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s)
}

.section-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 30px;
}
svg{
    color: white;
}
.thm-color{
    color: #cd9971;
    
}
.section-title-icon:before,
.section-title-icon:after {
    content: "";
    width: 160px;
    height: 1px;
    background-color: #caab95f7;
}

.diamond-spark.spark-4 {
    animation-name: spark4;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

.diamond-spark.spark-1 {
    animation-name: spark1;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

.diamond-spark.spark-2 {
    animation-name: spark2;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

.diamond-spark.spark-3 {
    animation-name: spark3;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
    animation-duration: 1.5s;
}

@keyframes spark1 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-100px, -100px);
        opacity: 0;
    }
}

@keyframes spark2 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(100px, -100px);
        opacity: 0;
    }
}

@keyframes spark3 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-100px, 100px);
        opacity: 0;
    }
}

@keyframes spark4 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(100px, 100px);
        opacity: 0;
    }
}
/*Background design*/
.bg-designe {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bg-designe .dgn-file {
    position: absolute;
    width: 300px;
    aspect-ratio: 1/1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    

}

.bg-designe .dgn-1 {
    background-image: url(../img/hirakraja.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-2 {
    background-image: url(../img/gupi.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-3 {
    background-image: url(../img/montri.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-4 {
    background-image: url(../img/gupibagha.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-5 {
    background-image: url(../img/bagha.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-6 {
    background-image: url(../img/montri.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-7 {
    background-image: url(../img/gupibagha.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

.bg-designe .dgn-8 {
    background-image: url(../img/hirakraja.png);
    left: var(--pos-x);
    top: var(--pos-y);
    width: var(--size);
}

/*end*/

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #D39C74;
    max-width: 200px;
    max-height: 100px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #323232;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #fb5e2b;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fb5e2b;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #D39C74;
}

/*end*/

/*Video Banner*/
  .sec-video{
    position: relative;
    overflow: hidden;
    /* min-height: 100vh; */
    width: 100%;
    z-index: 1;
    margin-top: 130px;
    height: calc(100vh - 130px);
  }
  .sec-video:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 15%), rgb(0 0 0 / 6%), rgb(0 0 0 / 15%), rgb(0 0 0 / 70%));
    z-index: 1;
  }
  .video-cont{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100vh;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .video-cont video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mute-button{
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 2;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(0 0 0 / 10%);
    border: 1px solid rgb(255 255 255 / 50%);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(10px);
  }
  .mute-button:hover{
    transform: scale(1.05);
  }
  .fa-volume-off:after{
    content: "";
    width: 1px;
    height: 16px;
    background: #fff;
    box-shadow: 1px 1px 1px rgb(0 0 0 / 50%);
    position: absolute;
    left: 53%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .scrollicon{
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 2;
  }
  .scrollicon img{
    width: 60px;
    opacity: .8;
  }
  .bounce {
    animation: bounce 5s ease infinite;
  }
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0%);
    }
    40% {
      transform: translateY(-30%);
    }
    60% {
      transform: translateY(-15%);
    }
  }
/*end*/
/* Popup Base Styles */
.popup {
          
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow-y: auto;
}

.popup.active {
  display: flex;
}

.popup-content {
  

  color: #ffffff;
  width: 95%;
  height: 100%;
  padding: 40px;
  border-radius: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.4);
      overflow-y: auto;
    background-color: black;
}
.popup .overlay {
    
    background-position: top center;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
        z-index: -1;
    opacity: 0.98;
}
.popup::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent overlay */
  z-index: -1; /* keep behind popup content */
}
.popup-content h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: white;
      position: relative;
    z-index: 1;
    overflow: hidden;
}

.popup-content p {
  font-size: 1rem;
  color: #9e9b9b;
  text-align: left;
}
.popup-content .main-p {
    font-size: 1rem;
  color: #9e9b9b;
  text-align: center;
      position: relative;
    z-index: 1;
    overflow: hidden;
 
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: 0.3s ease;
}

.popup-close:hover {
  color: #000;
}
/*end*/
 /* custom menu */
            .ctm_menu {
                width: 100%;
            }

            .result {
            }

            .main_form {
                width: 100%;
            }

            .main_form * {
                transition: .3s ease-in-out;
            }

            .main_form .fsec {
                padding: 35px 15px 15px 15px;
                border: 1px solid rgb(255 255 255 / 18%);
                border-radius: 20px;
                margin: 30px 0 40px 0;
                position: relative;
            }

            .main_form .fsec:hover {
                border: 1px solid rgb(255 255 255 / 50%);
            }

            .main_form .fsec h3 {
                width: auto;
                color: #D39C74;
                font-family: "Prata", Sans-serif;
                font-size: 22px;
                margin: 0;
                position: absolute;
                top: -22px;
                left: 15px;
                background: black;
                padding: 5px 15px;
                z-index: 2;
                border: 1px solid rgb(255 255 255 / 18%);
                border-radius: 50px;
            }

            .main_form .fsec:hover h3 {
                background: #D39C74;
                color: var(--e-global-color-13dcbe5);
            }

            .main_form .fsec h4 {
                width: 100%;
                color: #D39C74;
                font-family: "Prata", Sans-serif;
                font-size: 15px;
                margin: 10px 0;
                text-align: left;
            }

            .main_form .fsec .opt_withinfo {
                margin-bottom: 25px;
            }

            .main_form .fsec .opt_withinfo:last-child {
                margin-bottom: 0px;
            }

            .main_form .fsec .opt_withinfo .opt_info {
                font-size: 12px;
                color: gray;
                line-height: 1.4;
                padding-left: 15px;
            }

            .main_form .wpcf7-checkbox label {
                font-size: 16px;
                font-family: "Rubik", Sans-serif;
                font-weight: 300;
            }

            .main_form .wpcf7-checkbox label input {
            }

            .main_form .wpcf7-not-valid-tip {
                display: none;
            }

            .invalid .main_form .wpcf7-not-valid-tip {
                display: block;
                padding: 0px 15px;
                font-size: 12px;
                font-style: normal;
                font-family: "Rubik", Sans-serif;
            }

            .main_form .flxclmview .wpcf7-checkbox {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                align-content: flex-start;
                justify-content: flex-start;
                align-items: stretch;
            }

            .main_form .flxclmview .wpcf7-list-item {
                width: calc(25% - 10px);
                margin: 5px;
                display: flex;
                justify-content: flex-start;
                align-items: center;
                flex-direction: row;
                flex-wrap: wrap;
            }

            .main_form .flxclmview .wpcf7-list-item label input[type="checkbox"] {
                display: none;
            }

            .main_form .flxclmview .wpcf7-list-item label {
                width: 100%;
                height: 100%;
            }

            .main_form .flxclmview .wpcf7-list-item label .wpcf7-list-item-label {
                width: 100%;
                padding: 5px 10px;
                background: rgb(255 255 255 / 4%);
                border-radius: 10px;
                height: 100%;
                display: flex;
                align-items: center;
                justify-content: flex-start;
                position: relative;
                padding-left: 35px;
            }

            .main_form .flxclmview .wpcf7-list-item label .wpcf7-list-item-label::after {
                content: "";
                position: absolute;
                left: 10px;
                top: 50%;
                transform: translatey(-50%);
                width: 18px;
                height: 18px;
                background: rgb(255 255 255 / 20%);
                border-radius: 5px;
            }

            .main_form .flxclmview .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
                background: #FFEB3B;
            }

            .main_form .flxclmview .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
                content: "\2714";
                position: absolute;
                left: 14px;
                top: 50%;
                transform: translatey(-60%);
                font-size: 18px;
                color: black;
                z-index: 1;
            }

            .main_form .flxclmview .wpcf7-list-item label input[type="checkbox"]:checked + .wpcf7-list-item-label {
                background-color: #D39C74;
                color: black;
            }

            .main_form .flxclmview .wpcf7-checkbox.singleline .wpcf7-list-item {
                width: 100%;
            }

            .main_form .cinfo {
                display: flex;
                flex-direction: row;
                flex-wrap: wrap;
                align-content: flex-start;
                justify-content: space-between;
                align-items: stretch;
            }

            .main_form .cinfo input, .main_form .cinfo textarea {
                width: 100%;
                padding: 12px 15px;
                background: rgb(255 255 255 / 4%);
                border-radius: 10px;
                border: none;
                height: unset;
                font-size: 16px;
                max-height: 80px;
                max-width: 100%;
                color: #fff;
                font-family: "Rubik", Sans-serif;
            }

            .main_form .cinfo input::-ms-input-placeholder {
                color: #fff;
            }

            .main_form .cinfo input::placeholder {
                color: #fff;
            }

            .main_form .cinfo br {
                display: none;
            }

            .main_form .cinfo .wpcf7-not-valid-tip {
                padding-left: 0;
                margin-bottom: 10px;
            }

            .main_form .cinfo > p {
                width: calc(50% - 20px);
                margin: 0;
            }

            .main_form .cinfo > p:nth-child(8) {
                width: 100%;
            }

            .main_form .cinfo > p label {
                margin-bottom: 20px;
            }

            .main_form .cinfo > p:last-child label {
                margin-bottom: 0px;
            }

            .ilabel {
                font-size: 16px;
                font-family: "Rubik", Sans-serif;
                font-weight: 300;
            }

            .main_form .fsec.submit {
                padding: 15px;
                position: relative;
            }

            .main_form .fsec.submit input[type="submit"] {
                width: 100%;
                border-radius: 10px;
                font-size: 20px;
                font-family: "Rubik", Sans-serif;
                color: #000;
            }

            .main_form .fsec.submit .wpcf7-spinner {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                z-index: 2;
                margin: 0;
            }

            .wpcf7 form .wpcf7-response-output {
                color: #fff;
                font-family: "Rubik", Sans-serif;
                border-radius: 15px;
                padding: 15px;
                border-width: 1px;
                font-style: normal;
                font-weight: 300;
                text-align: center;
            }

            @media (max-width: 1024px) {
                .main_form .flxclmview .wpcf7-list-item {
                    width: calc(50% - 20px);
                }
            }

            @media (max-width: 767px) {
                .main_form .flxclmview .wpcf7-list-item, .main_form .cinfo > p {
                    width: 100%;
                }

                .main_form .fsec .opt_withinfo .opt_info {
                    font-size: 9px;
                }

                .main_form .wpcf7-checkbox label {
                    font-size: 13px;
                }

                .main_form .fsec h3 {
                    font-size: 16px;
                    top: -18px px ;
                }
            }
/* Banner Slider */
.banner-section {
    margin-top: 0;
    height: calc(100vh - 130px);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.banner-section .swiper {
    width: 100%;
    height: 100%;
}

.banner-section .swiper-slide {
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-section .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(211, 156, 116, 0.3));
}

.banner-section .slide-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 600px;
    padding: 2rem;
}

.banner-section .slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.banner-section .slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.banner-section .cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #118fc0;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s both;
}

.banner-section .cta-btn:hover {
    background: #0076ba;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 156, 116, 0.4);
}

/*end*/

/* Section Styles */
/* Highlights Strip Section */
.highlights-strip {
    background: rgb(0 0 0 / 47%);
    padding: 120px 20px;
    background-image: url(../img/locaderbg-min.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
    min-height: 90vh;
    display: flex;
}
.highlights-strip .bg-designe{
    filter: invert(1) brightness(10);
}
.highlights-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    /* all items same height */
    gap: 20px;
}

.highlight-item {
    flex: 1;
    background: rgb(255 255 255 / 8%);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgb(255 255 255 / 23%);
}

.highlight-icon img {
    width: 80px;
    margin-bottom: 15px;
    aspect-ratio: 1;
    object-fit: contain;
    filter: invert(1) brightness(10);
}

.highlight-title {
    font-weight: bold;
    /* /* margin-bottom: 10px; */
    color: #ffffff;;
}

.highlight-text {
    font-size: 15px;
    color: rgb(255 255 255 / 74%);
}


.about {
    background: url(https://clubwelcome.co.in/wp-content/uploads/Shape1.png);
    background-position: top center;
    background-repeat: repeat;
    background-size: contain;
    background-color: rgb(255 255 255 / 95%);
    background-blend-mode: overlay;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #D39C74;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #D39C74;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 45px;
    /* padding: 2rem; */
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;

    margin: 10px 0 50px 0;
    overflow: hidden;
}

.event-left {
    padding: 2rem 2.4rem;
    max-width: 50%;
    
}

.slid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(87deg, rgb(0 0 0 / 50%), rgb(0 0 0 / 25%));
    transition: 0.3s;
}
.event-card:hover .slid-overlay {
    background: linear-gradient(87deg, rgb(0 0 0 / 30%), rgb(0 0 0 / 1%));
}

.event-card .event-right{
    position: relative;
    z-index: 1;
}

.event-card img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D39C74, #b8845c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 1.5rem; */
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #323232;
}

.event-card p {
    color: #666;
}

/* Why Choose Us */
.features-grid {
    display: flex;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 6px;
    /*padding: 40px;*/
    color: black;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

}
.features-grid .feature-item .swiper-slide{
    margin-bottom: 30px;
}
.features-grid .whSwiper{
    padding: 5px 0 30px 0;
}
.features-section {
    position: relative;
    padding: 70px 0;
}

.feature-item {
    border: 1px solid #c68e66;
    padding: 20px;
    background: #d29b74;
    transition: 0.3s;
    margin-top: 0px;
 border-radius: 30px;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #c68e66;
}

.feature-icon {
    background: white;
    /* Yellow Square */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 12px;
}

.feature-icon i {
    font-size: 28px;
    color: #fd9516;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.feature-item p {
    font-size: 15px;
    color: #ffffff;
    /* Light gray text */
    line-height: 1.6;
}

/* .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #D39C74;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
} */

/* menu-section */

.menu-section {
  position: relative;
  background: url('../img/5.png') no-repeat center center / cover;
  color: #fff;
  min-height: 100vh; /* FULL PAGE HEIGHT */
  display: flex;
  align-items: center; /* vertically center content */
  justify-content: flex-start;
  padding: 0 8%;
  overflow: hidden;
}

.menu-overlay {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 62%);
    z-index: 1;
}

.menu-container {
  position: relative;
  z-index: 2;
  width: 100%;
  
}

.menu-subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 10px;
}

.menu-title {
  font-size: 3rem;
  color: #ffffff; 
  margin: 0;
}
.menu-title h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ffffff;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.menu-tagline {
  font-size: 1rem;
  color: #ffffff;
  margin: 15px 0;
}

.menu-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 30px;
}

.menu-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #D39C74;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #d39c7459;
}

.btn-outline {
  border: 2px solid #D39C74;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #d39c7459;
  color: black;
}

/* Optional floating image top-left */
.menu-decor {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  z-index: 3;
}




/* Statistics */
.stats-section {

    background: url(https://clubwelcome.co.in/wp-content/uploads/Shape1.png);
    background-position: top center;
    background-repeat: repeat;
    background-size: contain;
    background-blend-mode: overlay;
    color: white;
}

.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #118fc0, #0060ca);
    z-index: -1;
    opacity: 0.95;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(211, 156, 116, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* call and action */
/* Background + Overlay */
.overlay-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 100px 20px;
    text-align: center;
    color: #FFD27F;
    /* golden tone */
}

.overlay-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 77%);
    /* dark overlay */
    z-index: 1;
}

.overlay-section .container {
    position: relative;
    z-index: 2;
}

/* Title Styling */
.overlay-section .section-title h2 {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.overlay-section .section-title p {
    color: #ddd;
    font-size: 1.1rem;
}

.overlay-section .section-title {
    text-align: center;
    margin-top: 157px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 2rem;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 0.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: #ffffff;
    color: #000;
}

.cta-btn.primary:hover {
    background: #c5926a;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn.secondary:hover {
    background: #c5926a;
    color: #000;
}

/* Map */
.map {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.map iframe {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Booking Form */
.booking-form {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #323232;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D39C74;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: #D39C74;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #b8845c;
    transform: translateY(-2px);
}

/* Footer*/
.footer {
    background: #00659f;
    color: #ffffff;
    padding: 3rem 0 0rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #D39C74;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section p,
.footer-section li {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #D39C74;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #D39C74;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b8845c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
} */
 /* Footer */
.footer {
  background: #D39C74;
  color: #000000;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 8px 0;
}

.footer-col ul li a {
  color: rgb(255 255 255 / 75%);
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-about p {
  margin-top: 10px;
  color: rgb(255 255 255 / 75%);
}

.footer-logo {
  margin-bottom: 15px;
}

/* Contact icons */
.footer-col p i {
  color: #fff;
  margin-right: 8px;
}

/* Social */
.footer-social {
  text-align: center;
  margin: 25px 0;
}
.footer-social a {
    display: inline-block;
    background: #00659f;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    transition: 0.3s;
}
.footer-social a:hover{
    background: #fff;
    transform: scale(1.1);
}
.footer-social a svg{
  color: #fff;
  margin: 0 0px;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover svg{
  color: #00659f;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: none;
  padding: 15px 0;
  color: rgb(255 255 255 / 75%);
  font-size: 14px;
  background: rgb(0 0 0 / 28%);
  width: 100%;
  max-width: unset;
}
.footer .footer-bottom p{
    margin: 0;
}
.footer-bottom a{
    color: inherit;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }
    .highlights-container{
        flex-wrap: wrap;
        flex-direction: row;
    }
    .highlight-item{
        width: calc(50% - 10px);
        flex: unset;
    }
    .event-card{
        flex-direction: column;
    }
    .event-left{
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-grid{
        justify-content: center;
        align-items: stretch;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .gallery-item{
        max-width: calc(33% - 1rem);
    }
    
    .footer-container{
        display: flex;
        gap: 20px;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-col ul li{
        display: inline-block;
        margin: 5px 10px;
    }
    .footer .footer-bottom{
        padding: 15px 0 15px 0;
    }
}