@media (min-width: 992px) {
  /* On desktop, the logo starts at 60% when the page loads. */
  #logo {
	width: 60%;
  }

  /* On desktop, the logo becomes 40% when the user scrolls. */
  #logo.scrolled {
	width: 40%;
  }
}


.hero-section .container {
  position: relative;
  z-index: 10;
}

#hero-1 {
  position: relative;
  background-image: url(https://dsathemes.com/html/mobicom/files/images/hero-1.jpg);
  background-position: center bottom; 
  padding-top: 180px;
  padding-bottom: 100px;  
}

.bg-fixed {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;   
  background-size: cover;
}


.full-screen {
  height: calc(var(--vh, 1vh) * 100);
}
@media (min-width: 992px) {
	.g-font-size-50--lg {
		font-size: 3.57143rem !important; 
	}	
	.g-width-55x--lg {
		width: 55%;
	}
}

/*with video*/
/* Default: Desktop Style (video background) */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  /*text-align:-webkit-center;*/
}

/* .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: auto;
  height: auto;
  z-index: 0;
} */

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);  
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-left: 5%;
}

@media (min-width:768px) and (max-width:991px){	
	.hero-content {
		position: relative;
		margin-left: 10%!important;
		padding: 10px;
		height: auto;
		color: black; /* Optional: make text dark if background is white */
		text-align: center;
	  }
}
/* === Mobile Styles === */
@media (max-width: 768px) {
   .full-screen {
     height: 600px;    
   }   
  .hero-section {
    height: auto; /* Let section grow naturally */
    display: flex;
    flex-direction: column;
  }

  .hero-video {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: auto;
    min-width: unset;
    min-height: unset;
    object-fit: cover;
    z-index: 0;
  }

  .video-overlay {
    display: none; /* Optional: hide overlay on mobile */
  }

  .hero-content {
    position: relative;
    margin-left: 0%;
    padding: 0px;
    height: auto;
    color: black; /* Optional: make text dark if background is white */
	text-align: center;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
/*with video*/

.hero-button {
  background: linear-gradient(to right, #A1CB48 0%, #21A5AC 100%) !important;
  color: #fff;
  border-radius:15px;
  font-size:16px;
}

.hero-button:hover {
  background: linear-gradient(to right, #21A5AC  0%, #A1CB48 100%) !important;
  color: #fff;
  text-decoration:none;
}

.pagetagline{
	color:white;
	font-size:60px;
	font-weight:700;
	max-width: 600px;
}

.pagetaglineinfo{
	color:white;
	font-size:24px;
	font-weight:600;
	max-width: 600px;
}

@media (max-width: 768px) {
	.pagetagline{
		color:black;
		font-size: 40px !important;
		font-weight:700;
		max-width: 600px;
	}

	.pagetaglineinfo{
		color:black;
		font-size: 19px !important;
		font-weight:600;
		max-width: 600px;
	}
}	

/* Scroll state - override to black */
.custom-headermenucolor-scroll {
  background-color: #ffffff !important;
  color: black !important;
  box-shadow: 0px 7px 20px rgba(51, 51, 51, 0.1);
}

.g-top-customregister {
    top: 6rem;
}

@media (min-width: 768px) {
    .g-min-height-custombox--md {
        min-height: 390px;
    }	
	.g-min-height-subtitle{
		min-height: 65px;
	}	
}

@media (min-width:768px) and (max-width:991px){	
	.g-rounded-30--md{
		border-radius: 30px !important;
	}
}

.custom-boxshadow {
    box-shadow: 0px 7px 20px rgba(51, 51, 51, 0.1);
}

.g-rounded-30--md {
    border-radius: 30px !important;
}

@media (max-width: 768px) {
	.g-rounded-30--md{
		border-radius: 0px !important;
	}
	
	.g-top-customregister {
		top: 2rem;
	}
}

.center-vertical{
	position: absolute;
    width: 100% !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.back-btn {
    width: 45px;
    height: 45px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 2px solid #ddd;
    transition: 0.25s ease;
	position: relative;
    z-index: 9999;
}

.back-btn:hover {
    background: #e5e5e5;
    transform: scale(1.08);
}

.arrow {
    border: solid #333;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 7px;
    transform: rotate(135deg);
}

.back-btn-wrapper {
    display: flex;
    justify-content: flex-end;
}
