@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 500, 600, 700 &display=swap';


:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  height: 100%;
  width: 100%;
}

.preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}
.preloader.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Main  */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    --primary-clr: #FFD700;
    --primary-dark-clr: #7dd1fe;
    --bg-clr: #f6f6f6;
    --dark-heading-clr: #212121;
    --light-heading-clr: #fefefe;
    --light-text-clr: #a9a9a9;
}


html {
	font-size: 10px;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
}

body{
	background-color: #222222 !important;
}

a {
	text-decoration: none !important;
}



img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

p {
	color: #bbb;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}
.section-title {
	font-size: 6rem;
	font-weight: 300;
	color: #fff;
	margin-bottom: 10px;
	letter-spacing: 0.2rem;
	text-align: center;
	font-family: 'Ephesis';
}
.section-title span {
	color: #FFD700;
	font-family: 'Ephesis';
}
.col-right h2 p{
	color: #bbb;
}
.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid #FFD700;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: #FFD700;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: #FFD700;
}
.brand h1 span {
	color: #fff;
}

.main-div-container {
	min-height: 100vh;
	width: 100vw;

}

.home-main-container {
	height: 100vh;
	width: 100vw;

}

#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}


@media (max-width:780px){
  .section-title {
    font-size: 4rem;
    font-weight: 200;
  }
}




/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #FFD700; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #FFD700; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%; 
  margin-left: 25.0rem;
  margin-right: 25.0rem;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #333132;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}
.header h1 span {
  color: #FFD700;
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 15px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 3px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .nav-container {
    width: 90%;
    margin-left: 0;
    margin-right: 0;
  }

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
 
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-button {
  float: right;
  display: block;
}


@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }
  
  .navmenu.active ul {
    display: block;
    position: none;
    inset: 60px 20px 20px 20px;
    padding: 10% 80% 60% 20%;
    margin: 0;
    border-radius: 0px;
    background-color: var(--nav-mobile-background-color);


    align-items: normal;
    overflow-x: hidden;
  }

  .navmenu .dropdown ul {
    min-width: 200px;
    
  }

  .navmenu .dropdown:hover > ul {
    min-width: 200px;
  }

  .navmenu .dropdown .dropdown ul {
    min-width: 200px;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    min-width: 200px;
  }
 

  .navmenu .dropdown ul li {
    margin-left: 2.0rem;
  }
 
}













#abouthero{
  background-image: url('./img/main-page-img2.png');
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
  
}

@media (max-width: 768px){
  #abouthero{
    background-image: url('./img/bg-mobileview.png');
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
  }
}

/* Hero Section */
#hero {
	background-image: url('./img/main-page-img.png');
	background-size: cover;
	background-position: top center;
	position: relative;
	z-index: 1;
  height: 68vh;
}
@media (max-width: 768px){
  
  #hero{
    background-image: url('./img/bg-mobileview.png');
  }
}

#hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: black;
	opacity: 0.2;
	z-index: -1;
}
#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: flex-start;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-size: 4rem;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
	font-family: 'Ephesis';
}

#hero h1:nth-child(1) {
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: #FFD700;
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
	font-family: 'Ephesis';
}
#hero h1 :nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1 :nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1 :nth-child(3) span {
	animation-delay: 2.5s;
}

/* End Hero Section */

/*Win*/
.WINS .video-background {
	position: absolute; /* Keep it absolute */
    top: 190%; /* Adjust to move it vertically */
    left: 50%; /* Adjust to move it horizontally */
    transform: translate(-50%, -50%); /* Center align the video */
    width: 100%; /* Ensure it covers the entire container */
    height: 100%; /* Ensure it covers the entire container */
    z-index: -1; /* Ensure it's behind other content */
    object-fit: cover; /* Maintain aspect ratio */
}
@media (max-width: 768px) {
  .WINS .video-background {
      top: 190%;
  }
}
.News-header {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0); /* Slightly transparent to show video */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.wrapper {
	width: 100vw;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 40px;
}

.win-container {
	width: 100%;

	display: flex;
	align-items: flex-start;
	padding-top: 2rem;
	gap: 5rem;

  justify-content: center;
}

.hero-pic {
	width: 400px;
	height: 500px;
	overflow: hidden;
	box-shadow: 5px 7px 25px rgba(79, 79, 79, 0.953);
}
.hero-pic img {
	height: 100%;
	width: auto;
	transition: 0.5s;
}
.hero-pic img:hover {
	transform: scale(1.2);
}
.News-text {
	max-width: 500px;
	display: flex;
	flex-direction: column;
}
.News-title {
	text-align: center;
}
.News-title h1 {
	color: #e5e5e5;
	font-size: 60px;
	font-family: 'Ephesis';
}
.News-title h1 span {
	color: #FFD700;
	font-size: 60px;
	font-family: 'Ephesis';
	font-weight: 500px;
}
.News-text h2 {
	color: #FFD700;
	font-size: 3rem;
	font-weight: 200px;
	border-bottom: 2px solid #FFD700;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
}
.News-text p {
	color: #e5e5e5;
	font-size: 18px;
  text-align: justify;
  margin: auto;
}



@media (max-width: 768px) {
	.win-container{
    flex-direction: column;
		padding-top: 2rem;
  }
  .News-text p{
    font-size: 16px;
  }
  .News-title h1{
		font-size: 40px;
	}
	.News-title h1 span{
		font-size: 35px;
	}
  .hero-pic  {
		width: 100%;
		height: auto;
	}
	.hero-pic img {
		width: 100%;
		height: auto;
	}
  

	.WINS .video-background{
		top: 170%;
	}

	}



/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 2.5rem;
		padding: 20px 60px;
	}
	h1.section-title {
		font-size: 6rem;
	}

	/* BG Picture */
	#hero h1 h2 {
		font-size: 7rem;
	}
	/* End BG Picture */

	/* About */
	#about .about {
		flex-direction: row;
	}
	#about .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	#about .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid #FFD700;
	}
	#about .col-right {
		text-align: left;
		padding: 30px;
	}
	#about .col-right h1 {
		text-align: left;
	}
	/* End About */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	/* #header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	} */
	/* End header */

	#services .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */

/*--------------------------------------------------------------
# News Slider
--------------------------------------------------------------*/
*{
	
    --primary-clr: #FFD700;
	--primary-dark-clr: #7dd1fe;
	--bg-clr: #f6f6f6;
	--dark-heading-clr: #212121;
	--light-heading-clr: #fefefe;
	--light-text-clr: #a9a9a9;
}

.news-container{
	width: 100%;
	min-height: 60vh;
	padding: 0px 8%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.news-container .section-header{
	position: relative;
	width: 100%;
	margin-bottom: 40px;
	display: flex;
	justify-content: right;
}
.section-header h3{
	font-size: 18px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary-clr);
}
.section-header h1{
	font-size: calc(20px + 1.5vw);
	color: var(--dark-heading-clr);
	font-weight: 600;
	margin-top: 10px;
	text-transform: uppercase;
}
.section-header .navigation-btns{
	align-self: flex-end;
	user-select: none;
}
.section-header .navigation-btns i{
	display: inline-block;
	padding: 10px 18px;
	background-color: var(--primary-clr);
	color: var(--light-heading-clr);
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
	user-select: none;
}
.section-header .navigation-btns i:hover{
	background-color: var(--primary-dark-clr);
}
.section-header .navigation-btns i:nth-child(1){
	margin-right: 5px;
}


















.news-container .slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slider .slider-item {
  width: 300px;
  height: 400px;
  border-radius: 15px;
  position: absolute;
  top: 0;
  transition: left 0.5s cubic-bezier(0.645, 0.045, 0.354, 1);
  overflow: hidden;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.slider-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px 20px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.01) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem;

}

