
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-section .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(16, 20, 42, 0.78) 0%,
    rgba(16, 20, 42, 0.2) 28%,
    rgba(7, 10, 24, 0.5) 100%
  );
}

.hero-section .hero-content {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  padding: 180px 32px 90px;
}

.hero-section .hero-title {
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.hero-section .breadcrumb {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

.hero-section .breadcrumb a,
.hero-section .breadcrumb span {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }

  .hero-section .hero-content {
    padding: 170px 20px 70px;
  }
}

@media (max-width: 767px) {
  .hero-section .hero-title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .hero-section .breadcrumb {
    font-size: 14px;
  }
}



.site-header {
  position: relative;
  z-index: 5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
  transition: all 0.35s ease;
  background: transparent;
}

/*.navbar.sticky-active {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(10, 14, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}*/

.navbar.sticky-active .logo img {
  max-height: 60px;
}

.logo img {
  transition: all 0.35s ease;
}


.top-bar {
  width: 100%;
  background: #101426;
  color: #fff;
  padding: 3px 0!important;
  font-size: 15px;
  line-height: 1.2;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.top-bar .container1 {
  max-width: 1500px;
  margin: 0 auto;
}

.top-bar-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.top-bar a {
  color: #FFFFFFB8;
  text-decoration: none;
}

.top-bar a:hover{
  color: #fff !important;
  text-decoration: none;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  white-space: nowrap;
}

.top-bar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.top-bar-contact i {
  color: #e2e2e2;
  font-size: 14px;
}

.top-bar-title {
  text-align: center;
  font-weight: 800;
  white-space: nowrap;
}

.top-bar-title a {
  color: #ffffff;
}

.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.top-bar-social a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s ease;
}

.top-bar-social a:hover {
  color: #e2e2e2;
}

.blink-text {
  animation: blinkText 1.3s infinite;
}

@keyframes blinkText {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

@media (max-width: 991px) {
  .top-bar-row {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .top-bar-contact,
  .top-bar-social {
    justify-content: center;
  }

  .top-bar-title {
    white-space: normal;
    line-height: 1.4;
  }
}

@media (max-width: 575px) {
  .top-bar {
    padding: 15px 10px !important;
    font-size: 14px;
  }

  .top-bar-contact {
    gap: 7px;
  }

  .top-bar-social a {
    width: 28px;
    height: 28px;
  }
}






.blink-text a {
    color: #FFF !important;
}




.blink-text {
    animation: glowText 4s ease-in-out infinite;
}

@keyframes glowText {
    0%, 100% {
        text-shadow: 0 0 0px rgba(255, 0, 0, 0);
    }
    50% {
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.8);
    }
}









/* Attractive Desktop Dropdown */
.site-header .has-dropdown {
  position: relative;
}

.site-header .dropdown-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  min-width: 340px;
  padding: 14px;
  list-style: none;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 28px 70px rgba(20, 14, 55, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 18px) scale(0.96);
  transition: all 0.32s ease;
  z-index: 99;
  overflow: hidden;
}

.site-header .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.site-header .dropdown-menu li {
  margin: 0;
}

.site-header .dropdown-menu li + li {
  margin-top: 6px;
}

.site-header .dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 16px;
  border-radius: 14px;
  color: #2b2354;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  transition: all 0.25s ease;
}

.site-header .dropdown-menu a::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #734bdf, #b36bff);
  box-shadow: 0 0 0 4px rgba(115, 75, 223, 0.12);
  flex-shrink: 0;
}

.site-header .dropdown-menu a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #734bdf, #9b6cff);
  transform: translateX(4px);
  box-shadow: 0 12px 26px rgba(115, 75, 223, 0.28);
}

.site-header .dropdown-menu a:hover::before {
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}

.site-header .has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}

.site-header .has-dropdown:hover .arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}


.blink-button {
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.4;
    }
}

.custombtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border: none;
  border-radius: 12px;
  background: #2a3179;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 12px;
  margin-bottom:20px;
} 
label.error {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	font-size:12px;
	padding-left:3px;
	color: red;
	display: inline-block;
	}
	
.error {
	border: 1px solid #F00 !important;
}
.error_show {
	padding:10px !important;
	background:#f8d7da;
	color:#842029;
	margin-bottom:10px !important;
	border-radius:5px;
	font-size:20px !important;
}
.fullwidth .grid {
	display:block;
}
.success-error {
	padding:10px !important;
	background:#d1e7dd;
	color:#0f5132;
	font-size:20px !important;
	border-radius:5px;
	margin-bottom:10px !important;
}
.btnmargin {
	margin-bottom:20px !important;
}
.covertbtn {
	margin-top:20px !important;
	max-width:200px;
}
.listnames {
	display:flex;
	gap:10px;
	margin-bottom:10px;
	border:1px solid #fafafa;
	color:#000;
	padding:10px !important;
}
.clearboth {
	width:100%;
	clear:both;
}
html, body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.site-shell {
  min-height: 100vh;
}
.site-main {
  overflow: visible;
}
.btnwidth {
	width:30%;
	margin:0 auto;
	text-align:center;
}

@media (max-width: 1279px) {
	
	.btnwidth {
	width:50%;
}

}

@media (max-width: 767px) {
	
	.btnwidth {
	width:90%;
}

}

