/* inter font-family */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* import files */
@import url("../css/auth.css");
@import url("../css/header_footer.css");
/* ── OMNES FONT FAMILY ── */

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Thin Italic.woff') format('woff');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Hairline.woff') format('woff');
  font-weight: 50;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Hairline Italic.woff') format('woff');
  font-weight: 50;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes ExtraLight Italic.woff') format('woff');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Medium Italic.woff') format('woff');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes SemiBold Italic.woff') format('woff');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Omnes';
  src: url('../fonts/Omnes Black Italic.woff') format('woff');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Omnes', sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #424242;
  overflow-x: hidden;
}

a:hover {
  color: inherit;
}

a,
a:hover {
  text-decoration: none;
  -webkit-transition: ease-in-out 0.5s;
  -moz-transition: ease-in-out 0.5s;
  -o-transition: ease-in-out 0.5s;
  transition: ease-in-out 0.5s;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}





/* ── CURSOR ── */
/* .cursor {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  will-change: transform;
}
.cursor.expand { width: 50px; height: 50px; } */

/* ── PAGE INTRO ── */
.page-intro {
  padding: 130px 60px 50px;
  background: #0a0a0a;
}

.page-intro h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
}

.page-intro p {
  margin-top: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ── GALLERY ── */
.gallery {
  display: flex;
  flex-direction: column;
}

/* Each panel is a viewport-tall image block */
.panel {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  display: block;
}

.panel:nth-child(3n+1) {
  height: 72vh;
}

.panel:nth-child(3n+2) {
  height: 58vh;
}

.panel:nth-child(3n+3) {
  height: 82vh;
}

/* Background image layer — static, full brightness always */
.panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Hover — moderate darkening like reference site */
.panel:hover .panel-bg {
  opacity: 0.65;
}

/* Subtle gradient only for text legibility at bottom */
.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55) 0%,
      transparent 40%);
  pointer-events: none;
}

/* Content box pinned to bottom */
.panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* Title clip reveal */
.panel-title-wrap {
  overflow: hidden;
}

.panel-title-wrap h2 {
  font-weight: 500;
  font-size: 22.3px;
  line-height: 31px;
  letter-spacing: 2.4px;
  /* 4 */
  color: #FFFFFF;
  /* starts below clip */
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease;
  transition-delay: 0s;
  margin-bottom: 0;
}

.panel.is-active .panel-title-wrap h2 {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.1s;
}

/* Hide title when past */
.panel.is-past .panel-title-wrap h2 {
  transform: translateY(-30%);
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 0.5s;
}

/* Meta: category + arrow */
.panel-meta {
  text-align: right;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: 0s;
}

.panel.is-active .panel-meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.22s;
}

.panel.is-past .panel-meta {
  opacity: 0;
  transform: translateY(-10px);
  transition-delay: 0s;
  transition-duration: 0.4s;
}

.panel-meta .cat {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.panel-meta .arrow {
  font-size: 1rem;
  color: #fff;
  display: inline-block;
  transition: transform 0.3s ease;
}

.panel.is-active:hover .panel-meta .arrow {
  transform: translateX(7px);
}

/* Index number — top-right corner */
.panel-index {
  position: absolute;
  top: 28px;
  right: 58px;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.6s ease 0.35s;
}

.panel.is-active .panel-index {
  opacity: 1;
}

.panel.is-past .panel-index {
  opacity: 0;
  transition-delay: 0s;
}

/* Thin divider between panels */
.panel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 58px;
  right: 58px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* ── SCROLL PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 300;
  width: 0%;
  transition: width 0.1s linear;
}

.panel-counter .current {
  color: #fff;
  font-size: 0.75rem;
}

/* -----Professional Detail [ START ] ----- */
.detail-info {
  padding: 60px 100px;
}

