:root {
	--primary: #06A3DA;
	--secondary: #F57E57;
	--light: #EEF9FF;
	--dark: #091E3E;
}

h1, h2, .font-weight-bold {
	font-weight: 700;
}

h3, h4, .font-weight-semi-bold {
	font-weight: 600;
}

h5, h6, .font-weight-medium {
	font-weight: 700;
}

.btn {
	font-family: "Montserrat";
	font-weight: 600;
	transition: .5s;
}

.btn-primary, .btn-secondary {
	color: #FFFFFF;
}

.btn-primary:hover {
	background: var(--secondary);
	border-color: var(--secondary);
}

.btn-secondary:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.btn-square {
	width: 36px;
	height: 36px;
}

.btn-sm-square {
	width: 28px;
	height: 28px;
}

.btn-lg-square {
	width: 46px;
	height: 46px;
}

.btn-square, .btn-sm-square, .btn-lg-square {
	padding-left: 0;
	padding-right: 0;
	text-align: center;
}

p {
	text-align: justify;
	font-weight: 450;
	color: #252c30;
}

#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}

.top-shape::before {
	position: absolute;
	content: "";
	width: 35px;
	height: 100%;
	top: 0;
	left: -17px;
	background: var(--primary);
	transform: skew(40deg);
}

.navbar-light .navbar-nav .nav-link {
	font-family: "Montserrat";
	padding: 35px 15px;
	font-size: 17px;
	color: var(--dark);
	outline: none;
	transition: .5s;
	font-weight: 600;
}

.navbar-light img {
	width: 250px;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
	padding: 20px 15px;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active
	{
	color: var(--primary);
}

@media ( max-width : 991.98px) {
	.navbar-light .navbar-nav .nav-link, .sticky-top.navbar-light .navbar-nav .nav-link
		{
		padding: 10px 0;
	}
}

@media ( max-width : 768px) {
	.carousel-item {
		position: relative;
		min-height: 1000px;
	}
	.carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.carousel-item .col-lg-8 {
		padding-bottom: 35px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-item {
		position: relative;
		min-height: 1000px;
	}
	.carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.carousel-item .col-lg-8 {
		padding-bottom: 35px;
	}
	.carousel-item h1 {
		font-size: 46px;
	}
}

.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(19, 32, 53, 0.63);
	z-index: 1;
}

@media ( max-width : 576px) {
	.carousel-caption h5 {
		font-size: 20px;
		font-weight: 600 !important;
	}
	.carousel-caption h1 {
		font-size: 30px;
		font-weight: 600 !important;
	}
}

.carousel-control-prev, .carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
}

@media ( min-width : 991.98px) {
	.banner {
		position: relative;
		margin-top: -90px;
		z-index: 1;
	}
}

.section-title h5::before {
	position: absolute;
	content: "";
	width: 45px;
	height: 3px;
	right: -55px;
	bottom: 11px;
	background: var(--primary);
}

.section-title h5::after {
	position: absolute;
	content: "";
	width: 15px;
	height: 3px;
	right: -75px;
	bottom: 11px;
	background: var(--secondary);
}

.twentytwenty-wrapper {
	height: 100%;
}

.hero-header {
	background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85));
	background-size: cover;
}

.bg-appointment {
	background: linear-gradient(rgba(9, 30, 62, .85), rgba(9, 30, 62, .85));
	background-size: cover;
}

.appointment-form {
	background: rgba(6, 163, 218, .7);
}

.service-item img, .service-item .bg-light, .service-item .bg-light h5,
	.team-item .team-text {
	transition: .5s;
}

.service-item:hover img {
	transform: scale(1.15);
}

.team-item .team-text::after, .service-item .bg-light::after {
	position: absolute;
	content: "";
	top: 50%;
	bottom: 0;
	left: 15px;
	right: 15px;
	border-radius: 100px/15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, .7);
	opacity: 0;
	transition: .5s;
	z-index: -1;
}

