@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&display=swap');
*{
    margin:0;
    padding:0;
    font-family: 
    "General Sans",
    "General Sans Placeholder",
    sans-serif;
    /* font-family: "Afacad Flux", sans-serif; */
    outline:none !important;
}

/* Card container */
.card-clean {
  position: relative;
  background: #1b1b1d;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
  height: 100%;
  overflow: visible;
  z-index: 1;
}

/* Card hover effect */
.card-clean:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 149, 255, 0.3);
  box-shadow: 0 20px 50px rgba(80, 170, 255, 0.1);
}

/* 🔥 Blue number popping out of the corner */
.card-number-plain {
  position: absolute;
  top: -40px;
  left: -10px;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}

/* Card title */
.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
  margin-top: 1.8rem;
  position: relative;
  z-index: 2;
}

/* Card paragraph */
.card-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}


.green {
  color: rgb(102, 236, 102);
}



:root{
  --primary-color:#FAAB21;
  --primary-color-hover:#e9980c;
}
.dropdown-menu {
  background-color: #000;
}

.hvr-underline-from-center:before {
  background: var(--primary-color) !important;
}

.dropdown-menu .dropdown-item {
  padding: 15px 15px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #000;
  color: var(--primary-color); 
}

:root {
  font-family: sans-serif;
}

.timeline-section {
  display: flex;
  justify-content: center;
  margin: 50px;

}

.timeline-section ol {
  margin: 0;
  list-style: none;
  padding: 0;
  border-radius: 10px;
  --unit: 1rem;
  width: 100%;
  max-width: 1200px; /* You can adjust the max width as needed */
}

.timeline-section h1 {
  text-align: center;
}

.timeline-section p {
  line-height: 1.3;
}

.timeline-section .event-date {
  margin: 0 0 0.25rem;
  font-weight: bold;
}

.timeline-section .event-description {
  margin: 0;
}

.timeline-section li {
  --height: 9rem;
  border-radius: 10px;
  border: 1px solid #faab21 !important;
  position: relative;
  display: block;
  background-color: hsl(calc(var(--hue) * 360 / 20), 90%, 65%);
  border-color: hsl(calc(var(--hue) * 360 / 20), 90%, 65%);
  padding: 1rem;
  margin: 2rem 0;
  text-align: center; /* Align text in the center of each li */
}

.timeline-section li::before {
  content: "";
  background-color: #faab21;
  position: absolute;
  display: block;
  width: var(--unit);
  height: var(--unit);
  top: 100%;
  left: calc(50% - (var(--unit) / 2));
}

.timeline-section li::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100% + var(--unit));
  left: calc(50% - (var(--unit)));
  border: var(--unit) solid transparent;
  border-top-color: inherit;
}

.timeline-section li:last-child::before,
.timeline-section li:last-child::after {
  content: none;
}