.slider-item .overlay .explore-now-btn {
  padding: 12px 20px;
  background: rgba(216, 213, 58, 0.5);
  color: var(--light-heading-clr);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 25px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-item .overlay .explore-now-btn:hover {
  background-color: var(--primary-clr);
}

.slider-item .overlay .destination-desc {
  position: relative;
}

.slider-item .overlay .destination-desc h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--light-heading-clr);
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
}

.slider-item .overlay .destination-desc p {
  color: var(--light-heading-clr);
  font-size: 15px;
}

.slider-item .overlay .destination-desc p i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--primary-clr);
}











/*Card Style*/

.wrapper{
    padding: 10px 10%;
}
.box-area{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
}
.box {
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.9);
}
.box img{
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
}
.overlay {
	width: 100%;
	height: 0;
	background: linear-gradient(transparent,#1c1c1c 58%);
	border-radius: 10px;
	position: absolute;
	left: 0;
	bottom: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 0 40px;
	text-align: center;
	font-size: 14px;
	transition: height 0.5s;
}
.overlay h3 {
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 80%;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 30px;
	letter-spacing: 2px;
	color: #fff;
}
h3.wins-content{
  font-size: 20px;
}
.overlay a {
	margin-top: 10px;
	color: #262626;
	text-decoration: none;
	font-size: 14px;
	background: #fff;
	border-radius: 50px;
	text-align: center;
	padding: 5px 15px;
}
.box:hover img{
    transform: scale(1.1);
}
.box:hover .overlay{
    height: 100%;
}
/*End Card Style*/


















/* About Coach Section */
#about .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#about .col-left {
	width: 250px;
	height: 360px;
}
#about .col-right {
	width: 100%;
}
#about .col-right h2 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
}
#about .col-right p {
	margin-bottom: 20px;
}
#about .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#about .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	border: 10px solid white;
}
#about .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid #FFD700;
	z-index: -1;
}
/* End About Coach Section */


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: white;
	}
}
@keyframes text_reveal_name {
	100% {
		color: #FFD700;
		font-weight: 500;
	}
}
/* End Keyframes */

/* Splash Screen  */

#splash-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #202020;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4.5rem;
    animation: fade-out 3s 1s forwards;

    
}
#splash-screen p {
    font-family: "Ephesis", cursive;
    font-weight: 500;
    font-style: normal;
    font-size: 3.0rem;
    line-height: 4.0rem;
    margin-top: 1.5rem;
}

#splash-screen h2 {
  font-family: sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 4.0rem;
}

#splash-screen h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 8.0rem;
}
#main-content, #sub-content {
    animation: fade-in-home 2s 0s forwards;
}

@media(max-width:780px){
  #splash-screen h2 {
    font-weight: 200;
    font-size: 2.5rem;
  }

}

@keyframes fade-out {
    0% {
        opacity: 1; 
    }
    25% {
        opacity: 1; 
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade-in-home {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}



/* Log in */
.login_body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #1b1b1b;
}
.login_container {
    position: relative;
    width: 50vw;
    height: 60vh;
    background: #737373;
    border-radius: 15px;
    box-shadow: 0 4px 20px 0 rgba(122, 122, 122, 0.3), 0 6px 20px 0 rgba(160, 160, 160, 0.3);
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
}
.login_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    z-index: 6;
    transform: translateX(100%);
    transition: 1s ease-in-out;
}
.signin-signup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 5;
}
form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 40%;
    min-width: 238px;
    padding: 0 10px;
}
form.sign-in-form {
    opacity: 1;
    transition: 0.5s ease-in-out;
    transition-delay: 1s;
}
form.sign-up-form {
    height: auto;
    opacity: 0;
    transition: 0.5s ease-in-out;
    transition-delay: 1s;
}
.title {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 10px;
}
.sign-up-form .input-field {
  width: auto;
  height: auto;
  background: #f0f0f0;
  margin: 5px 0;
  border: 2px solid #FFD700;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
.input-field {
    width: 100%;
    height: 50px;
    background: #f0f0f0;
    margin: 10px 0;
    border: 2px solid #FFD700;
    border-radius: 50px;
    display: flex;
    align-items: center;
}
.input-field i {
    flex: 1;
    text-align: center;
    color: #737373;
    font-size: 18px;
}
.input-field input {
    flex: 5;
    background: none;
    border: none;
    outline: none;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    color: #737373;
}
.login_btn {
    width: 150px;
    height: 40px;
    border: none;
    border-radius: 50px;
    background: #FFD700;
    color: #fff;
    font-weight: 500;
    margin: 10px 0;
    cursor: pointer;
    font-size: 1.5rem;
}
.login_btn:hover {
    background: #7c7c7c;
}



a {
    text-decoration: none;
}

.panels-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 35%;
    min-width: 238px;
    padding: 0 10px;
    text-align: center;
    z-index: 6;
}
.left-panel {
    pointer-events: none;
}
.content {
    color: #fff;
    transition: 1.1s ease-in-out;
    transition-delay: 0.5s;
}
.panel h3 {
    font-size: 24px;
    font-weight: 600;
}
.panel p {
    font-size: 15px;
    padding: 10px 0;
}
.image {
    width: 100%;
    transition: 1.1s ease-in-out;
    transition-delay: 0.4s;
}
.left-panel .image,
.left-panel .content {
    transform: translateX(-200%);
}
.right-panel .image,
.right-panel .content {
    transform: translateX(0);
}
.account-text {
    display: none;
}
/*Animation*/
.login_container.sign-up-mode::before {
    transform: translateX(0);
}
.login_container.sign-up-mode .right-panel .image,
.login_container.sign-up-mode .right-panel .content {
    transform: translateX(200%);
}
.login_container.sign-up-mode .left-panel .image,
.login_container.sign-up-mode .left-panel .content {
    transform: translateX(0);
}
.login_container.sign-up-mode form.sign-in-form {
    opacity: 0;
}
.login_container.sign-up-mode form.sign-up-form {
    opacity: 1;
}
.login_container.sign-up-mode .right-panel {
    pointer-events: none;
}
.login_container.sign-up-mode .left-panel {
    pointer-events: all;
}
/*Responsive*/
@media (max-width:779px) {
    .login_container {
        width: 100vw;
        height: 100vh;
        border-radius: 0px;
    }
    .sign-up-form .input-field{
      width: auto;
    height: 100%;
    background: #f0f0f0;
    margin: 5px 0;
    border: 2px solid #FFD700;
    border-radius: 50px;
    display: flex;
    align-items: center;
    }
    .input-field input{
      font-size: 14px;
    }
}
@media (max-width:635px) {
    .login_container::before {
        display: none;
    }
    form {
        width: 80%;
    }
    form.sign-up-form {
        display: none;
    }
    .login_container.sign-up-mode2 form.sign-up-form {
        display: flex;
        opacity: 1;
    }
    .login_container.sign-up-mode2 form.sign-in-form {
        display: none;
    }
    .panels-container {
        display: none;
    }
    .account-text {
        display: initial;
        margin-top: 30px;
    }
    .login_container.sign-up-mode form.sign-in-form {
      opacity: 1;
    }
}
@media (max-width:320px) {
    form {
        width: 90%;
    }
}




.section-members{
  background-color: #000;
  color: #000;
}

.member-container {
    padding: 5%;
    min-width: none;
    min-height: 1vh;
}

.member-container h1 {
    font-size: 8rem;
}

@media (max-width: 780px) {
  .member-container{
    height: 10px;
  }
  
.member-container h1 {
  font-size: 5rem;
}
}
.member-title {
    margin: 0;
    padding: 2px 0; /* Adjust padding as needed */
  }



.member-testimonial-box h2, h3 {
    color: #fff;
  
}
  
.member-testimonial-box h2 {
  font-weight: 500;
  margin-bottom: 5px;
  margin-top: 80%;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 2px;

  margin: 0px;

}