.team-item:hover .team-text::after, .service-item:hover .bg-light::after
	{
	opacity: 1;
}

.offer-text {
	background: rgba(6, 163, 218, .85);
}

.price-carousel .owl-nav {
	position: absolute;
	width: calc(100% + 45px);
	height: 45px;
	top: calc(50% - 22.5px);
	left: -22.5px;
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: .5s;
}

.price-carousel:hover .owl-nav {
	opacity: 1;
}

.price-carousel .owl-nav .owl-prev, .price-carousel .owl-nav .owl-next {
	position: relative;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: var(--primary);
	border-radius: 2px;
	font-size: 22px;
	transition: .5s;
}

.price-carousel .owl-nav .owl-prev:hover, .price-carousel .owl-nav .owl-next:hover
	{
	background: var(--secondary);
}

.testimonial-carousel {
	background: rgba(6, 163, 218, .85);
}

.testimonial-carousel .owl-nav {
	position: absolute;
	width: calc(100% + 46px);
	height: 46px;
	top: calc(50% - 23px);
	left: -23px;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev, .testimonial-carousel .owl-nav .owl-next
	{
	position: relative;
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: var(--primary);
	border-radius: 2px;
	font-size: 22px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover, .testimonial-carousel .owl-nav .owl-next:hover
	{
	background: var(--secondary);
}

.testimonial-carousel .owl-item img {
	width: 120px;
	height: 120px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat";
}

.wrapper {
	overflow: hidden;
	max-width: auto;
	background: #fff;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
}

.wrapper .title-text {
	display: flex;
	width: 200%;
}

.wrapper .title {
	width: 50%;
	font-size: 35px;
	font-weight: 600;
	color: black;
	text-align: center;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.wrapper .slide-controls {
	position: relative;
	display: flex;
	height: 50px;
	width: 100%;
	overflow: hidden;
	margin: 30px 0 10px 0;
	justify-content: space-between;
	border: 1px solid lightgrey;
	border-radius: 5px;
}

.slide-controls .slide {
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	line-height: 48px;
	cursor: pointer;
	z-index: 1;
	transition: all 0.6s ease;
}

.slide-controls label.signup {
	color: #000;
}

.slide-controls .slider-tab {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	z-index: 0;
	border-radius: 5px;
	background: -webkit-linear-gradient(left, #017eac, #06A3DA);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#signup:checked ~ .slider-tab {
	left: 50%;
}

#signup:checked ~ label.signup {
	color: #fff;
	cursor: default;
	user-select: none;
}

#signup:checked ~ label.login {
	color: #000;
}

#login:checked ~ label.signup {
	color: #000;
}

#login:checked ~ label.login {
	cursor: default;
	user-select: none;
}

.wrapper .form-container {
	width: 100%;
	overflow: hidden;
}

.form-container .form-inner {
	display: flex;
	width: 200%;
}