@media (min-width: 550px) and (max-width: 899px) {

 

  .timeline-section li {
    margin: 2rem;
    width: calc(50% - 4rem);
    float: left;
    min-height: var(--height);
    text-align: center; /* Ensure text inside li is centered */
  }

  .timeline-section li:nth-child(4n+3),
  .timeline-section li:nth-child(4n+4) {
    float: right;
  }

  .timeline-section li:nth-child(4n+1)::before {
    top: 50%;
    left: 100%;
  }

  .timeline-section li:nth-child(4n+1)::after {
    top: 44%;
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }

  .timeline-section li:nth-child(4n+3)::before {
    top: 50%;
    left: -1rem;
  }

  .timeline-section li:nth-child(4n+3)::after {
    top: 44%;
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .timeline-section li {
    margin: 2rem;
    width: calc(33.33% - 4rem);
    float: left;
    min-height: 9rem;
    text-align: center;
  }

  .timeline-section li:nth-child(6n+4),
  .timeline-section li:nth-child(6n+5),
  .timeline-section li:nth-child(6n+6) {
    float: right;
  }

  .timeline-section li:nth-child(6n+1)::before,
  .timeline-section li:nth-child(6n+2)::before {
    top: 50%;
    left: 100%;
  }

  .timeline-section li:nth-child(6n+1)::after,
  .timeline-section li:nth-child(6n+2)::after {
    top: 44%;
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }

  .timeline-section li:nth-child(6n+4)::before,
  .timeline-section li:nth-child(6n+5)::before {
    top: 50%;
    left: -1rem;
  }

  .timeline-section li:nth-child(6n+4)::after,
  .timeline-section li:nth-child(6n+5)::after {
    top: 44%;
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}

@media (min-width: 1200px) {

  .package-height {
    height: 870px;
  }

  .apply-button {
    position: absolute;
    bottom: 20px;
  }

  .timeline-section ol {
    max-width: 1600px;
    margin: 0 auto;
  }

  .timeline-section li {
    margin: 2rem;
    width: calc(25% - 4rem);
    float: left;
    min-height: 9rem;
    text-align: center;
  }

  .timeline-section li:nth-child(8n+5),
  .timeline-section li:nth-child(8n+6),
  .timeline-section li:nth-child(8n+7),
  .timeline-section li:nth-child(8n+8) {
    float: right;
  }

  .timeline-section li:nth-child(8n+1)::before,
  .timeline-section li:nth-child(8n+2)::before,
  .timeline-section li:nth-child(8n+3)::before {
    top: 50%;
    left: 100%;
  }

  .timeline-section li:nth-child(8n+1)::after,
  .timeline-section li:nth-child(8n+2)::after,
  .timeline-section li:nth-child(8n+3)::after {
    top: 44%;
    left: calc(100% + (var(--unit)));
    border: var(--unit) solid transparent;
    border-left-color: inherit;
  }

  .timeline-section li:nth-child(8n+5)::before,
  .timeline-section li:nth-child(8n+6)::before,
  .timeline-section li:nth-child(8n+7)::before {
    top: 50%;
    left: -1rem;
  }

  .timeline-section li:nth-child(8n+5)::after,
  .timeline-section li:nth-child(8n+6)::after,
  .timeline-section li:nth-child(8n+7)::after {
    top: 44%;
    left: -3rem;
    border: var(--unit) solid transparent;
    border-right-color: inherit;
  }
}





.overlay-container {
  position: relative; /* Required for overlay positioning */
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% black */
  z-index: 9999; /* Ensures overlay appears above the card content */
  pointer-events: none; /* Allows clicks to pass through */
}




/* Hide scrollbar for modal body */
.modal-body {
  overflow-y: auto; /* Enable vertical scrolling */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.modal-body::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari, Edge */
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-family: "Afacad Flux", sans-serif;
}
body, html {
  line-height: 100%;
  color: #FFF;
  background: #050E15;
  font-size: 16px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, center {
  display: block;
}
nav ul, ul {
  list-style-type: none;
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
button, .btn {
  vertical-align: middle;
  transition: all 0.4s;
  overflow: hidden;
}
.text-primary-ew{
  color:var(--primary-color);
}
.border-primary-ew{
  border: 1px solid var(--primary-color);
}
.bg-none{
  background: none !important;
}
.bg-primary-ew{
  background-color: var(--primary-color) !important;
}
.bg-secondary-ew{
  background-color: #3d4b6059;
}
.hvr-rectangle-out:before{
  background: var(--primary-color-hover);
}
.btn-primary-ew{
  background: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #38280c !important;
  transition: all 0.4s;
}
.btn-primary-ew:hover, .btn-primary-ew:active, .btn-primary-ew:focus{
  background: var(--primary-color-hover) !important;
  border-color: var(--primary-color-hover) !important;
  color: #38280c !important;
  transform: scale(1.07) !important;
  transition: all 0.4s;
}
.btn-outline-primary-ew{
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  transition: all 0.4s;
}
.btn-outline-primary-ew:hover, .btn-outline-primary-ew:active, .btn-outline-primary-ew:focus{
  border-color: var(--primary-color-hover) !important;
  color: #38280c !important;
  background: var(--primary-color-hover) !important;
  transform: scale(1.07) !important;
  transition: all 0.4s;
}
.form-control, .form-select{border-radius: 50px;padding-left: 18px;}input:focus, select:focus, textarea:focus{border:1px solid var(--primary-color) !important;box-shadow:none !important;}.accordion-item button, .accordion-item, .bg-dark{background:#131B23 !important;}.shadow-ew{box-shadow: 0 2px 70px 1px #ffffff24;}.border-top{border-top:1px solid #252525 !important;}.fs-10{font-size:10px;}.fs-11{font-size:11px;}.fs-12{font-size:12px;}.fs-13{font-size:13px;}.fs-14{font-size:14px;}.fs-15{font-size:15px;}.transition{transition: all 0.4s;}.lh-125{line-height: 125%;}.lh-150{line-height: 150%;}.lh-175{line-height: 175%;}.lh-200{line-height: 200%;}

/***********************Default CSS Ends Here********************/

.navbar-toggler{
  color: #FFF;
}
.navbar-toggler:hover, .navbar-toggler:active, .navbar-toggler:focus{
  color:var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link{
  padding: 25px 10px;
  position: relative;
  color: #FFF;
}
.navbar-expand-lg .navbar-nav .nav-link.hvr-underline-from-center:before{
  background: var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link.active{
  color:var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link.active:after{
  content:'';
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.home{
  margin-top: 65px;
}
.video-home{
  border:12px solid #11324b;
}
.main-icon{
  width: 80px;
  height: 80px;
  line-height: 77px;
}
.lines:before {
  content: '';
  position: absolute;
  left: 15px;
  top: 75px;
  bottom: 10px;
  width: 2px;
  height: var(--line-height, 0);
  background-color: orange;
  transition: height .4s ease-out;
}
.rounded-circle{
  backdrop-filter: blur(30px);
}
.no-lines.lines:before{
  display: none;
}
.mt-n1{
  margin-top: -100px;
}
.shining-shadow-box::before {
  content: '';
  position: absolute;
  top: -25px;
  left: -40px;
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.7); 
  filter: blur(20px);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  animation: shadow-move-horizontal .8s linear infinite;
}
.learn:before, .students-interview:before{
  content: '';
  display: none;
  position: absolute;
  left: 0;
  top:0;
  width: 800px;
  height: 100%;
  opacity: 0.05;
  background:url(../images/bg1.jpg) no-repeat left top;
  background-attachment: fixed;
}
.learn:after, .students-interview:after{
  content: '';
  display: none;
  position: absolute;
  right: 0;
  top:0;
  width: 659px;
  height: 100%;
  opacity: 0.05;
  background:url(../images/bg2.jpg) no-repeat right top;
  background-attachment: fixed;
}

/* .learn:before, .students-interview:before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top:0;
  width: 100vw;
  height: 100%;
  opacity: 0.05;
  background:url(../images/lambo-mc.jpg) no-repeat left top;
  background-attachment: fixed;
}
.learn:after, .students-interview:after{
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top:0;
  width: 425px;
  height: 100%;
  opacity: 0.05;
  background:url(../images/lambo-mc.jpg) no-repeat right top;
  background-attachment: fixed;
} */

.contain {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}


/* *,
*:after,
*:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: default;
}

html {
    width: 100%;
    height: auto;
}

body {
  font-family: 'Montserrat', sans-serif!important;
    width: 100%;
    height: auto;
    font-size: 14px;
/*     font-family: Dubai-Light; */
		/* background: #fff;
  overflow:hidden;
} */



.blue-line {
	height: 0.3rem;
	width: 6rem;
	background-color: rgb(79, 143, 226);
	margin-bottom: calc(3rem + 2vmin);
}

.wrapper-for-arrows {
	position: relative;
	width: 100%;
	border-radius: 2rem;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	overflow: hidden;
	display: grid;
	place-items: center;
}

.review-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: calc(2rem + 1vmin);
	width: 100%;
  height: 100%;
}

#imgDiv {
	border-radius: 50%;
	width: calc(6rem + 4vmin);
	height: calc(6rem + 4vmin);
	position: relative;
	box-shadow: 5px -3px var(--primary-color);
	background-size: cover;
	margin-bottom: calc(0.7rem + 0.5vmin);
}

.chicken {
	background-image: url("https://media0.giphy.com/media/A8Cdznswn5vnG/200w.gif?cid=790b7611e8c5980ee7141bc18ec12c49962b871eb404ba5b&rid=200w.gif&ct=s");
	width: 200px;
	height: 250px;
	position: absolute;
	top: 12%;
}

#imgDiv::after {
	content: "''";
	font-size: calc(2rem + 2vmin);
	font-family: sans-serif;
	line-height: 150%;
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background-color: var(--primary-color);
	position: absolute;
	top: 10%;
	left: -10%;
	width: calc(2rem + 2vmin);
	height: calc(2rem + 2vmin);
}

#personName {
	margin-bottom: calc(0.7rem + 0.5vmin);
	font-size: calc(1rem + 0.5vmin);
	letter-spacing: calc(0.1rem + 0.1vmin);
	font-weight: bold;
}

#profession {
	font-size: calc(0.8rem + 0.3vmin);
	margin-bottom: calc(0.7rem + 0.5vmin);
	color: var(--primary-color);
}

#description {
	font-size: calc(0.8rem + 0.3vmin);
	width: 75%;
	max-width: 40rem;
	text-align: center;
	margin-bottom: calc(1.4rem + 1vmin);
	color: rgb(92, 92, 92);
	line-height: 1.4rem;
}

.arrow-wrap {
	position: absolute;
	top: 50%;
}

.arrow {
	width: calc(1.4rem + 0.6vmin);
	height: calc(1.4rem + 0.6vmin);
	border: solid var(--primary-color);
	border-width: 0 calc(0.5rem + 0.2vmin) calc(0.5rem + 0.2vmin) 0;
	cursor: pointer;
	transition: transform 0.3s;
}

.arrow:hover {
	transition: 0.3s;
	transform: scale(1.15);
}

.left-arrow-wrap {
	left: 2%;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.right-arrow-wrap {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	right: 2%;
}

.surprise-me-btn {
	border: 2px solid rgb(79, 143, 226);
	background-color: rgb(224, 238, 255);
	color: rgb(79, 143, 226);
	border-radius: 2rem;
	padding: calc(0.5rem + 0.2vmin) 0;
	width: calc(7rem + 5vmin);
	text-align: center;
	transition: background-color 0.3s, transform 0.3s;
	cursor: pointer;
	margin-bottom: calc(1.4rem + 1vmin);
}

.surprise-me-btn:hover {
	transition: background-color 0.3s, transform 0.3s;
	background-color: rgb(255, 255, 255);
	transform: rotate(5deg);
}

.move-head {
	animation: moveHead 1.55s infinite;
	animation-delay: -0.8s;
}

.hide-chicken-btn {
	border: 2px solid rgb(226, 89, 79);
	background-color: rgb(255, 224, 224);
	color: rgb(226, 79, 79);
	border-radius: 2rem;
	padding: calc(0.5rem + 0.2vmin) 0;
	width: calc(10rem + 5vmin);
	text-align: center;
	transition: background-color 0.3s, transform 0.3s;
	cursor: pointer;
	margin-bottom: calc(1.4rem + 1vmin);
}

.hide-chicken-btn:hover {
	transition: background-color 0.3s, transform 0.3s;
	background-color: rgb(255, 255, 255);
	transform: rotate(5deg);
}

@keyframes moveHead {
	0% {
	}
	25% {
		transform: translate(0.5rem, 1rem) rotate(5deg);
	}
	100% {
		transform: translate(0, 0) rotate(-5deg);
	}
}

@media screen and (max-width: 900px) {
	.content-wrapper {
		width: 90%;
	}
}





.white-gradient {
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-250px * 7)); }
}