.member-testimonial-box p {

  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;

  margin: 0px;

}

.individual-container {
  align-items: center;
  justify-content: center;
}























/* Packages */


/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");

/*===== VARIABLES CSS =====*/
:root {

    /*========== Colors ==========*/
    --body-color: #020318;
    --text-color-light: #FFF;

    /*========== Font and typography ==========*/
    --body-font: 'Dm Sans';
    --biggest-font-size: 2.5rem;
    --h1-font-size: 0.5rem;
    --normal-font-size: .938rem;
    --smaller-font-size: .75rem;
/*========== Box, Drop & Text Shadow ==========*/
/* MATTE GOLD (DEFAULT) */
--box-shadow-inset: inset 0 2px 7px -9px rgba(189, 155, 34, 0.4), 
                    inset 0 1px 2px -1px rgb(222, 190, 90), 
                    inset 0 -20px 16px -32px rgb(160, 130, 40), 
                    inset 0 28px 25px -24px rgb(190, 155, 60), 
                    inset 0 1px 4px rgb(180, 150, 50), 
                    inset 0 1px 10px rgba(180, 150, 50, 0.3);

--drop-shadow: 0 0 6px rgba(210, 180, 70, 0.6);

--text-shadow: 0 0 6px rgba(210, 180, 70, 0.6);

--box-shadow-inset-button: inset 0 2px 7px -9px rgba(189, 155, 34, 0.4), 
                           inset 0 1px 2px -1px rgb(222, 190, 90), 
                           inset 0 -20px 16px -32px rgb(160, 130, 40), 
                           inset 0 28px 25px -24px rgb(190, 155, 60), 
                           inset 0 1px 4px rgb(180, 150, 50), 
                           inset 0 1px 10px rgba(180, 150, 50, 0.3);

/*========== Box, Drop & Text Shadow Hover ==========*/
/* SHINY GOLD (HOVER) */
--box-shadow-inset-hover: inset 0 2px 7px -9px rgba(255, 235, 59, 0.9), 
                          inset 0 1px 2px -1px rgb(255, 249, 196), 
                          inset 0 -20px 16px -32px rgb(212, 175, 55), 
                          inset 0 28px 25px -24px rgb(255, 223, 70), 
                          inset 0 1px 4px rgb(255, 238, 88), 
                          inset 0 1px 10px rgb(255, 255, 153);

--drop-shadow-hover:  0 0 10px rgba(255, 241, 118, 0.95);

--text-shadow-hover: 0 0 10px rgba(255, 241, 118, 0.95);

--box-shadow-inset-button-hover: inset 0 4px 7px -4px rgba(255, 255, 180, 0.5), 
                                 inset 0 1px 2px -1px rgba(255, 248, 220, 1), 
                                 inset 0 -20px 16px -32px rgba(212, 175, 55, 0.5), 
                                 inset 0 28px 25px -20px rgba(255, 239, 184, 0.4), 
                                 inset 0 1px 4px rgba(255, 228, 100, 0.4), 
                                 inset 0 1px 16px rgba(255, 255, 200, 0.3);


    /*========== Filter Blur ==========*/
    --filter-blur: blur(100px);
}

.packages-container {
  background-color: var(--background-color);
}

.main{
  width: 100%;
  display: flex;
  align-items: center;
  font-family: pop;
  flex-direction: column;
}

.head{
  text-align: center;
  margin: 2.5rem;
}
.head::after{
  content: "";
  width: 30%;
  height: 3px;
  color: #737373;
  position: absolute;

}
.head_1{
  font-family: 'Ephesis';
  font-size: 60px;
  font-weight: 100;
  color: #fff;
}
.head_1 span{
  color: #FFD700;
}
.head_2{
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-top: 3px;
}
.progress-tab ul{
  display: flex;
  margin-top: 30px;
  width:50vw;

}
.progress-tab ul li{
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.progress-tab ul li .icon{
  font-size: 35px;
  color: #FFD700;
  margin: 0 60px;
}
.progress-tab ul li .text{
  font-size: 14px;
  font-weight: 100;
  color: #737373;
}


/* Line below the image */
.line-below-img {
  width: 30%;
  height: 3px;
  background-color: #fff;
  margin: 5px 0; /* Adjust margin as needed */
}

/* Progress Div Css  */

.progress-tab ul li .progress{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(115, 115, 115);
  margin: 14px 0;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
}
.progress::after{
  content: " ";
  position: absolute;
  width: 125px;
  height: 5px;
  background-color: rgba(115, 115, 115);
  right: 30px;
}
.one::after{
  width: 0;
  height: 0;
}
.progress-tab ul li .progress .uil{
  display: none;
}
.progress-tab ul li .progress p{
  font-size: 13px;
}
.main img{
  width: 140px;
  height: 100px;
  margin-top: 40px;
}
/* Active Css  */

.progress-tab ul li .active{
  background-color: #FFD700;
  display: grid;
  place-items: center;
}
.progress-tab li .active::after{
  background-color: #FFD700;
}
.progress-tab ul li .active p{
  display: none;
}
.progress-tab ul li .active .uil{
  font-size: 20px;
  display: flex;
}
/*Sentence style*/
body {
  justify-content: center;
  align-items: center;
}

.sentence {
  text-align: center;
  color: #bbb;
}

.sentence h3, .sentence h1 {
  margin: 2.0rem;
}
.sentence h1{
  margin-top: 5.0rem;
  color: #fff;
  font-size: 4.0rem;
}
/* Responsive Css  */

@media (max-width: 980px) {
  .progress-tab ul{
      flex-direction: column;
  }
  .progress-tab ul li{
      flex-direction: row;
  }
  .progress-tab ul li .progress{
      margin: 0 30px;
  }
  .progress::after{
      width: 5px;
      height: 55px;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: -1;
  }
  .one::after{
      height: 0;
  }
  .progress-tab ul li .icon{
      margin: 15px 0;
  }
}

@media (max-width:780px) {
  .head .head_1{
      font-size: 24px;
  }
  .head .head_2{
      font-size: 16px;
  }
  .head { 
    margin: 1.5rem;
}
}


/*========== LAYAOUT ==========*/
.bd-container {
  height: 70vh;
  max-width: 1150px;
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 980px) {
  .bd-container {
    height: 100%;
  
  }
}


/*========== CARD NEON ==========*/
.neon,
.neon__container{
    display: grid;
    align-items: center;
    height: 100%;
}

.neon {
    padding: 2.5rem;
}

.neon__container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusted to fit 4 cards in one row */
    row-gap: 2rem; /* Adjusted gap */
    column-gap: 1.5rem; /* Adjusted gap */
    
}

.neon__card {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-color-light);
    box-shadow: var(--box-shadow-inset);
    backdrop-filter: var(--filter-blur);
    padding: 3.5rem 1.5rem 2rem;
    border-radius: 1rem;
    text-align: center;
}


.neon__title, .neon__description {
    text-shadow: var(--text-shadow);  
}

.neon__title {
    font-size: 2.75rem;
    background-color: #FFF;
    border-radius: 3px;
    padding: 1.5rem ;
    color: #000;

    margin: 1.5rem;
}

.neon__description {
    text-align: initial;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding: 2.0rem;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    
}
.neon__price {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    font-weight: 500;
    color: #FFD700;
    padding: 1.5rem;
    font-size: 2.25rem;
    font-family: 'Times New Roman', Times, serif;
}


.neon__button {
    box-shadow: var(--box-shadow-inset-button);
    color: #FFD700;
    text-shadow: var(--text-shadow);
    display: flex;
    justify-content: center;
    padding: 2.0rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    margin: 1.0rem;
    font-family: 'Times New Roman', Times, serif;
}

.neon__button:hover {
    box-shadow: var(--box-shadow-inset-button-hover);
}

/* Card neon hover */
.neon__card:hover {
    box-shadow: var(--box-shadow-inset-hover);
}