.form-container .form-inner form {
	width: 50%;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-inner form .field {
	height: 50px;
	width: 100%;
	margin-top: 20px;
}

.form-inner form .field input {
	height: 100%;
	width: 100%;
	outline: none;
	padding-left: 15px;
	border-radius: 5px;
	border: 1px solid lightgrey;
	border-bottom-width: 2px;
	font-size: 17px;
	transition: all 0.3s ease;
}

.form-inner form .field input:focus {
	border-color: #06A3DA;
}

.form-inner form .field input::placeholder {
	color: #999;
	transition: all 0.3s ease;
}

form .field input:focus::placeholder {
	color: #b3b3b3;
}

.form-inner form .pass-link {
	margin-top: 5px;
}

.form-inner form .signup-link {
	text-align: center;
	margin-top: 30px;
}

.form-inner form .pass-link a, .form-inner form .signup-link a {
	color: #06A3DA;
	text-decoration: none;
}

.form-inner form .pass-link a:hover, .form-inner form .signup-link a:hover
	{
	text-decoration: underline;
}

form .btn {
	height: 50px;
	/* width: 50%; */
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

form .btn .btn-layer {
	height: 100%;
	width: 300%;
	position: absolute;
	left: -100%;
	background: -webkit-linear-gradient(right, #017eac, #06A3DA, #017eac, #06A3DA);
	border-radius: 5px;
	transition: all 0.4s ease;
	;
}

form .btn:hover .btn-layer {
	left: 0;
}

form .btn input[type="submit"] {
	height: 100%;
	width: 100%;
	z-index: 1;
	position: relative;
	background: none;
	border: none;
	color: #fff;
	padding-left: 0;
	border-radius: 5px;
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}

.text {
	text-align: left;
	line-height: 30px;
	font-size: 16px;
	font-weight: 550;
	color: #585859 !important;
}

.team-text {
	height: 150px;
}

.bg-light {
	border-bottom: 1px solid #06a3da;
}

.features .nav-tabs {
	border: 0;
	background-color: #c9c9c9;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px;
	width: auto;
}

.features .nav-item {
	margin: 0;
	padding: 0 5px 0 0;
}

.features .nav-item:last-child {
	padding-right: 0;
}

.features .nav-link {
	background-color: none;
	color: #000;
	padding: 10px 30px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	height: 100%;
	border: 0;
	margin: 0;
}

@media ( max-width : 468px) {
	.features .nav-link {
		padding: 8px 20px;
	}
}

.features .nav-link i {
	padding-right: 15px;
	font-size: 48px;
}

.features .nav-link h4 {
	font-size: 18px;
	font-weight: 550;
	margin: 0;
}

.features .nav-link.active {
	background-color: #06A3DA;
	border-color: #06A3DA;
}

.features .nav-link.active h4 {
	color: #FFFFFF;
}

.features .tab-content {
	margin-top: 30px;
}

.features .tab-pane h3 {
	color: #1f1f1f;
	font-weight: 700;
	font-size: 28px;
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.features .tab-pane h3:after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 3px;
	background: var(--accent-color);
	left: 0;
	bottom: 0;
}

.features .tab-pane ul {
	list-style: none;
	padding: 0;
}

.features .tab-pane ul li {
	padding-top: 10px;
}

.features .tab-pane ul i {
	font-size: 20px;
	padding-right: 4px;
	color: var(--accent-color);
}

.features .tab-pane p:last-child {
	margin-bottom: 0;
}

.step p {
	font-weight: 550 !important;
	color: #05779F !important;
}

.features .selection {
	line-height: 30px;
}

.table {
	font-size: 15px;
	font-weight: 450;
	/* color:#252c30; */
	margin-top: 15px;
	border-color: #807f7f;
}

.table thead {
	background-color: #0596c8;
	color: white;
}

.programme {
	margin-top: 120px;
}

@media ( max-width : 768px) {
	.programme {
		margin-top: 1px;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.programme {
		margin-top: 1px;
		margin-bottom: 20px;
	}
}

.guideline {
	margin-top: 50px;
}

@media ( max-width : 768px) {
	.guideline {
		margin-top: 1px;
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.guideline {
		margin-top: 1px;
		margin-bottom: 20px;
	}
}

@media ( max-width : 768px) {
	.navbar {
		padding-top: 1.5rem !important;
	}
}

@media only screen and (max-width: 600px) {
	.carousel-item .active {
		min-height: 1100px;
	}
}
/********** Application Process ************/
:root {
	--step-1: #e67e22;
	--step-2: #6c5ce7;
	--step-3: #27ae60;
	--step-4: #2980b9;
	--step-5: #d35400;
	--step-6: #8e44ad;
	--step-7: #16a085;
}

body {
	background-color: white;
	font-family: "Montserrat";
	padding-bottom: 55px;
}

/* Main Wrapper - Horizontal on Desktop, Vertical on Mobile */
.process-flow {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	padding: 40px 10px;
}

.step-card {
	flex: 1;
	min-width: 140px;
	max-width: 180px;
	cursor: pointer;
	transition: transform 0.2s;
	position: relative;
	text-align: center;
}

.step-card:hover {
	transform: translateY(-5px);
}

/* The Outer Bracket Design */
.bracket-box {
	position: relative;
	padding: 20px 10px;
	border: 2px solid var(--step-color);
	border-radius: 20px;
	background: white;
	height: 100%;
}

/* Hexagon Step Label */
.hexagon {
	position: relative;
	width: 100%;
	height: 34px;
	background-color: var(--step-color);
	margin: 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 0.8rem;
	z-index: 2;
}

.hexagon:before, .hexagon:after {
	content: "";
	position: absolute;
	top: 0;
	border-top: 17px solid transparent;
	border-bottom: 17px solid transparent;
}

.hexagon:before {
	left: -12px;
	border-right: 12px solid var(--step-color);
}

.hexagon:after {
	right: -12px;
	border-left: 12px solid var(--step-color);
}

.step-icon {
	font-size: 2.2rem;
	color: var(--step-color);
}

.step-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
}

/* Modal Customization */
.modal-header {
	background-color: var(--modal-color);
	color: white;
	border: none;
}

.btn-close-white {
	filter: brightness(0) invert(1);
}

/* Mobile Specific Adjustments */
@media ( max-width : 768px) {
	.process-flow {
		flex-direction: column;
		align-items: center;
	}
	.step-card {
		max-width: 300px;
		width: 100%;
	}
}
/******* Dates **********/
.expo-card-container {
	position: relative;
	padding-bottom: 20px;
}

/* The Base/Stand */
.expo-base {
	width: 340px;
	height: 25px;
	background: #1a1a1a;
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	margin: 0 auto;
}

/* The Glass Panel */
.glass-panel {
	width: 100%;
    max-width: 300px;
	height: 140px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	border: 2px solid transparent;
	position: relative;
	z-index: 1;
	margin-bottom: -10px; /* Sits on the base */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 20px;
	/* The Neon Glow Effect */
	box-shadow: inset 0 0 15px rgb(0 50 254/ 20%), 0 0 20px
		rgba(0, 150, 255, 0.3);
	border: 1.5px solid rgb(0 206 255/ 40%);
}

/* Swirling neon lines (simplified with pseudo-elements) */
.glass-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 20px;
	pointer-events: none;
}

.event-title {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: #3e76a9;
    text-shadow: 0 0 6px rgba(0, 150, 255, 0.35);
}
.event-date {
    font-size: 17px;
    font-weight: 400;
    color: black;
    letter-spacing: 0.5px;
    text-shadow: 0 0 4px rgba(0, 200, 255, 0.3);
}


.calendar-badge {
    position: absolute;
    top: -18px;
    left: 5%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #18afcf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
}


.calendar-badge i {
	color: #fff;
	font-size: 18px;
}
/*********** menus ********/
.navmenu {
  display: flex;
  align-items: center;
  position: relative;
}

/* Menu UL */
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove bullets */
.menu-list li::marker {
  content: "";
}

/* Menu links */
.menu-list li a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
  padding: 6px 8px;
  font-size: 14px;
  display: inline-block;
  white-space: normal;
  transition: 0.3s ease;
}

/* Hover + Active */
.menu-list li a:hover,
.menu-list li a.active {
  color: #3828dc;
}


/*--------------------------------------------------------------
# DESKTOP VIEW
--------------------------------------------------------------*/

@media (min-width: 1200px) {

  .menu-list {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: nowrap;
  }

  /* Hide hamburger */
  .mobile-nav-toggle {
    display: none !important;
  }

  /* Underline animation */
  .menu-list li a {
    position: relative;
  }

  .menu-list li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #3828dc;
    transition: 0.3s ease;
  }

  .menu-list li a:hover::after,
  .menu-list li a.active::after {
    width: 100%;
  }
}


/*--------------------------------------------------------------
# MOBILE VIEW (FIXED — NO CUT / NO OVERFLOW)
--------------------------------------------------------------*/

@media (max-width:1199px){

/* Hamburger + Close icon base */
.mobile-nav-toggle {
  font-size: 28px;
  cursor: pointer;
  padding: 8px;
  z-index: 10002;
  position: relative;
}

/* Hamburger icon */
.mobile-nav-toggle::before {
  content: "\2630";
}

/* ===== WHEN MENU OPEN ===== */
#menu-toggle:checked + .mobile-nav-toggle {

  position: fixed;        /* IMPORTANT */
  top: 18px;              /* adjust if needed */
  right: 18px;

  background: #ffffff;
  border-radius: 50%;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Close icon */
#menu-toggle:checked + .mobile-nav-toggle::before {
  content: "\2715";
  font-size: 22px;
}

/* ===== MENU BOX ===== */

.menu-list {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  margin: auto;

  width: 92%;
  max-width: 420px;

  background: #fff;
  border-radius: 16px;
  padding: 18px 0;

  box-shadow: 0 12px 35px rgba(0,0,0,.2);
  z-index: 10000;
}

#menu-toggle:checked ~ .menu-list {
  display: block;
}

