@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap');


body {
  font-family: "Wix Madefor Text", sans-serif;
  overflow-x: hidden !important;

  cursor: url('../img/cursor.png') 48 48, auto;
}
* {
    margin: 0;
    padding: 0;
}
.gold{color: #ebcc99;}
.cursor {
	/***** cursor position adjustment is in js file mousemove funtion****/
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-80%, -80%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 3px solid #B9883A;
    transition: all 0.5s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}

.expand {
    background: transparent;
    animation: moveCursor2 .5s forwards;
    border: 2px solid #000000;
}

@keyframes moveCursor1 {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(.8);
    }
}

@keyframes moveCursor2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2.5);
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.starter-template {
  padding: 3rem 1.5rem;
  text-align: center;
}

.square-video {
    position: relative;
    width: 100%; /* or a specific width */
    padding-top: 100%; /* Creates a square */
}

.square-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.menu-item {
	cursor: pointer;
	padding: 10px;
	border: 1px solid transparent; /* For visual feedback */
	color : #616d84;
}

.vidbdr{
	border: 3px solid #dca44a8f;
}

.menu-item:hover {
	/*background-color: #f0f0f0; 
	border-color: #ccc;   */
	color : #002b4d;
	font-size : 30px;
}

.cont-back{	 
	background-image: url('../img/contact-back.jpg');
	background-size: cover; /* Cover the entire area */
	background-position: center; /* Center the image */
	background-repeat: no-repeat; /* Do not repeat the image */
}
 

.wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 2rem;
}

.readmore {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  padding: 0.25rem 1.25rem 0.25rem 0.75rem;
  background: #2b2d42;
  text-align: center;
  opacity: 1;
  pointer-events: initial;
  color: #fff;
  border-top-right-radius: 0.25rem;
  border-top-left-radius: 0.25rem;
  transition: all ease-in-out .325s;
  transition-delay: 0.5s;
  
  &:after {
    content: "+";
    font-size: 0.8rem;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
  }
}
.item {
  position: relative;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  overflow: hidden;
  max-height: 120px;
  width: 250px;
  color: #000;
  background: linear-gradient(137.85deg,#f1f3f6 13.92%,#fff 84.77%);
  backdrop-filter: blur(4px);
  cursor: pointer;
  box-shadow: 5px 5px 20px rgba(150, 150, 150,0.35);
  transition: all ease-in .5s;
  
  &:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4rem;
    box-shadow: inset 0px -4rem 12px -1rem rgba(250, 250, 250, 0.9);
    pointer-events: none;
    transition: all ease-in .5s;
  }
  &:after {
    content: "inactive";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.8rem;
    color: #F71E35;
    background: #2b2d42;
    padding: 0.25rem 0.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  &.active {
    background: rgb(250,250,250);
    height: auto;
    max-height: 700px;
    cursor: initial;
    overflow-y: visible;
    transition: all ease-out .5s;
    
    &:before {
      box-shadow: none;
    }
    &:after {
      content: "active";
      color: #2BBBD8;
    }
    .readmore {
      opacity: 0;
      pointer-events: none;
      transition-delay: 0s;
    }
  }
}
 
 
/****** read more ***/ 
#content-def .card{
	border:none;
}
.card a{
	text-decoration : none;
	color : #000;	
}
#myCarousel {
    position: relative;
}

.socicon{width: 10%;}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

/* Move the controls outside of the box */
.carousel-control-prev {
    left: -60px; /* Adjust to move it outside the carousel */
}

.carousel-control-next {
    right: -60px; /* Adjust to move it outside the carousel */
}


@media (min-width: 576px){ 

}

@media (max-width: 768px) {
    .carousel-control-prev, .carousel-control-next {
        left: -30px;
        right: -30px;
    }
}

@media (min-width: 992px){ 
	
}

@media (min-width: 1200px){
	#valEx{width: 30%;}
	#valInn{width: 20%;}
}

@media (min-width: 1400px){
	
}





/******** menu **/
/* Dropdown menu should appear on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    visibility: visible;
}

/* Ensure the dropdown stays hidden by default */
.nav-item.dropdown .dropdown-menu {
    display: none;
    visibility: hidden;
    position: absolute;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Additional styles to make dropdown menus look better */
.dropdown-menu a {
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background-color: #f1f1f1;
}

.ser:hover{background-color: #ebcc99; padding-left: 5px;}

.card-img-top{width : 20%;}

input, textarea{
	background-color: #002b4e !important;
    border: none !important;
    border-bottom: 2px solid #ebcc99 !important;
	color: #fff !important;
	border-radius: 0px !important;
}

#submitButton{
	background-color: #ebcc99;
	font-weight: bold;
	border: none;
}
input::placeholder {
  color: #ffffff !important;  
}

textarea::placeholder {
  color: #ffffff !important;
}

#career h5{color: #ebcc99 !important;}
 
.upcoming-section h2 {
	font-size: 50px;
	text-align: center;
	width: 100%;
	float: left;
	margin-bottom: 30px;
}

.upcoming-project-col {
	width: 33.333%;
	float: left;
	height: 50vh;
	position: relative;
	overflow: hidden;
	background-position: center center;
}

.position-relative {
  position: relative;
}

.box-text_m {
  position: absolute;
  top: 50%; /* Vertical center */
  left: 50%; /* Horizontal center */
  transform: translate(-50%, -50%); /* Adjust position to truly center */
  color: white; /* Adjust text color as needed */
  font-size: 20px; /* Adjust font size as needed */
  font-weight: bold; /* Make text bold if desired */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Optional shadow for better visibility */
  z-index: 1; /* Ensure text appears above the image */
}


.andheri_m {
	background-image: url('../img/andheri.png'); 
	 
}
.ghatkopar_m {
	background-image: url('../img/ghatkopar.png');
}
.thane_m {
	background-image: url('../img/thane.png');
}

.andheri {
	background-image: url('../img/andheri.png');
}
.ghatkopar {
	background-image: url('../img/ghatkopar.png');
}
.thane {
	background-image: url('../img/thane.png');
}
 
.thane-overlay, .andheri-overlay, .ghatkopar-overlay {
	position: absolute; /* Position the overlay inside the container */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%; /* Make sure the overlay covers the full height */
	background-size: cover; /* Ensure the overlay image covers the full area */
	background-position: center center;
}

.thane-overlay {
	background-image: url('../img/t.png');
}

.andheri-overlay {
	background-image: url('../img/a.png');
}

.ghatkopar-overlay {
	background-image: url('../img/g.png');
}

.box-black {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.3);
	transition: 0.5s ease all;
}

.box-text {
	text-align: center;
	position: absolute;
	top: 46%;
	z-index: 1;
	width: 100%;
	font-family: 'Cormorant', serif;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 30px;
	color: #fff;
	text-shadow: 2px 2px 0px #000;
	transition: 0.5s ease all;
	opacity: 0;
}

.box-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-repeat: no-repeat;
	background-position: center center;
	transition: 0.5s ease all;
}
.upcoming-project-col:hover .box-black {
	background: rgba(0,0,0,0.1);
}

.upcoming-project-col:hover .box-overlay {
	transform: scale(10);
	opacity: 0;
}

.upcoming-project-col:hover .box-text {
	opacity: 1;
	transform: scale(1.1);
} 