.neon__card:hover .neon__icon {
    filter: drop-shadow(var(--drop-shadow-hover));
}

.neon__card:hover .neon__title,
.neon__card:hover .neon__description {
    text-shadow: var(--text-shadow-hover);
}

.neon__card, 
.neon__icon, 
.neon__title, 
.neon__description, 
.neon__button {
    transition: .3s;
}

/*========== MEDIA QUERIES ==========*/
/* For small devices */
@media screen and (max-width: 359px) {
    .neon__container {
        grid-template-columns: 1fr;
    }
    .neon__card {
        padding: 2rem 1rem 1.5rem;
        border-radius: 2rem;
    }
    .neon__icon {
        width: 80px;
    }
    .neon__title {
        font-size: var(--h1-font-size);
    }
    .neon__description {
        font-size: var(--smaller-font-size);
    }
    .neon__button {
        padding: 1rem;
        font-size: var(--smaller-font-size);
        border-radius: .6rem;
    }
    .neon__button-icon {
        width: 1rem;
    }
}

/* For long screens */
@media screen and (min-width: 1024px) {
    .bd-container {
        margin-left: auto;
        margin-right: auto;
    }
    
}














































/* Testimonials */

.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5%; 
  margin-bottom: 5%;
}

.testimonial-div-container {
  background-color: #ffffff;
  min-height: 80vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  
  padding: 60px;
}


.testimonial-title {
  
  font-size: 7.0rem;
  font-weight: 300;
  color: #131313;
  font-family: 'Ephesis';

}

.testimonial-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap; 
  align-items: center;
}

.testimonial-image-column {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-image {
  height: 70%;
  width: 70%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
}

.testimonial-text-column {
  width: 90%;
  flex: 1;
  padding: 0 1.0rem;
  display: flex;  
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-size: 1.5rem;
  padding-top: 1.0rem;
  padding-bottom: 1.0rem;
  line-height: normal;
  font-weight: 500;
  color: #585858;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  padding-left: 1rem; 
  padding-right: 1rem;
}

.testimonial-main-container {
  
  display: block;
  justify-content: center;
  align-items: center;
}

.testimonial-text::before,
.testimonial-text::after {
  font-family: 'FontAwesome'; 
  position: absolute;
  font-size: 3rem;
  color: #303030; 
}

.testimonial-text::before {
  content: '\f10d'; 
  top: -20px;
  left: -20px;
}

.testimonial-text::after {
  content: '\f10e'; 
  bottom: -20px;
  right: -20px;
}

.testimonial-details {
  font-size: 1rem;
  color: #555;

}

.testimonial-title-item {
  margin: 0;
  color: #666666;
}

.testimonial-hr {
  border-top: 3px solid #303030; 
  width: 60%; 
}

.testimonial-card {
  background: #D9D9D9;
  border: none;
  box-shadow: 3px 11px 21px -3px rgba(0,0,0,0.71);
  padding: 1.0rem;
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .testimonial-text::before,
  .testimonial-text::after {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .card {
    height: 100px;
  }
  .testimonial-hr {
      border-top: 3px solid #303030; 
      width: 100%; 
  }

  .testimonial-container {
      margin-top: 1%; 
      margin-bottom: 5%;
  }

  .testimonial-content {
      flex-direction: column;
      text-align: center;
  }

  .testimonial-image {
      max-width: 80%;
      margin-bottom: 20px;
  }

  .testimonial-text-column {
      padding: 0;
      width: 150%;
      display: contents;
      
  }
  .testimonial-div-container{
    padding: 20px;
  }

  .testimonial-text {
      padding-left: 1rem;
      padding-right: 1rem;
      font-size: 1rem
  }

  .testimonial-text::before,
  .testimonial-text::after {
      font-size: 2rem;
      top: -10px;
      bottom: -10px;
      left: -10px;
      right: -10px;
  }
}

@media (max-width: 480px) {
  .testimonial-text::before,
  .testimonial-text::after {
      font-size: 1.5rem;
      top: -5px;
      bottom: -5px;
      left: -5px;
      right: -5px;
  }
}




/* News Page */

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: #444444;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
  color: #ffffff;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}


.page-title li {
  font-size: 2.0rem;
  font-weight: 500;
} 

.page-title li a{
  color: #FFD700;
} 

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.news-swiper {
  width: 70%;
  padding: 2.0rem;
}


.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 780px) {
  .main-div-container  {
    min-height: 50vh;
  }
  .portfolio-details .portfolio-description h2 {
    font-size: 18px;
  }

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: absolute;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}




.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.packages-container{
  align-content: center;
}
.portfolio-description-container {
  margin: auto;
  align-items: center;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}





















/* .news-container-top {
  margin-top: 10%;
  background: #ffffff;
  width: 100%;
  padding: 15.0rem;
  overflow-y: auto; 
}

.news-container-top p, 
.news-container-top h1 {
  color: #1b1b1b;
  text-align: center;
}

.news-container-top h1 {
  font-size: 15.0rem;
  font-weight: 300;
  color: #131313;
  font-family: 'Ephesis';
}

.news-items-container {
  display: flex;
  flex-direction: column; 
  align-items: center;
  gap: 50px;
}

.news-item-card {
  background: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  border: none;
  overflow: hidden;
  width: 80%;
  margin: 1rem 0;
  text-align: left;
  position: relative; 
  transition: transform 0.2s, box-shadow 0.2s, height 0.3s; 
}

.news-item-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
  height: auto; 
}

.news-item-card h2 {
  font-size: 4.0rem;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
  padding: 3.0rem;
}

.news-item-card h3 {
  font-size: 2.0rem;
  font-weight: 300;
  color: #6e6e6e;
  margin-bottom: 1rem;
  text-align: start;
  padding: 2.0rem;
}

.news-item-card p {
  font-size: 1.8rem;
  color: #292929;
  padding: 2.0rem;
  opacity: 0; 
  transition: opacity 0.3s ease-in-out;
  display: none; 
  text-align: justify;
}

.news-item-card:hover p {
  opacity: 1; 
  display: block;
}

.news-item-card img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  align-self: center;
}



@media (max-width: 768px) {
  .news-container-top {
    padding: 8.0rem;
    max-height: 80vh;

  }

  .news-container-top h1 {
    font-size: 8.0rem;
  }
  .news-container-top h2 {
    font-size: 3.0rem;
  }
  .news-container-top p, h3 {
    font-size: 1.5rem;
  }

  .news-item-card {
    padding: 1.5rem;
  }
} */



















/* Admin Panel */
.layout-flex {
    display: flex;
    height: 100vh;
  }

  .sidebarnavs{
    padding:  1rem;
  }
  
  .contentsidebar {
    flex: 0 0 300px;
    background-color: #1b1b1b;
    color: white;
    transition: transform 0.3s ease;
  }
  
  .main-content {
    flex: 1;
    padding: 10px;
    background-color: #f7f7f7;
  }
  
  .header-sidebar {
    background-color: #222222;
    height: 130px;
    border-radius: 0 0 20px 20px;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }
  
  .titlecontainer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .titlecontainer p {
    color: #ffffff;
    font-size: large;
    letter-spacing: 1.0px;
  }
  
  .brand {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    font-size: large;
  }
  
  .navbar {
    background-color: #343a40;
  }
  
  .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.7);
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
  
  .navbar-light .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }
  
  .admin-display-flex {
    flex-direction: column;
    height: 100vh;
  }
  
  .sidebar {
    width: 300;
    flex-shrink: 0;
  }
  
  .flex-grow-1 {
    overflow-y: auto;
  }
  
  .nav {
    display: flex;
    flex-direction: column;
  }
  
  .nav-link {
    color: white !important;
    display: flex;
    align-items: center;
    padding: 1.0rem;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;

    
  }

 

  .nav-link i {
    margin-right: 10px;
    
  }
  
  .nav-link:hover {
    background-color: #FFD700;
    text-decoration: none;
  }
  
  .nav-link:hover,
  .nav-link:hover i {
    color: #2c2c2c !important;
  }
  
  .bg-custom {
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    color: #ffffff;
  }
  
  @media (max-width: 768px) {
    .contentsidebar {
      position: fixed;
      z-index: 1050;
      transform: translateX(-100%);
      height: 100%;
    }
  
    .contentsidebar.open {
      transform: translateX(0);
    }
  
    .main-content {
      margin-left: 0;
    }
  
    .layout-flex.sidebar-open .main-content {
      margin-left: 300px;
    }
  }