.inr-bnr {
    width: 100%;
    height: 441px;
    object-fit: cover;
      border: 1px solid #0000001f;
    border-radius: 6px;
}
.inr-bnr img , .inr-bnr video{
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.detail-info h1 {

  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.96px;
  color: #000000;
  margin: 30px auto;
  text-align: center;

}

.grid-2 {
  display: grid;
  margin-bottom: 5px;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.detail-img {

    aspect-ratio: 16 / 24;
    overflow: hidden;

}
 
.detail-img img {

    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.video-wrapper {
    grid-column: span 2;
    /* margin: 20px 0; */
}

.video-wrapper iframe, .video-wrapper video {
    width: 100%;
    aspect-ratio: 16 / 9;
       object-fit: cover;
    /* border-radius: 6px; */
    display: block;
    margin: 5px 0;
}

.description-info {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}
 
.fancybox__thumbs {
  display: none;
}

.fancybox__container a:hover {
  color: #fff;
}

/* ----Professional Detail [ END ] ---- */

/* ----------------Home [ START ] ------------*/
.no-scroll,
.no-scroll body,
.no-scroll body main,
.no-scroll body main section,
.no-scroll body main section .container-fluid,
.no-scroll body main section .container-fluid .row,
.no-scroll body main section .container-fluid .row .col-lg-6,
.no-scroll body main section .container-fluid .row .col-lg-6 .owl-carousel,
.no-scroll body main section .container-fluid .row .col-lg-6 .owl-carousel .item {
  height: 100%;
  overflow: hidden;
}
.Home_sec  .custom_col {
  height: 100vh;

}
.owl-home-slider .item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.owl-home-slider .owl-stage-outer,
.owl-home-slider .owl-stage,
.owl-home-slider .owl-item {
  height: 100%;
}

.side-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative;
  padding: 60px 15px;
  height: 100%;
}

.discover-btn {
  padding: 12px 23px;
  border-radius: 90px;
  border: 2px solid #333333;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 2.24px;
  color: #000000;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.discover-btn:hover {
  background: #000;
  color: #fff;
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* ----------------Home [ END ] --------------*/

/* ----------------ABOUT  [ START ] --------------*/
.about-grid {
  gap: 30px;
  align-items: center;}

.about-details p {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
  /*font-family: "Inter", sans-serif;*/

}

.inr-bnr {
  position: relative;
  overflow: hidden;
}
.contact_bnr{
    background-repeat: no-repeat;
    height: 441px;
    display: flex;
    align-items: end;
    padding-bottom: 40px;
    text-align: center;
    justify-content: center;
    background-size: cover;
}



.inr-bnr-title {
    font-weight: 500;
    font-size: 32px;
     text-align: center; 
    color: #FFFFFF;
    line-height: 1.6;
    background-size: cover;
    padding: 0 20px;
}

/* ----------------ABOUT  [ END ] --------------*/

/* ----------------CONTACT  [ START ] --------------*/
.contact_info .about-grid{
  align-items: flex-start;
}
.c-title {
  font-weight: 500;
  font-size: 32px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
}

.c-text {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
  /*font-family: "Inter", sans-serif;*/

}

.form-group {
  margin-bottom: 10px;
}

.form-control {
  border: 1px solid #A9A9A9;
  height: 42px;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.form-control:focus {
  border-color: #333333;
  box-shadow: none;
}

.form-label {
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  /*font-family: "Inter", sans-serif;*/
  margin-bottom: 4px;
}

textarea.form-control {
  height: auto;
  resize: vertical;
}

.submit_btn {
  border-radius: 0;
  border: 2px solid #181818;
  background: #000000;
  color: #fff;
  padding: 16px 36px;
  margin-top: 20px;
  text-transform: uppercase;

}

.submit_btn:hover {
  background: transparent;
  color: #000000;
  border: 2px solid #181818;
}
.form-text{
font-weight:400;
font-size: 12px;
color:#999999;

}
.Name_form-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.Name_form-group .form-label{
font-size: 12px;
}
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
   
}
/* ----------------CONTACT  [ END ] --------------*/


/* ----------------ANIMATION  [ START ] --------------*/

.stack-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.stack-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  -webkit-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  -ms-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
}

.stack-slider img.active {
  opacity: 1;
  z-index: 2;
}

/* start hidden */
main {
   opacity: 0;
  transition: opacity 0.8s ease;
  -webkit-transition: opacity 0.8s ease;
  -moz-transition: opacity 0.8s ease;
  -ms-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
}

/* after delay → show instantly */
main.show {
  opacity: 1;
  z-index: 2;
}
/* ----------------ANIMATION  [ END ] --------------*/

/* ----------------Fancybox  --------------*/


button.fancybox-button.fancybox-button--thumbs {
    display: none !important;
}
button.fancybox-button.fancybox-button--play {
    display: none !important;
}
button.fancybox-button.fancybox-button--zoom {
    display: none !important ;
}


.fancybox-button {
    margin-right: 10px;
}