/* Menu alignment */
.menu-list li {
  padding: 10px 18px;
  text-align: left;
}

.menu-list li a {
  display: block;
  padding: 10px 6px;
  font-size: 16px;
}

.menu-list li a::after {
  display: none;
}

}

/*--------------------------------------------------------------
# Breadcrumb / Right Side User Info
--------------------------------------------------------------*/

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  color:black;
  word-break: break-word;
  font-size: 14px;
   max-width: 100%;
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-simple {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #091E3E;
    color: #ffffff;
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    z-index: 9999;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.4);
}

.footer-simple .credits {
	font-size: 12px;
	color: #e0e0e0;
}

@media ( max-width : 576px) {
	.footer-simple {
		font-size: 12px;
		padding: 10px 5px;
	}
}

.footer-full {
	background-color: #091E3E;
	font-size: 14px;
}

/* TOP SECTION */
.footer-full .footer-top {
	padding-top: 40px;
	padding-bottom: 25px;
}

/* TITLE */
.footer-full .sitename {
	font-size: 18px;
	font-weight: 700;
}

/* CONTACT TEXT */
.footer-full .footer-contact p {
	margin-bottom: 5px;
}

/* SOCIAL ICONS */
.footer-full .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #ccc;
	font-size: 16px;
	color: #555;
	transition: 0.3s;
}