/* Styling */
.slider {
  background: 050e15;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider::before,
.slider::after {
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide {
  height: 100px;
  width: 250px;
}
/* .testim {
		width: 100%;
}

.testim .wrap {
    position: relative;
    width: 100%;
    min-height: 350px;
    max-width: 1020px;
    padding: 40px 20px;
    margin: auto;
}

.testim .arrow {
    display: block;
    position: absolute;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		-o-transform: translateY(-50%);
		transform: translateY(-50%);
    -webkit-transition: all .3s ease-in-out;    
    -ms-transition: all .3s ease-in-out;    
    -moz-transition: all .3s ease-in-out;    
    -o-transition: all .3s ease-in-out;    
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 22222222;
}

.testim .arrow:before {
		cursor: pointer;
}

.testim .arrow:hover {
    color: var(--primary-color-hover);
}
    

.testim .arrow.left {
    left: 20px;
}

.testim .arrow.right {
    right: 20px;
}

.testim .dots {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    z-index: 3333;
		height: 12px;
}

.testim .dots .dot {
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin: 0 10px;
    cursor: pointer;
    -webkit-transition: all .5s ease-in-out;    
    -ms-transition: all .5s ease-in-out;    
    -moz-transition: all .5s ease-in-out;    
    -o-transition: all .5s ease-in-out;    
    transition: all .5s ease-in-out;
		position: relative;
}

.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.testim .dots .dot.active {
    -webkit-animation: testim-scale .5s ease-in-out forwards;   
    -moz-animation: testim-scale .5s ease-in-out forwards;   
    -ms-animation: testim-scale .5s ease-in-out forwards;   
    -o-animation: testim-scale .5s ease-in-out forwards;   
    animation: testim-scale .5s ease-in-out forwards;   
}
    
.testim .cont {
    position: relative;
		overflow: hidden;
}

.testim .cont > div {
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}

.testim .cont > div.inactive {
    opacity: 0;
}

.testim .cont > div.active {
    position: relative;
    opacity: 1;
}
    

.testim .cont div .i{
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}

.testim .cont div i {
    color: green;
    font-size: 1em;
    margin: 15px 0;
}

.testim .cont div p {
    font-size: 1.15em;
    color: #333;
    width: 70%;
    margin: auto;
}

.testim .cont div.active .img img {
    -webkit-animation: testim-show .5s ease-in-out forwards;            
    -moz-animation: testim-show .5s ease-in-out forwards;            
    -ms-animation: testim-show .5s ease-in-out forwards;            
    -o-animation: testim-show .5s ease-in-out forwards;            
    animation: testim-show .5s ease-in-out forwards;            
}

.testim .cont div.active h2 {
    -webkit-animation: testim-content-in .4s ease-in-out forwards;    
    -moz-animation: testim-content-in .4s ease-in-out forwards;    
    -ms-animation: testim-content-in .4s ease-in-out forwards;    
    -o-animation: testim-content-in .4s ease-in-out forwards;    
    animation: testim-content-in .4s ease-in-out forwards;    
}

.testim .cont div.active p {
    -webkit-animation: testim-content-in .5s ease-in-out forwards;    
    -moz-animation: testim-content-in .5s ease-in-out forwards;    
    -ms-animation: testim-content-in .5s ease-in-out forwards;    
    -o-animation: testim-content-in .5s ease-in-out forwards;    
    animation: testim-content-in .5s ease-in-out forwards;    
}

.testim .cont div.inactive .img img {
    -webkit-animation: testim-hide .5s ease-in-out forwards;            
    -moz-animation: testim-hide .5s ease-in-out forwards;            
    -ms-animation: testim-hide .5s ease-in-out forwards;            
    -o-animation: testim-hide .5s ease-in-out forwards;            
    animation: testim-hide .5s ease-in-out forwards;            
}

.testim .cont div.inactive h2 {
    -webkit-animation: testim-content-out .4s ease-in-out forwards;        
    -moz-animation: testim-content-out .4s ease-in-out forwards;        
    -ms-animation: testim-content-out .4s ease-in-out forwards;        
    -o-animation: testim-content-out .4s ease-in-out forwards;        
    animation: testim-content-out .4s ease-in-out forwards;        
}

.testim .cont div.inactive p {
    -webkit-animation: testim-content-out .5s ease-in-out forwards;    
    -moz-animation: testim-content-out .5s ease-in-out forwards;    
    -ms-animation: testim-content-out .5s ease-in-out forwards;    
    -o-animation: testim-content-out .5s ease-in-out forwards;    
    animation: testim-content-out .5s ease-in-out forwards;    
}

@-webkit-keyframes testim-scale {
    0% {
        -webkit-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -webkit-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -webkit-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -webkit-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-moz-keyframes testim-scale {
    0% {
        -moz-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -moz-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -moz-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -moz-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-ms-keyframes testim-scale {
    0% {
        -ms-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -ms-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -ms-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -ms-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-o-keyframes testim-scale {
    0% {
        -o-box-shadow: 0px 0px 0px 0px #eee;
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        -o-box-shadow: 0px 0px 10px 5px #eee;        
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        -o-box-shadow: 0px 0px 10px 5px #ea830e;        
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        -o-box-shadow: 0px 0px 0px 0px #ea830e;        
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }

    35% {
        box-shadow: 0px 0px 10px 5px #eee;        
    }

    70% {
        box-shadow: 0px 0px 10px 5px #ea830e;        
    }

    100% {
        box-shadow: 0px 0px 0px 0px #ea830e;        
    }
}

@-webkit-keyframes testim-content-in {
    from {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    
    to {
        opacity: 1;
        -webkit-transform: translateX(0);        
        transform: translateX(0);        
    }
}

@-moz-keyframes testim-content-in {
    from {
        opacity: 0;
        -moz-transform: translateX(100%);
        transform: translateX(100%);
    }
    
    to {
        opacity: 1;
        -moz-transform: translateX(0);        
        transform: translateX(0);        
    }
}

@-ms-keyframes testim-content-in {
    from {
        opacity: 0;
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -ms-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@-o-keyframes testim-content-in {
    from {
        opacity: 0;
        -o-transform: translateY(100%);
        transform: translateY(100%);
    }
    
    to {
        opacity: 1;
        -o-transform: translateY(0);        
        transform: translateY(0);        
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    
    to {
        opacity: 1;
        transform: translateX(0);        
    }
}

@-webkit-keyframes testim-content-out {
    from {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    
    to {
        opacity: 0;
        -webkit-transform: translateX(-100%);        
        transform: translateX(-100%);        
    }
}

@-moz-keyframes testim-content-out {
    from {
        opacity: 1;
        -moz-transform: translateX(0);
        transform: translateX(0);
    }
    
    to {
        opacity: 0;
        -moz-transform: translateX(-100%);        
        transform: translateX(-100%);        
    }
}

@-ms-keyframes testim-content-out {
    from {
        opacity: 1;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        -ms-transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@-o-keyframes testim-content-out {
    from {
        opacity: 1;
        -o-transform: translateY(0);
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
        transform: translateY(-100%);        
    }
}

@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    
    to {
        opacity: 0;
        transform: translateY(-100%);        
    }
}

@-webkit-keyframes testim-show {
    from {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
}

@-moz-keyframes testim-show {
    from {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
}

@-ms-keyframes testim-show {
    from {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
}

@-o-keyframes testim-show {
    from {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
}

@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    
    to {
        opacity: 1;
        transform: scale(1);       
    }
}

@-webkit-keyframes testim-hide {
    from {
        opacity: 1;
        -webkit-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
}

@-moz-keyframes testim-hide {
    from {
        opacity: 1;
        -moz-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -moz-transform: scale(0);
        transform: scale(0);
    }
}

@-ms-keyframes testim-hide {
    from {
        opacity: 1;
        -ms-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -ms-transform: scale(0);
        transform: scale(0);
    }
}

@-o-keyframes testim-hide {
    from {
        opacity: 1;
        -o-transform: scale(1);       
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        -o-transform: scale(0);
        transform: scale(0);
    }
}

@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);       
    }
    
    to {
        opacity: 0;
        transform: scale(0);
    }
}

@media all and (max-width: 300px) {
	body {
		font-size: 14px;
	}
}

@media all and (max-width: 500px) {
	.testim .arrow {
		font-size: 1.5em;
	}
	
	.testim .cont div p {
		line-height: 25px;
	}

} */

.item {
  align-items: center;
  background-color: tomato;
  color: white;
  display: flex;
  height: 300px;
  justify-content: center;
}

.shining-shadow-box:hover::before {
  opacity: 1; 
}

@keyframes shadow-move-horizontal {
  0% {
    left: -40px; 
  }
  100% {
    left: 100%;
  }
}
.accordion-button:not(.collapsed){
  color:var(--primary-color);
  background-color:#000 !important;
}
footer ul li a{
  color:#FFF;
  transition: all .4s;
}
footer ul li a:hover, footer ul li a:active, footer ul li a:focus{
  color:var(--primary-color);
}
.circle {
  position: fixed;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background-color:var(--primary-color);
  opacity: 0.12;
  filter: blur(15px);
  transition: background-color 0.5s ease, transform 0.5s ease; /* Smooth transitions */
}

.circle1 {
  top: 100px;
  left: 30px;
}


.order-2{
  order: 2 !important;
}

.order-1 {
  order: 1 !important;
}

.icon {
  background: var(--primary-color);
  padding: 15px;
  border-radius: 5px;
  color: #000;
}

.label-icon {
  font-size: 25px;
  text-align: center;
}

.tagline {
  border-color: var(--primary-color) !important;
  padding: 50px;
  border-width: 3px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 30px;
}

.stars {
  color: var(--primary-color) !important;
}

.text-grey {
  color: rgb(168, 167, 177);
}

.tagline2 {
  border-color: var(--primary-color) !important;
  padding: 50px;
  border-width: 3px;
  border-radius: 20px;
  
}


.circle2 {
  bottom: 100px;
  right: 30px;
}
video{
  transition: all 0.4s;
}
video:hover{
  transform: scale(1.05);
  transition: all 0.4s;
}
.hvr-shrinknew{
  width: 100%;
  transition: all 0.4s;
}
.hvr-shrinknew:hover, .hvr-shrinknew:active, .hvr-shrinknew:focus{
  transform: scale(1.02);
}
.hvr-shrinknew2{
  width: 100%;
  transition: all 0.4s;
}
.hvr-shrinknew2:hover, .hvr-shrinknew2:active, .hvr-shrinknew2:focus{
  transform: scale(1.05);
}

/****************************Homepage CSS Ends Here***********************/

.payment ul li i{
  margin-top: 6px;
}
.plan{
  border:2px solid transparent;
  transition: all 0.4s;
  cursor: pointer;
}
.plans-box .plan:hover, .plans-box .plan:active, .plans-box .plan:focus, .plans-box .active{
  border:2px solid var(--primary-color);
}
.silver-border {
  border: 2px solid silver !important;
}

.gold-border {
  border: 2px solid gold !important;
}

.purple-border {
  border: 2px solid purple !important;
}


.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color:#111;
  font-weight: bold;
}
.form-check-input:checked{
  background-color: var(--primary-color);
}
.custom-style{
  backdrop-filter: blur(10px); 
  background: #111; 
  z-index: 100 !important;
}
/*********************Payment and Contact Us Pages CSS Ends Here*********************/

@media(min-width:991px) and (max-width:1251px){
  .navbar-expand-lg .navbar-nav .nav-link{
    font-size: 13px;
  }
}
@media(min-width:768px) and (max-width:990px){
  .btn-group, .btn-group-vertical{
    display: block;
  }
  .btn-group label, .btn-group-vertical label{
    width: 100%;
    border-radius: 5px !important;
    border:none;
  }
}

@media(max-width:767px){
  .navbar-expand-lg .navbar-nav .nav-link{
    padding: 15px 0;
  }
  video.py-5{
    padding: 0 !important;
  }
  .features{
    padding-bottom: 0 !important;
  }
  .videos-block{
    padding-top: 0 !important;
  }
  body{
    overflow-x: hidden;
  }
}
@media(max-width:574px){
  .navbar-expand-lg .navbar-nav .nav-link{
    padding: 15px 0;
  }
  video{
    padding: 0 !important;
  }
  .main-content-resizer h1{
    font-size: x-large !important;
  }
  .main-icon{
    height: 45px;
    width: 45px;
    min-width: 45px;
    line-height: 40px;
    font-size: 16px !important;
  }
  .custom-style{
    backdrop-filter: blur(10px); 
    background: #111; 
    z-index: 100 !important;
  }
  .btn-group, .btn-group-vertical{
    display: block;
  }
  .btn-group label, .btn-group-vertical label{
    width: 100%;
    border-radius: 5px !important;
    border:none;
  }

  .btn-sec{
    text-align: center;
  }
  .btn-sec .d-flex{
    display: block !important;
  }
  .btn-sec .d-flex img{
    display: block;
    margin:0 auto;
    padding: 15px 0;
  }
}
.subscribe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Adjust for responsiveness */
  max-width: 945px;
  height: auto; /* Allow flexible height */
  padding: 20px; /* Add padding for mobile */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(61, 159, 255, 0.2);
  background-color: #121a25; /* Ensure consistent background */
}