.headertitle h1 {
    color: #000000;
}

/* Admin Panel Dashboard */

.dashboard-container {
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
  }
  .dashboard-container  h6 {
    color: #000;
  }
  

.card-bg{
    border: none;
    background-color: #FFD700;
}
.counter-card h1 {
    color: #ffffff;
    font-size: 5.0rem;
    font-weight: bold;
    
}

.counter-card h5 {
    color: #ffffff;
    font-size: 1.0rem;
    font-weight: 300;
    
}

  .main-hr {
    border-top: 4px solid #707070; 
    width: 100%; 
    margin: 0 auto; 
}

/* Admin Panel Accomplishment */

.accomplish-table-custom {
    width: 100%;
    border-radius: 18px;
    overflow: hidden; 
  
}
  
.accomplish-table-custom th, .table-custom td {
    vertical-align: middle; 
}
  
.accomplish-table-custom img {
    border-radius: 5px; 
}
  
.accomplish-data-style {
    color: #161616; 
}


  
 /* Admin Panel News */

.news-table-custom {
    width: 100%;
    border-radius: 18px;
    overflow: hidden; 
  
}
  
.news-table-custom th, .table-custom td {
    vertical-align: middle; 
}
  
.news-table-custom img {
    border-radius: 5px; 
}
  
.news-data-style {
    color: #161616; 
}

 /* Testimonials Panel News */

 .testimonial-table-custom {
    width: 100%;
    border-radius: 18px;
    overflow: hidden; 
  
}
  
.testimonial-table-custom th, .table-custom td {
    vertical-align: middle; 
}
  
.testimonial-table-custom img {
    border-radius: 5px; 
}
  
.testimonial-data-style {
    color: #161616; 
}


/* Error Modal Style */
.error-modal-title {
    color: #161616; 
}
.error-modal-message {
    color: #161616; 
}


/* Add News Modal */



.addnewsmodal-body {
    width: 60vw;
    display: block;
}
  
.newsmodal-label {
    color: #5f5f5f; 
    font-weight: bold;
}
  
.newsmodal-control {
    width: 100%;
    margin-bottom: 1rem;
}
.newsmodal-control .newsmodal-form-group {
    width: 100%;
}

.newsmodal-title{
    color: #161616; 
}

.addnewsmodal-footer{
    width: 100%;
    margin-bottom: 1rem;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Global Modal */

.global-modal-title{
    color: #161616; 
}

.global-modal-label {
    color: #383838; 
    font-weight: bold;
}

.global-control {

    width: 100%;
    margin-bottom: 1rem;
}
.global-modal-control  {
    width: 100%;
}

.global-modal-control .global-modal-form-group {
    width: 100%;
}


 /* Trainees Panel News */

 .trainees-table-custom {
    width: 100%;
    border-radius: 18px;
    overflow: hidden; 
  
}
  
.trainees-table-custom th, .table-custom td {
    vertical-align: middle; 
}
  
.trainees-table-custom img {
    border-radius: 5px; 
}
  
.trainees-data-style {
    color: #161616; 
}



/* Trainee Session */
.ts-container {
  width: 100%;
  max-height: 90vh; 
  overflow-y: auto;
}

.trainee-session-container h4 {
  padding: 1.0rem;
  color: #161616;
  margin-bottom: 0.5rem; 
  text-align: center;
}

.trainee-session-container {
  display: flex;
  width: 100%;
}
.trainee-session-container p{
 color: #2564c4;
 margin-bottom: 0.5rem; 
 text-align: center;
 padding: 1.0rem;

 font-weight: 400;

}

.details-row p{
  color: #303030;
  font-weight: 500;
}
.details-single p{
  color: #3a3a3a;
  font-weight: 500;
}

.trainee-session-container-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem; 
}

.trainee-session-container-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainee-details-container {
  padding: 1rem;
  line-height: 1.5; /* Adjusted line height */
}

.details-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem; /* Shorter distance */
}

.details-pair {
  flex: 1;
}

.details-pair p {
  margin-bottom: 0.5rem; /* Shorter distance */
}

.details-single p {
  margin-bottom: 0.5rem; /* Shorter distance */
}

.big-card {
  height: 100% !important
}
.trainee-session-card  {
  border-radius: 20px;
  border: none;
  margin: 2.0rem;
  padding: 1.0rem;
  
  
}

.trainee-session-card h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  text-align: left;
  margin: 10px;
  padding: 10px;
  color: #000;
}

.trainee-session-card .session-package-title{
  font-size: 3.0rem;
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  text-align: left;
  margin: 10px;
  padding: 10px;
  color: #000;
}

.trainee-session-headers{
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  text-align: left;
  margin-left: 20px;
  color: #000000;
  
  animation: fadeIn 1s ease-in-out;
}


.trainee-session-card-body{
  padding: 1px;
}
















.gray-bg {
  background: #ffffff;
}

.multi-step-container {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.multi-step-container.hidden {
  opacity: 0;
  visibility: hidden;
}


.multi-step #multi-step-progressbar li:last-child:after {
  width: 50%;
  opacity: 0;
}


@media (max-width: 980px){
  .multi-step *{
    margin-right: 0
  }
  .multi-step #multi-step-progressbar{
    padding: 0px;
  }
}


.multi-step * {
  margin: 0;
  padding: 0;
  
}

.multi-step-main-container {
  width: 100%;
}

.multi-step html {
  height: 100%;
}

.multi-step h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-family: sans-serif;
  text-align: left;
  margin: 10px;
  padding: 10px;
  color: #000;
  
  
  animation: fadeIn 1s ease-in-out;
}


.multi-step #multi-step-progressbar i {
  transform: scale(1.5);
  padding: 1.5rem;
}

.multi-step #multi-step-form {
  text-align: center;
  position: relative;
  margin-top: 20px;
  width: 100%;

  /* flex-direction: column;
  display: flex; */
  align-items: normal;
}

.multi-step #multi-step-form fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.multi-step .multi-step-finish {
  text-align: center;
}

.multi-step #multi-step-form fieldset:not(:first-of-type) {
  display: none;
}

.multi-step #multi-step-form .multi-step-previous-step,
.multi-step #multi-step-form .multi-step-next-step {
  width: 100px;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
  animation: fadeIn 0.5s ease-in-out;
}

.multi-step .multi-step-form,
.multi-step .multi-step-previous-step {
  background: #616161;
}

.multi-step .multi-step-form,
.multi-step .multi-step-next-step {
  background: #FFD700;
}

.multi-step #multi-step-form .multi-step-previous-step:hover,
.multi-step #multi-step-form .multi-step-previous-step:focus {
  background-color: #000000;
}

.multi-step #multi-step-form .multi-step-next-step:hover,
.multi-step #multi-step-form .multi-step-next-step:focus {
  background-color: #348bb9;
}

.multi-step .multi-step-text {
  color: #FFD700;
  font-weight: normal;
}

.multi-step #multi-step-progressbar {
  margin-bottom: 30px;

  color: lightgrey;
  display: flex;
  justify-content: flex-start;
  position: relative;


  padding: 5.0rem;
  white-space: nowrap; 
  width: auto;

  overflow: auto;
}


