/* ------------------------------First Page Appearance Start------------------------------ */
 #gateOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
        /* background:#E9D5C0;    */
        background-image: url('https://grid-architects.ensdevops.com/wp-content/uploads/2025/11/Desktop.png');   
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
    }

    #gateOverlay.hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .gate-container {
        background: white;
        border-radius: 10px;
        padding: 50px 40px;
        max-width: 500px;
        width: 90%;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        text-align: center;
        animation: slideUp 0.5s ease;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .gate-container h2 {
        font-family: "Montserrat", Sans-serif;
        color: #583722;
        font-size: 32px;
        margin-top: 30px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .gate-container p {
        color: #724D32;
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    .gate-container label{
        color: #583722;
        font-size: 16px !important;
    }
    .gate-container button{
        background-color: #583722;
        border-radius: 5px !important;
    }

   .gate-overlay .form-wrapper {
        margin-top: 30px;
		text-align: start;
    }


    body.gate-active {
        overflow: hidden;
    } 

    .gate-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent !important;
    box-shadow:none;
    cursor:default;
    border: none;
}

/* ------------------------------First Page Appearance End------------------------------ */
 
 /* ------------------------------Header Start------------------------------ */
 
 #masthead {
	position: sticky !important;
	top:0;
} 

/* ------------------------------Header End------------------------------ */

/* ------------------------------VR Slider Start------------------------------ */
.slider_styling .n2-ss-slider-2{
border-radius:10px !important;
}

.slider_styling .n2-ss-slider-controls{
	flex-flow:row !important;
	justify-content:center;
	flex-wrap: wrap !important;
}
.slider_styling .n2-ss-slider-controls .n2-ss-control-bullet{
	flex-basis: 100%; 
    width: 100%;   
}

 .slider_styling .nextend-arrow-previous{	
	background-color:#774E32 !important;
	border-radius:50% !important;
margin-right:10px !important;
}

.slider_styling .nextend-arrow-previous:hover,
.slider_styling .nextend-arrow-next:hover {
  background-color: #7869A8 !important;
}

.slider_styling .nextend-arrow-next{
		background-color:#774E32 !important;
	border-radius:50% !important;
	margin-left:10px !important;
} 

.list_before_icon p:before {
  content: "✔";        
  color: green; 
  font-weight: bold;    
  margin-right: 6px;  
  display:inline-block
}

/* ------------------------------VR Slider End------------------------------ */


#ast-scroll-top{
    background-color:#E9D5C0;
    color:#000;
}
.vrimg img{
    margin: 0 auto;
}


.slick-dots li button:before {
    font-size: 12px !important;  /* default is 6px */
}
.slick-arrow {
    box-shadow: none;
}


.slick-dots li button{
    box-shadow: none !important;
}

/*---------------------------------------------arrow button animation css---------------*/
.slick-prev{
        left: -65px!important;
}
.slick-prev:before, 
.slick-next:before {
    content: "" !important;
}

/* Container for accessibility / clickable area */
.arrow-btn {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.icon-wrap{
  width: 56px;            
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid #583722; 
  border-radius: 50%;
  background: #fff;       
  overflow: hidden;
}
.icon-wrap .overlay{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform-origin: left center; 
  transform: scaleX(0);
  pointer-events: none;
  z-index: 1;                
  background: #583722;          
}
.icon-wrap .icon{
  font-size: 20px;
  z-index: 2;
  color: #583722;               
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: color 0.18s linear;
}
.icon-wrap .icon::before { display: inline-block; }
.arrow-btn:focus .icon-wrap {
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}
 