.subscribe__title {
  font-weight: bold;
  font-size: 1.5rem; /* Adjust font size for mobile */
  margin-bottom: 18px;
  text-align: center; /* Ensure text is centered */
}

.subscribe__copy {
  max-width: 90%; /* Reduce max-width for mobile */
  text-align: center;
  margin-bottom: 20px; /* Adjust spacing */
  line-height: 1.5;
  font-size: 0.9rem; /* Adjust font size */
}

.form {
  display: flex;
  flex-direction: column; /* Stack inputs vertically for mobile */
  gap: 10px; /* Add spacing between input and button */
  width: 100%; /* Full width for mobile */
  max-width: 450px; /* Ensure inputs don't get too wide */
}

.form__email {
  padding: 15px; /* Adjust padding for mobile */
  border-radius: 5px;
  border: 1px solid #CAD3DB;
  font-size: 16px; /* Adjust font size */
  width: 100%; /* Full width for responsiveness */
  box-sizing: border-box; /* Ensure padding is considered */
  color: rgb(157, 157, 157);
}

.form__email:focus {
  color: #cb8205;
  outline: 1px solid #E9980C;
}

.form__button {
  background: #cb8205;
  padding: 10px;
  border: none;
  width: 100%; /* Full width for mobile */
  height: auto; /* Allow flexible height */
  min-height: 50px; /* Ensure consistent height */
  border-radius: 5px;
  font-size: 16px; /* Adjust font size for mobile */
  color: white;
  box-shadow: 0 4px 20px rgba(233, 152, 12, 0.7);
}