.multi-step-controlled #multi-step-progressbar-controlled {
  margin-bottom: 30px;
  color: lightgrey;
  display: flex;
  justify-content: flex-start;
  position: relative;
  overflow-x: auto;
  padding: 5.0rem;
  width: auto;
  white-space: nowrap;
}

.multi-step #multi-step-progressbar .active {
  color: #FFD700;
}

.multi-step #multi-step-progressbar li {
  list-style-type: none;
  font-size: 15px;
  float: left;
  position: relative;
  font-weight: 400;
  text-align: center;
  min-width: 150px;

}

.multi-step #multi-step-progressbar li:before {
  content: attr(data-step);
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: lightgray;
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
  text-align: center;
  z-index: 1;
  position: relative;
}

.multi-step #multi-step-progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: lightgray;
  position: absolute;
  left: 50%;
  top: 25px;
  z-index: 0;
}

.multi-step #multi-step-progressbar li:first-child:after {
  left: 50%;
}

.multi-step #multi-step-progressbar li:last-child:after {
  width: 50%;
}

.multi-step #multi-step-progressbar li.active:before,
.multi-step #multi-step-progressbar li.active:after {
  background: #FFD700;
}

.multi-step .multi-step-progress {
  height: 20px;
}

.multi-step .multi-step-progress-bar {
  background-color: #FFD700;
}


@media (max-width: 980px) {


  .multi-step #multi-step-progressbar {
    flex-direction: column;
    align-items: center;
    padding: 0%;
  }
  .multi-step #multi-step-progressbar li {
    width: 100%;
    margin-bottom: 10px;
  }
  .multi-step #multi-step-progressbar li:after {
    width: 2px;
    height: 100%;
    top: 30%;
  }
  .multi-step #multi-step-progressbar strong {
    margin-left: 15.0rem;
  }
  .multi-step #multi-step-progressbar li:last-child:after {
    width: 2px;
  }
  .multi-step #multi-step-progressbar i {
    margin-left: 8.0rem;
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}







































/*
Registration Process
*/

.reg-process-cancel-container {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.reg-process-cancel-container button {
  float: none;
  padding: 0.5rem;
  font-size: 1.5rem;
  margin: auto;
}

.reg-process-container {
  margin: auto;
  padding: 2.0rem 12.0rem 5.0rem 12.0rem;
}
.reg-process h2 {
  font-size: 2.75rem;
  color: #fff;
  text-align: left;
}
.reg-process h5 {
  font-size: 1.25rem;
  color: #fff;
  text-align: center;
}
.reg-process h3 {
  font-size: 1.75rem;
  color: #FFD700;
  text-align: right;
}

.reg-card {
  background-color: #00000000;
  border: none;
}

.msform {
  margin-top: 20px;
  text-align: center;
  position: relative;
  margin: auto;
  min-width: 70%;
}
.msform .heading {
  text-transform: uppercase;
  color: #FFD700;
  font-weight: normal;
  font-size: 2.75rem;
}

.msform fieldset {
  background: rgb(27, 27, 27);
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
  display: block;
  justify-content: center;
  text-align: center;
}

.msform input,
.msform textarea {
  padding: 8px 15px 8px 15px;
  border: 1px solid #FFD700;
  border-radius: 0px;
  margin-bottom: 15px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  /* font-family: montserrat; */
  color: white;
  background-color: #737373;
  font-size: 16px;
  /* letter-spacing: 1px; */
  border-radius: 5px;
}

.row .reg-row {
  margin-left: 0; 
  margin-right: 0;
  width: 100%;
}

.row > .col {
  padding-left: 0;
  padding-right: 0;
}

.row.reg-row .col {
  display: flex;
  flex-direction: column;
}

.row .reg-row .col input {
  width: 100%;
  margin-right: 10px;
}

.row .reg-row .col:not(:last-child) {
  
  margin-right: 10px;
}

.fieldlabels {
  font-size: 1.5rem;
  color: #d8d8d8;
  text-align: left;

}

.fs-title {  
  font-size: 25px;  
  color: #FFD700;  
  margin-bottom: 15px;  
  font-weight: normal;  
  text-align: left  
}  

.form-card p {
  color: #bbb;
    font-size: 1.4rem;
    line-height: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05rem;
  text-align: left;
}

.reg-form-steps {
  font-size: 15px;
  color: gray;
  margin-bottom: 1px;
  font-weight: normal;
  text-align: right;
}



.image-placeholder {
  margin-top: 15px;
  padding: 2.0rem;
}

.image-placeholder img {
  width: 100%;
  height: 100%;
}

.error {
  color: red;
  font-size: 1.0rem;
  margin-left: 10px;
}












.msform .action-button {  
  width: 20%;  
  background: #FFD700;  
  font-weight: bold;  
  color: white;  
  border: 0 none;  
  border-radius: 0px;  
  cursor: pointer;  
  padding: 10px 5px;  
  margin: 3.0rem;  
  float: right  
}  
.msform .action-button:hover  
{  
  background-color: #311B92  
}  
.msform .action-button:focus {  
  background-color: #311B92  
}  
.msform .action-button-pre {  
  width: 100px;  
  background: #616161;  
  font-weight: bold;  
  color: white;  
  border: 0 none;  
  border-radius: 0px;  
  cursor: pointer;  
  padding: 10px 5px;  
  margin: 10px 5px 10px 0px;  
  float: right  
}  
.msform .action-button-pre:hover  
{  
  background-color: #000000  
}  
.msform .action-button-pre:focus {  
  background-color: #000000  
} 


@media only screen and (max-width: 800px) {
 
  .reg-process-container {
    padding: 0rem;
  }
  .msform  {
    width: 100%;
  }
  .reg-process h5 {
    font-size: 1.25rem;
    padding: 30px;
  }

  .reg-process h3 {
    text-align: center;
  }

  .reg-process h2 {
    text-align: center;
    margin-bottom: 1.0rem;
  }
  .row.reg-row.justify-content-center.bg-div{
    margin-right: -20px;
    margin-left: -20px;
  }
  .fieldlabels {
    font-size: 1.25rem;
  }
  .msform .action-button {
    padding: 10px 10px 10px 10px;
    margin: 1.0rem;
    width: 25%;
}

}















.progress-tab-new {
  width: 50vw;
}
@media (max-width: 980px) {
  .progress-tab-new {
    width: auto;
  }

}



/* 
        ----------------------------------------
        Client Page 
        ----------------------------------------
*/

.client-page-scale-down {
  transform: scale(0.8);
}
.client-page {
  display: block;
  margin: auto;
  height: 100%;
}

.client-reg-completion {
  color: #ffffff;
  padding: 1.25rem; 
  font-weight: 500;
}

.client-reg-completion a {
  color: #FFD700;  
  text-decoration:underline
}
.section-client {
  background-color: var(--background-color);
}

.client-btn {
  background-color: #FFD700;  
  color: #000;
  border: none;
  cursor: pointer;
  border-radius: 16px; 
  padding: 1.75rem; 
  font-weight: bold;
  float: right;
  margin: 1.5rem;

  font-size: 1.75rem;

}

.client-btn:hover {
  background-color: #1E88E5; /* Darker blue on hover */
}

.client-btn-danger {
  background-color: #ff444d;
}

.client-header {
  font-family: 'Ephesis';
  font-size: 60px;
  font-weight: 100;
  color: #fff;
  line-height: 4.5rem;
}

.client-edit-buttons {
  padding: 1.0rem 2.5rem 1.0rem 2.5rem;
  font-size: 1.5rem;
  color: rgb(41, 41, 41);
}

.client-header span{
  color: #FFD700;
}
.client-description {
  text-align: center;
}

.client-details-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.client-details-pair {

  flex: 1;
  padding: 0 10px; 
}

.client-details-pair p {
  font-weight: 500;
  font-size: 1.75rem;
}

.client-details-pair span {
  color: #93d9ff;
}

.client-details-pair strong {
  font-weight: 400;
  font-size: 1.5rem;
}
.client-input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 12px;
  font-size: 1.5rem;

  color: #1d5a7a;
  font-weight: 500;
}

