/* Navbar */
::-webkit-scrollbar {
  width: 10px;              /* width of scrollbar */
}

::-webkit-scrollbar-track {
  background: #111;         /* track background */
}

::-webkit-scrollbar-thumb {
  background-color: #999;   /* scrollbar color */
  border-radius: 10px;      /* rounded corners */
  border: 2px solid #111;   /* padding around scrollbar */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;   /* hover color */
}

/* For Firefox */
* {
  scrollbar-width: thin;            /* auto | thin | none */
  /* scrollbar-color: #802590 #111; */
}
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.4); /* black with 40% opacity */
    /* backdrop-filter: blur(6px); */
}

.navbar-brand {
    font-size: 36px;
    color: #a8a8a8 !important;
    font-weight: 300 !important;
}

/* Video Header */
/* Video Section */
.video-header {
    position: relative;
    width: 100%;
    /* height: 120vh; */
    overflow: auto;

}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}

/* Buttons */
.video-buttons {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
@media(max-width:768px)
{
    .video-buttons{
            left: 40%;
    transform: translateX(-30%);
    bottom: -1%;
    }
}

.animate-text {
    position: relative;
    overflow: hidden;
    height: 36px;
}

.animate-text span {
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Total cycle = 12s (3s per word) */
.animate-text .text1 { animation: fadeText 24s infinite 0s; }
.animate-text .text2 { animation: fadeText 24s infinite 3s; }
.animate-text .text3 { animation: fadeText 24s infinite 6s; }
.animate-text .text4 { animation: fadeText 24s infinite 9s; }
.animate-text .text5 { animation: fadeText 24s infinite 12s; }
.animate-text .text6 { animation: fadeText 24s infinite 15s; }
.animate-text .text7 { animation: fadeText 24s infinite 18s; }

@keyframes fadeText {
    0%, 20% { opacity: 0; }
    10% { opacity: 1; }
    15% { opacity: 1; }
    20%, 100% { opacity: 0; }
}

/* Form Styling */
.form-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 90%;
    max-width: 500px;
}
.custom-button{
    width: 6rem;
    font-size: 17px;
}

/* Optional overlay for darkening video */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 0;
}
.border-radius-none{
    border-radius: 0px !important;
}

.modal.show {
    background-color: rgba(0,0,0,0.92);
    /* background-color: black; */
}
.modal-header{
    height: 375px;

    font-size: 60px;
    display: block;
    justify-content: center;
    text-align: center;
}
@media(max-width:991px)
{
    .modal-header {
        height: 300px;
        font-size: 36px;
    }
}
.modal-content .form-control {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    border-radius: 0px;
}

.modal-content .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6); /* soft white */
}

.modal-content .form-control:focus {
    background: transparent !important;
    color: #fff !important;
    border-color: #999 !important;
    box-shadow: none;
}
.modal-title{
    /* font-size: 60px; */
    font-weight: 300;
}
.btn-theme{
    background-color: #DBBC57 !important;
    color: black !important;
    border-radius: 0px  !important;
}
.rotating-text {
  position: relative;
  /* display: inline-block; */
  height: 1.2em;
  line-height: 1em;
  /* overflow: hidden; */
  color: #fff !important;

}
.rotating-text-section{
    background:#212529;height: 140px;display: flex;align-items: center;
}
.rotating-text span {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  animation: fadeWords 9s ease-in-out infinite;
  font-size: 75px;
}

/* Stagger each word */
.rotating-text span:nth-child(1) { animation-delay: 0s; }
.rotating-text span:nth-child(2) { animation-delay: 3s; }
.rotating-text span:nth-child(3) { animation-delay: 6s; }




@keyframes fadeWords {
  0%   { opacity: 0; }
  10%  { opacity: 1; }   /* fade in */
  30%  { opacity: 1; }   /* stay visible */
  40%  { opacity: 0; }   /* fade out */
  100% { opacity: 0; }
}

/* For accessibility: stop animation if reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rotating-text span { animation: none; opacity: 0; }
  .rotating-text span:first-child { opacity: 1; }
}
.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: #222;
}

.social-circle:hover{
  opacity: 0.8;
  transform: scale(1.1);
}
.social-circle:hover i{
  transform: scale(1.3);
}

.footer-top {
    font-size: 115px;
    font-weight: 300 !important;
    letter-spacing: 7.2px;
}
.form-control{
    text-align: center !important;
}
.email-input{
    text-align: left !important;
}
.modal-video{
    margin-top:48px;;
}
.modal-envelop-img{
    position: absolute;
    top: 10%;
    right: 29%;
}
@media(min-width:768px) AND (max-width:991px)
{
   .modal-envelop-img{
    position: absolute;
    top: 15%;
    right: 25%;
    width: 8%;
}
}

@media(max-width:768px){
    .modal-envelop-img{
        position: absolute;
        top: 8%;
        right: 2%;
        width: 17%;
}

 
.footer-top{
font-size: 36px;
    font-weight: 300 !important;
    letter-spacing: normal;
}

.modal-video{
    margin-top:0px;;
}
}
@media(max-width:991px){
.modal-title{
    font-size: 23px;
    font-weight: 300;
}
.modal-dialog {
max-width: 100%;
}
}
.html5-main-video{
    width: 100% !important;
    height: 100vh !important;
    left: 0px !important;
}
.video-stream {
    width: 100% !important;
    height: 100vh !important;
    left: 0px !important;
}
.w-100{
    width: 100%;
} .h-100{
    height: 100%;
}
.carousel-control-prev {
left: -25%  !important;
}
.carousel-control-next {
right: -25%  !important;
}
@media (max-width:991px)
{
  .carousel-control-prev {
left: -4%  !important;
}
.carousel-control-next {
right: -4%  !important;
}
#successMessage{
    font-size: 17px;
}
}
@media(max-width:768px){
.captcha-title {
    font-size: 12px;
}
}
.captcha-option {
    font-size: 10px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 4px 8px;
    transition: all 0.3s ease;
    user-select: none;
}
.captcha-option:hover {
    border-color: #666;
}
.captcha-option.selected {
    /* border-color: green; */
    border: 0px;
    background-color: #e6ffe6;
}
.box-image{
    width: 350px;
}
@media(max-width:991px){
.box-image{
    width: 250px;
}
}
.carousel-item {
height: 380px !important;
}

