* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

a:hover {
  color: #bc544d;         /* hover color */
  text-decoration: underline;
}

body {
  margin: 0;
  background: #f4f4f4;
}

/* HEADER */
.top-header {
  background: #781f19;
  color: #fff;
  padding: 5px 15px;
  display: flex;
  justify-content: space-between;
}

.title-section{
  background: #781f19;
  color: #fff;
  padding: 15px 15px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  margin-left: 130px;
  text-align: -webkit-center;
}

.contact-section {
  background: #781f19;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-section img {
  height: 68px;
}


.title-section h1 {
  margin: 0;
  font-size: 20px;
}

.title-section p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #ffffff;
}

.contact-section {
  font-size: 16px;
  text-align: right;
}
.contact-section i{
  padding-right:8px;
}
/* BACKGROUND IMAGE SECTION */
.background-section {
  background-image: url("../images/Picture2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 80vh; */       /* FIXED HEIGHT */
  overflow: hidden;
}

.background-overlay {
  height: 100%;
  overflow-y: auto;
}



/* LAYOUT */
.container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 110px;
  padding: 20px;
}

/* LEFT CONTENT */
.left-content {
  flex: 2;
  padding-left: 138px;
}
.timeline {
  border-left: 3px solid #781f19;
  padding-left: 25px;
  margin-left: 56px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -36px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #d6a64f;
  border-radius: 50%;
  border: 3px solid #781f19;
}

.timeline-date {
  font-weight: bold;
  color: #781f19;
  font-size: 14px;
}

.timeline-item p {
  margin: 6px 0 0;
  color: #333;
  font-size: 14px;
}



.admission-form {
  max-width: 324px;
  background: #ef8c0f;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
}

.admission-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: bold;
}

.input-group {
  /* display: flex; */
  /* align-items: center; */
  /* background: #fff; */
  /* border-radius: 6px; */
  /* padding: 0px; */
  /* margin-bottom: 12px; */
  flex-wrap: nowrap;
}

.input-group .icon {
  margin-right: 10px;
  color: #888;
}

.input-group input,
.input-group select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: #000;
}


.phone-row {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  color: #000;
}

.country-code {
  width: 100%;
  padding: 10px 12px 10px 36px; /* space for phone icon */
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  color: #000;
}


.phone-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
}

.country-select {
  position: relative;
  width: 220px;
}

.phone-group {
  display: flex;
  gap: 10px;

}

.phone-row option{
  color: #000;
}


.phone-row input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
  color: #000;
}

.note {
  font-size: 12px;
  margin-bottom: 12px;
}

.two-col {
  display: flex;
  gap: 8px;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-box {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: bold;
}

.captcha-text {
  color: #000;
}
.refresh {
  cursor: pointer;
  margin-left: 8px;
}

.captcha-row input {
  flex: 1;
  border-radius: 6px;
  border: none;
  padding: 10px;
  color: #000;
}

.checkbox {
  font-size: 12px;
  display: block;
  margin-bottom: 15px;
}

#registerBtn,
#loginBtn,
#otpSubmitBtn,
#resendVlinkBtn{
  width: 100%;
  text-transform: uppercase;
  background: #7a0019;
  border: none;
  padding: 8px;
  font-size: 16px;
  color: #fff;
  border-radius: -1px;
  cursor: pointer;
}

#registerBtn:hover,
#loginBtn:hover,
#otpSubmitBtn:hover,
#resendVlinkBtn:hover{
  background: #5a0013;
}

.form-footer {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}

.form-footer p {
  margin: 5px 0;
}

/* FOOTER STYLES */
.site-footer {
  background-color: #781f19;
  color: #fff;
  padding: 40px 20px 20px 20px;
  font-family: Arial, sans-serif;
}

.site-footer a {
  color: #d6a64f;
  text-decoration: none;
}

.site-footer a:hover {
  color: #bc544d;
  text-decoration: underline;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: #d6a64f;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: -30px;
  font-size: 14px;
  color: #aaa;
}

/* INSTRUCTION SCROLL BAR */
.instruction-bar {
  width: 100%;
  background: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 5px 0;
}

.instruction-text {
  display: inline-block;
  padding-left: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  animation: scrollText 18s linear infinite;
}

/* Scrolling animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Blinking link */
.blink-link {
  color: #d6a64f;
  font-weight: bold;
  text-decoration: underline;
  animation: blinkColor 1s infinite;
}

/* Blink color animation */
@keyframes blinkColor {
  0% { color: #781f19; }
  50% { color: #d6a64f; }
  100% { color: #781f19; }
}

/* FADE UP */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FADE DOWN */
.fade-down {
  opacity: 0;
  transform: translateY(-30px);
  animation: fadeDown 1s ease forwards;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional delay helpers */
.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

.form-custom {
    max-height:100%;
    
}
.dynamic_theme_block .panel-body{
    box-shadow:unset;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select{
    padding: 7px 11px 7px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #000 !important;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group .bs-dropdown-to-select span{
  color:#000;
}
.dynamic_theme_block .merge_field_div .bs-dropdown-to-select-group{padding:0px}
.form-group.label-floating.Mobile.country_dial_code.reg_mobile_div ,
.form-group.label-floating.Mobile.country_dial_code.reg_field_whatsapp_number_div{
    flex-grow: 1;
}
select option{
  color:#000;
}
.form-group.label-floating.reg_course_id_div.CourseId.field-select {
    width: 35%;
}

.form-group.label-floating.field-select.reg_specialization_id_div {
    width: 65%;
    display: inline-block;
}
ul#ul_dial_codeMobile li{color:#000}
ul#ul_dial_codeFieldWhatsappNumber li{color:#000}
.dynamic_theme_block .form-custom .agree-group .agree-condition{color:#fff;}
input#Agree {
    vertical-align: middle;
    margin-right: 7px;
}
.admission-form .fade{
    opacity:1 !important;
}
.admission-form .panel-heading{
    display:none
}
.form-group.agree-group.col-md-12.text-center.fpass {
    display: flex;
    justify-content: space-between;
}
button#forgotOtpBtn {
    background: #7a0019;
}
button#otpSubmitBtn {
    color: #fff !important;
}
button#forgotBtn {
    background: #7a0019 !important;
}