.footer-full .social-links a:hover {
	color: #0d6efd;
	border-color: #0d6efd;
}

/* COPYRIGHT */
.footer-full .credits {
	font-size: 13px;
	color: #6c757d;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 1000px;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}
 
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
 
.hero:before {
  content: "";
  background: color-mix(in srgb, var(--header-background), transparent 33%);
  position: absolute;
  inset: 0;
  z-index: 2;
}
 
.hero .container {
  position: relative;
  z-index: 3;
}
 
.hero h1 {
  margin: 0 0 5px 0;
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  font-family: "montserrat";
  color: white;
  text-align: left;
}
 
.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}
 
.hero p {
  color: white;
  margin: 5px 0 30px 0;
  font-size: 30px;
  font-weight: 800;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 32, 53, 0.65); /* 🔥 overlay color */
  z-index: 2;
}
 
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
 
.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
 
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}
 
.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
 
.hero .btn-watch-video:hover {
  color: var(--accent-color);
}
 
.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}
 
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
 
@media (max-width: 640px) {
  .hero {
  width: 100%;
  height: 1300px;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}
  .hero h1 {
    padding-top: 55px;
    font-size: 28px;
    line-height: 36px;
  }
 
  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
 
  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}
.btn-get-started {
  display: inline-block;
  background-color: #007bff !important;   /* blue */
  color: #ffffff !important;              /* white text */
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}
 
/* Hover effect */
.btn-get-started:hover {
  background-color: #ffffff;
  color: #007bff;
  border: 2px solid #007bff;
}
 