.client-input:focus {
  outline: none;
  border-color: #FFD700; /* Change border color on focus */
}
@media (max-width: 800px) {
  .client-details-row {
      flex-direction: column;
  }

  .client-details-pair {
      margin-bottom: 1rem;
  }
  .client-header{
    font-size: 40px;
  }
  .trainee-session-card .session-package-title {
    font-size: 2.5rem;
  }
  .client-page-scale-down.trainee-session-card.card.mt-5 {
    width: 100%;
    margin: 0px;
  }
}

.client-page-scale-down.trainee-session-card.card.mt-5 {
  margin-top: 7rem !important;
}




.client-page-container {
  overflow: hidden;
  width: 300px;
  text-align: center;
  padding: 20px;

  width: 100%;
 
}

.pic_container {
  position: relative;
  margin-bottom: 20px;
  margin: auto;
}

.avatar-upload {
  position: relative;
  max-width: 100%;
}

.avatar-edit {
  position: relative;
  left: 70px;
  top: -40px;
  right: 10px;
  z-index: 1;
}

.avatar-edit i {
  color: #505050;
  font-size: 16px; 
  line-height: 36px; 
  z-index: -9999;
}

.avatar-edit input {
  display: none;
}

.avatar-edit label {
  display: inline-block;
  width: 38px;
  height: 38px;
 
  margin-bottom: 0;
  border-radius: 100%;
  background: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}

.avatar-edit label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-preview {
  width: 100px;
  height: 100px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #f8f8f8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10.0rem;
}

.avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.action .menu {
  text-align: left;
}

.action .menu h5 {
  margin: 0 0 20px;
  font-size: 18px;
  color: #ffffff;
}

.action .menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.action .menu ul li {
  margin-bottom: 10px;
}

.action .menu ul li input {
  width: calc(100% - 20px);
  padding: 10px;
  font-size: 14px;
}




/*

Write Testimonial


*/


.write-testimonial-form {
  width: 100%;
  
}

.write-testimonial-form h1 {
  color: #fff;
}

.write-testimonial-form h3 {
  color: #fff;
}

.write-testimonial-pic-container {
  margin: 2.5rem;
}
.write-testimonial-form label {
  color: #fff;
}
.write-testimonial-form .form-group{
  width: 100%;
}

.write-testimonial-add-titles-container {
  margin-top: 2.0rem;
  width: 100%;
}



.write-testimonial-button {
  padding: 1.0rem 3.5rem 1.0rem 3.5rem;
  background-color: #FFD700;
  font-size: 1.5rem;
  font-weight: 500;
  width: 100%;
}

.write-testimonial-header {
  font-family: 'Ephesis';
  font-size: 60px;
  font-weight: 100;
  color: #fff;
  padding: 3.25rem;
}

.write-testimonial-header span {
  color: #FFD700;
  
}

.write-testimonial-form-left {
  display: grid;
  gap: 20px;
  width: 100%;
}

.write-testimonial-form-right {
  display: grid;
  gap: 20px;
  width: 100%;
}
.file-area {
  width: 100%;
  position: relative;
}

.file-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}

.file-area .file-dummy {
  width: 100%;
  padding: 85px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  transition:  0.3s ease-in-out;
}

.file-area:hover .file-dummy {
  background: rgba(255, 255, 255, 0.1);
}

.file-area input[type=file]:focus+.file-dummy {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline: -webkit-focus-ring-color auto 5px;
}

.file-area input[type=file]:valid+.file-dummy {
  border-color: rgba(0, 255, 0, 0.4);
  background-color: rgba(0, 255, 0, 0.3);
}


.write-testimonial-form-columns {
  display: grid;
  
  gap: 20px;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.write-testimonial-label {
  font-weight: 500;
  display: block;
  margin: 4px 0;
  text-transform: uppercase;
  font-size: 13px;
  overflow: hidden;
}

.write-testimonial-form-control {
  display: block;
  padding: 8px 16px;
  width: 100%;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 200;

}

.write-testimonial-title-input {
  margin: 1.5rem;
}


.write-testimonial-form label {
  font-size: 1.5rem;
  padding: 1.0rem;
  color: #FFD700;
} 

.write-testimonial-final-button-container {
  display: flex;
  justify-content: center;
  align-items: center; 
  margin-top: 2rem;
}

.write-testimonial-final-button {
  padding: 1rem 3.5rem; 
  background-color: #FFD700;
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.write-testimonial-final-button:hover {
  background-color: #1e87d9; 
}





@media (min-width: 768px) {
  .write-testimonial-form-columns {
    
      grid-template-columns: 1fr 1fr;
  }
}

























/*Footer*/
.footer_container{
	max-width: 80%;
	margin:auto;
}
.footer_row{
	display: flex;
	flex-wrap: wrap;
}
.list_items {
	list-style: none;
  padding-left: 0px
}
.footer{
	background-color: #333132;
    padding: 30px 0;
    
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #FFD700;
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #FFD700;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 30px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #FFD700;
}
.footer-col .social-links .fab{
    font-family: "Font Awesome 6 Brands";
    font-weight: 500;
    font-size: 20px;
    line-height: 2;
    align-content: center;
    position: relative;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}
.contactInfo{
	margin-bottom: 16px;
}
.contactInfo .iconGroup{
	display: flex;
	align-items: center;
	margin: 15px 0px;
  
}
.iconGroup .icon{
	width: 35px;
	height: 38px;
	border: 2px solid #FFD700;
	border-radius: 50%;
	position: relative;
  margin-right: 10px;
  
}
.iconGroup .icon:hover i{
    color: #FFD700;
}
.iconGroup .icon i{
 
	font-size: 16px;
	color: #ddd;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.iconGroup .details span{
	display: block;
	color: #888;
	font-size: 15px;
}
.iconGroup .details span:nth-child(1){
	color: #ccc;
}

.footer-copyright {
    width: 100%;
    text-align: center;
    left: 50%;
    color: #bbb;
}
.footer-copyright p {
    margin: 0;
}
.footer-developers {
  width: 100%;
  text-align: center;
  left: 50%;
  color: #bbb;
  padding: 1.0rem;
}
.footer-developers p {
  margin: 0;
}

.webversion {
  color: #525252;
}
/*End Footer*/


/* Error Page */ 
.ErrorPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    color: #ffffff;
    text-align: center;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .ErrorPage h1 {
    font-size: 8rem;
    margin: 0;
    animation: bounce 1s infinite;
  }
  
  .ErrorPage h2 {
    font-size: 4rem;
    margin: 0.5rem 0;
  }
  
  .ErrorPage p {
    font-size: 1.5rem;
    margin-top: 1rem;
    max-width: 600px;
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-20px);
    }
    60% {
      transform: translateY(-10px);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .ErrorPage h1 {
      font-size: 6rem;
    }
  
    .ErrorPage h2 {
      font-size: 3rem;
    }
  
    .ErrorPage h4 {
      font-size: 1.2rem;
      margin: 1rem;
    }
  }




  /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 100;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: 'Ephesis';
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  font-family: 'Times New Roman';
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# About Hero Section
--------------------------------------------------------------*/
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}
.accent-background {
  --background-color: #ffd700ab;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #FFD700;
  --contrast-color: #ffffff;
}