.form__button:hover {
  box-shadow: 0 10px 20px rgba(233, 152, 12, 0.7);
}

.notice {
  width: 90%; /* Reduce width for mobile */
  text-align: center;
  font-size: 0.8rem; /* Adjust font size */
}

/* Media query for small screens */
@media (max-width: 768px) {
  .subscribe {
      padding: 25px; /* Adjust padding for small screens */
  }

  .form__email {
      font-size: 14px; /* Adjust font size for smaller screens */
  }

  .form__button {
      font-size: 14px; /* Adjust font size */
  }
}

.p-a {
  position: absolute;
  width: 400px;
  bottom: 0px;
  right: 0px;
  position: fixed;
  z-index: 1000;
}

.package-btn:hover {
  transform: scale(1) !important;
  background-color: silver !important;
  border-color: silver !important;
  cursor: default;
}

.package-btn {background-image: linear-gradient(to right, #283048 0%, #859398  51%, #283048  100%)}
.package-btn{
   margin: 10px;
   padding: 15px 45px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   border-radius: 10px;
   display: block;
 }

 .package-btn:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }

 .package-btn-gold {background-image: linear-gradient(to right, #BA8B02 0%, #181818  51%, #BA8B02  100%)}
 .package-btn-gold {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    display: block;
  }

  .package-btn-gold:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
  }
 
 
 
  .package-btn-ultimate {background-image: linear-gradient(to right, #000000 0%, #53346D  51%, #000000  100%)}
  .package-btn-ultimate {
     margin: 10px;
     padding: 15px 45px;
     text-align: center;
     text-transform: uppercase;
     transition: 0.5s;
     background-size: 200% auto;
     color: white;            
     border-radius: 10px;
     display: block;
   }

   .package-btn-ultimate:hover {
     background-position: right center; /* change the direction of the change here */
     color: #fff;
     text-decoration: none;
   }
  