:root { 
  --background-color: #000; /* Background color for the entire website, including individual sections */
  --default-color: #b5b5b5; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #fff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #FFD700; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #000; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #fff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

section,
.section {
  color: #ffffff;
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}


.abouthero {
  width: 100%;
  min-height: calc(100vh - 92px);
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abouthero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.abouthero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.abouthero .container {
  position: relative;
  z-index: 3;
}

.abouthero h2 {
  text-align: center;

  color: #ffffff;
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}
.abouthero h2 span {
  color: #FFD700;

}

.abouthero p {
  margin: 5px 0 0 0;
  font-size: 36px;
  font-weight: 600;
 
}

.abouthero p span {
  letter-spacing: 1px;
  font-family: 'Ephesis';
  color: #ffffff;
}

@media (max-width: 768px) {
  .abouthero h2 {
    font-size: 5.0rem;
  }

  .abouthero p {
    font-size:  3.0rem;
  }
}

  
/*--------------------------------------------------------------
# About Resume Section
--------------------------------------------------------------*/

.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  position: relative;
  padding: 120px 0;
}

.stats img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.stats:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 40%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.stats .container {
  position: relative;
  z-index: 3;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  font-size: 48px;
  display: block;
  color: #fdfdfd;
  font-weight: 700;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  color: #fdfdfd;
  font-size: 16px;
  font-weight: 700;
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px; /* Reduced padding to fit larger boxes */
  transition: all ease-in-out 0.4s;
  height: 100%;
  text-align: center; /* Center-align text */
}

.featured-services .service-item .icon {
  margin-bottom: 20px; /* Increased margin for better spacing */
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 48px; /* Larger icon size */
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px; /* Larger font size */
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 16px; /* Larger font size */
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about .tab {
  overflow: hidden;
}

.about .tab button {
  background-color: var(--background-color);
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color: #ffffff;
}

.about .tab button:hover {
  background-color: var(--accent-color);
}

.about .tab button.active {
  background-color: var(--accent-color);
}

.about .tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}

.about .tabcontent.active {
  display: block;
}

.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
  z-index: 1;
}

.about .about-img img {
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 0px 0 0 10px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}


.about h3 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 20px;
    margin-left: 10px;
  }
  .about .tab{
    margin-left: 10px;
  }
}

.about .anav-pills {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .anav-pills li+li {
  margin-left: 40px;
}

.about .anav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--default-color);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
}

.about .anav-link.active {
  color: var(--accent-color);
  background: none;
  border-bottom: 3px solid var(--accent-color);
}

@media (max-width: 575px) {
  .about .anav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--default-color);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

  .services .service-item:hover h3 {
    color: var(--accent-color);
  }
}




/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .container{
  width: 800px;
}
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 12px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .container{
    width: 300px;
  }
  .portfolio .portfolio-filters li {
    font-size: 12px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
.portfolio{
  width: 300px;
}
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}
@media (max-width: 780px){
  .faq .content h3{
    font-weight: 400;
    font-size: 24px
    
  }
  .faq .faq-container .faq-item h3{
    font-size: 14px
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: #FFD700;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #fff;
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}



/* PHP Email Form Messages
------------------------------*/

.php-email-form{
  width: 100%;
}

.php-email-form *{
  padding: 1.0rem;
}

.php-email-form .form-control {
  padding: 1.0rem;
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}






/*
Transition Page Animations
*/

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.5s ease-in forwards;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*COACHES*/
img {
  max-width: 100%;
  display: block;
}

.about-coaches {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-block: min(20vh, 6rem);
  text-align: center;
  width: calc(min(90rem, 90%));
  margin-inline: auto;
}

.about-coaches span,
.about-coaches p,
.about-coaches h2,
.about-coaches h3 {
  letter-spacing: 0.035rem;
}

.about-coaches p {
  line-height: 1.6;
  color: #a3a3a3;
  max-width: 50rem;
  margin: 0 auto;
  font-size: clamp(0.9rem, 0.825rem + 0.3vw, 1.2rem);
}

.about-coaches .bg-watermark {
  color: #a5a4a4;
  font-size: clamp(6rem, 1.3333rem + 14.9333vw, 20rem);
  font-weight: 800;
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%) translateY(-15%);
  user-select: none;
  letter-spacing: 0.5rem;
}

.about-coaches span {
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;
  color: #a3a3a3;
}

.about-coaches h2 {
  font-size: clamp(3.5rem, 3rem + 1.6vw, 5rem);
  margin-top: -0.625rem;
  color: #fff;
}

.about-coaches .cards {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(12rem, 100%), 1fr));
  gap: 2rem;
}

.about-coaches .card {
  position: relative;
  cursor: pointer;
}

.about-coaches .card h3,
.about-coaches .card p {
  text-transform: capitalize;
}

.about-coaches .card h3 {
  font-size: clamp(1rem, 0.9167rem + 0.2667vw, 1.25rem);
  font-weight: 400;
  color: #f6f6f6;
}

.about-coaches .card p {
  font-size: clamp(0.85rem, 0.75rem + 0.32vw, 1.15rem);
  letter-spacing: 0.12rem;
  font-weight: 300;
  max-width: 100%;
}

.about-coaches .card::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 6.25rem;
  z-index: 0;
  transition: 0.3s ease-in-out;
  background: #f2709c;
  background: -webkit-linear-gradient(to left, #ff9472, #f2709c);
  background: linear-gradient(to left, #ff9472, #f2709c);
  top: 0;
  left: 0;
}

.about-coaches .card::after {
  position: absolute;
  inset: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: #232526;
  background: -webkit-linear-gradient(to bottom, hsl(210deg 2.99% 26.27% / 20%), hsl(0deg 0% 3.14% / 90%));
  background: linear-gradient(to bottom, hsl(210deg 2.99% 26.27% / 20%), hsl(0deg 0% 3.14% / 90%));
}

.about-coaches .card img {
  filter: grayscale(100%);
  transition: 0.5s ease;
}

.about-coaches .card-content {
  position: absolute;
  bottom: 0;
  z-index: 99;
  left: 0;
  color: #fff;
  width: 100%;
  padding: 1.875rem 1.25rem;
  text-align: center;
}

.about-coaches .card-content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.about-coaches .card:hover img {
  filter: grayscale(0%);
}

.about-coaches .card:hover::before {
  transform: scale(1.03);
}

.about-coaches .card:nth-child(1)::before,
.about-coaches .card:nth-child(3)::before {
  top: 0;
  left: 0;
}

.about-coaches .card:nth-child(2) {
  transform: translateY(15%);
}

.about-coaches .card:nth-child(2)::before {
  bottom: 0;
  left: 0;
  top: auto;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  padding: 0 10px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}







.partners .img-fluid {
  transition: transform 0.3s ease;
}

.partners .img-fluid:hover {
  transform: scale(1.1);
}

.testminonial-table {
  height: 85vh;
  overflow-x: auto;
  overflow-y: auto;
}
.portfolio-description{
  width: auto;
  align-items: center ;
  margin-left: 50px;
}



@media(max-width:780px){
  .portfolio-info{
    width: auto;
    align-items: center ;
    margin: 10px;
  }
  .portfolio-description{
    margin-right: 10px;
    margin-left: 10px;
  }
}



.scrollable-table {
  height: 85vh;
  overflow-x: auto;
  overflow-y: auto;
}

.scrollable-table-news{
  margin-top: 1.0rem;
  padding: 1.0rem;
  height: 60vh;
  overflow-x: auto;
  overflow-y: auto;
}

.scrollable-table-paymenthistory{
  margin-top: 1.0rem;
  padding: 1.0rem;
  height: 80vh;
  overflow-x: auto;
  overflow-y: auto;
}

@media print {
  .headertitle,
  .nav,
  .btn {
    display: none;
  }
}


.materials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.material-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.material-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.material-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.material-card:hover {
  transform: scale(1.05); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 
}

.material-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.material-link {
  text-decoration: none;
}

.material-link button {
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
}

.learning-material-container {
  
  padding: 5%;
    min-width: none;
    min-height: 1vh;
}