body {
	font-family: "SN Pro", sans-serif;
	/*font-family: "Figtree", sans-serif;*/
	margin: 0;
	min-height: 100dvh;
	min-height: 100vh;
	background: #f8f8f7;
	color: #03193C;
}


button {
	border: 0;
	font-family: "SN Pro", sans-serif;
}


header {
	width: 100vw;
	padding: 20px 65px 20px 50px;
	position: fixed;
	box-sizing: border-box;
	z-index: 99;
}

.header-content {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 50px;
	width: 100%;
	background-color: #f8f8f7;
	backdrop-filter: blur(10px);
	box-sizing: border-box;
	border-radius: 30px;
	padding: 5px 5px;
	border: 1px solid #c7c7c7;
	box-shadow: 0px 5px 30px 0px #0f0f0f13;
}

.logo {
	background-image: url('../resources/logo&text-v2.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: left;
	width: 180px;
	height: 90%;
	margin: 0px 10px;
}

.nav-bar {
	display: flex;
	justify-content: space-around;
	gap: 40px;
}

.nav-bar a {
	text-decoration: none;
	color: #03193C;
	font-size: 16px;
	font-weight: 700;
	transition: .3s;
}

.nav-bar a:hover {
	color: #2a3d5b;
}

.header-btn {
	height: 100%;
	display: flex;
}

.signup-header {
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	width: 100px;
	transition: .3s;
	border-radius: 30px;
	height: 100%;
	background-color: transparent;
	
}

.signup-header:hover {
	background-color: #dadada;
	color: #2e4364;
	
}

.login-header {
	border: 0;
	background: #2e4364;
	border-bottom: 3px solid #000000;
	color: white;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	border-radius: 20px;
	width: 100px;
	height: 100%;
	transition: .3s;
}


.login-header:hover {
	background: #516c99;
}

.menu-icon {
	display: none;
	height: 100%;
}


.main {
	height: 100vh;
	height: 100dvh;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	background-size: cover;
	align-items: center;
	flex-direction: column; 
	background: -webkit-linear-gradient(280deg, #5a7fbb1c 0%, #2e436400 100%);  
	background: linear-gradient(280deg, #5a7fbb27 0%, #2e436400 100%); 
}

.hero-text {
	margin: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 80vw;
}

.supheading {
	background-color: #ffffff94;
	color: #2e4364;
	padding: 5px 20px;
	border-radius: 30px;
	border: 1px solid #dadada;
	font-weight: 500;
	margin: 10px;
}

.tagline {
	font-size: clamp(40px, 5vw, 70px); 
	color: #03193C;
	font-weight: 700;
	text-align: center;
	line-height: clamp(40px, 5vw, 70px);
}

.description {
	text-align: center;
	font-size: clamp(16px, 2vw, 20px);
	width: 70%;
	color: #5c5c5c;
}

.button-tagline {
	margin: 30px;
	display: flex;
	justify-content: center;
	gap: 20px;
}
.register {
	background: #2e4364;
	border-bottom: 3px solid #020a16;
	color: white;
	font-weight: 700;
	border-radius: 10px;
	width: 180px;
	height: 50px;
	font-size: 15px;
	cursor: pointer;
	transition: .3s;
}

.register:hover {
	background: #516c99;
}

.learn-more {
	box-shadow: 0 2px 0 #b8b8b8;
	border: 1px solid #b8b8b8;
	background-color: #f1f1f1;
	color: #2e4364;
	font-weight: 700;
	border-radius: 10px;
	width: 180px;
	height: 50px;
	font-size: 15px;
	cursor: pointer;
	transition: .3s;
}

.learn-more:hover {
	background-color: rgb(255, 255, 255);
}

.login-opacity {
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
	
}

.login-opacity.active {
	display: flex;
	opacity: 1;
}

.close-btn {
	position: absolute;
	top:0;
	right: 0;
	margin: 20px;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	border: none;
	background: #cccccc;
	color: #303030;
	cursor: pointer;
	display: flex; 
	align-items: center; 
	justify-content: center;
	font-size: 12px;
	transition: 0.3s;
}

.close-btn:hover { background: #e8e6e0; }

.login-box {
	background: white;
    padding: 25px 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
	-webkit-animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: scale-in-center 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}


@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.login-box h2 {
	font-size: 40px;
	margin: 0;
	margin-top: 10px;
}

.login-box p {
	margin: 0;
	margin-bottom: 20px;
	margin-top: -5px;
	color: #777;
	
}


.login-body {
	overflow: hidden;
	padding-right: 15px;
}

#loginForm {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.email-container {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}

.email-container input  {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #2e4364;
	border: 1px solid #919191;
}

.email-container label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
}

.email-container input:focus+label, .email-container input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.password-container {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
}

.password-container input {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #000000;
	border: 1px solid #919191;
}

.password-container label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
}

.password-container input:focus+label, .password-container input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.login {
	border: 0;
	background: #2e4364;
	box-shadow: 0 4px 0 #03193C;
	color: white;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	border-radius: 10px;
	width: 100%;
	height: 40px;
	transition: .5s;
	margin-top: 10px;
}

.login:hover {
	background: #516c99;
}

.login-logo {
	background-image: url('../resources/logo.png');
	background-size: cover;
	width: 80px;
	height: 80px;
}

.toggle-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    cursor: pointer;
	transform: translateY(-50%);
}

.forgot-password {
	display: flex;
	justify-content: center;
	color: #5c5c5c;
}

.forgot-password a {
	text-decoration: none;
	color: #03193C;
	font-weight: 600;
	padding-left: 5px;
}

.forgot-password a:hover {
	text-decoration: underline;
}

.features-container {
	display: flex;
	justify-content: center;
    text-align: left;
	padding: 60px 40px;
	background: transparent;
}

.features {
	box-sizing: border-box;
	padding: 40px;
	width: 100%;
}

.features h2 {
    font-size: 3rem;
	margin: 0;
	margin-bottom: 40px;
    text-align: center;
    color: #03193C;
}

.feature-grid {
    display: flex;
	justify-content: center;
	align-items: center;
    gap: 20px;
	height: 450px;
}

.card {
    background: rgb(255, 255, 255);
    padding: 30px 30px;
    border: 1px solid #c7c7c7;
	box-shadow: 0 8px 0 #c7c7c7;
    border-radius: 30px;
	width: 200px;
	height: 320px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	transition: .7s ease;
	
}

.card.active {
	background: #3d4f6d;
	border: 1px solid #3d4f6d;
	box-shadow: 0 8px 0 #03193C;
	height: 350px;
}


.card.active p {
	color: #f5f5f5;
}

.card.active h3 {
	color: #ffda08;
}

.card.active h1 {
	color:#fff9d8;
}


.card h1 {
	color: #e5e5e5;
	font-size: 60px;
	margin: 0;
}

.card h3 {
    margin: 10px 0 0px;
    color: #03193C;
    font-weight: 800;
	font-size: 20px;
}

.card p {
	margin: 10px 0px;
	font-size: 15px;
	font-weight: 500;
	color: #5c5c5c;
}

.pricing {
	box-sizing: border-box;
    padding: 40px 10%;
    background-color: #f0f4f8;
    text-align: center;
    min-height: 100vh;
}

.pricing h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}


.price-box {
	box-sizing: border-box;
    background: white;
    margin: 0 auto;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #03193C;
    width: 100%;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.price-box ul li {
    margin-bottom: 10px;
}

.price-box ul li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
}

.buy {
    width: 100%;
    background-color: #03193C;
    color: white;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
}

.buy:hover {
    background: #2a3d5b;
}

.card i {
	color: #03193C;
}

.icon-medal {
	align-items: center;
}


.FAQ {
	box-sizing: border-box;
	height: 100vh;
    padding: 40px 10%;
    background-color: #f7f7f5;
    text-align: center;
}

.FAQ h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    margin: 0;
    margin-bottom: 20px;
}

/*FOOTER START*/

footer {
	font-size:12px;
	color: white;
	background-color: black;
	border-radius: 90px 90px 0 0;
	height: fit-content;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer {
	width: 90%;
	display: flex;
	justify-content: space-between;
	padding: 80px 0px 40px 0px;
	border-bottom: 1px solid #878787;
	box-sizing: border-box;
}

.logo-box {
	width: 300px;
	font-size: 16px;
	color: #888780;
	font-weight: 500;
}

.logo-box img {
	width: clamp(200px, 25vw, 300px);
}

.links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: #888780;
}

.links h1 {
	font-weight: 400;
}

.links a {
	text-decoration: none;
	color: #b4b2a9;
	font-size: 16px;
	font-weight: 600;
}

.links a:hover {
	color: #f1efe8;
}

.socials {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 15px;
	font-size: 14px;
}

.social-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 8px;
	text-decoration: none;
	background: #2c2c2a;
	cursor: pointer;
	transition: .3s;
}

  .social-btn:hover {
      background: #3c3c3a;
      border-color: rgba(255,255,255,0.18);
    }


.social-btn i {
	color: #888780;
}

.social-btn:hover i {
	color: #d3d1c7;
}

.copyright {
	text-align: center;
	padding: 20px;
	color: #888780;
	font-weight: 600;
}

/*FOOTER END*/

#faq-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.list {
	    border: 1px solid #919191;
	    border-radius: 8px;
}
.faq-question {
    width: 100%;
    padding: 15px 15px;
    color: #03193c;
    background-color: transparent;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.explain-question {
    padding: 0 15px;
    background-color: transparent;
    color: #03193c;
    overflow: hidden;
    text-align: left;
}

.explain-question p {
    margin-top: 0;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(180deg);
}

input[type="checkbox"] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  display: inline-block;
  width: auto;
}


/* CONTACT PAGE */

.contact-main {
	height: 120vh;
	height: 120dvh;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	background-size: cover;
	align-items: center;
	background: -webkit-linear-gradient(280deg, #5a7fbb1c 0%, #2e436400 100%);  
	background: linear-gradient(280deg, #5a7fbb27 0%, #2e436400 100%); 
}

.contact-section {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.contact-container {
	box-sizing: border-box;
	padding: 20px 20px;
	width: 50%;
	z-index: 1;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.contact-container h2 {
	font-size: clamp(40px, 5vw, 70px); 
	color: #03193C;
	font-weight: 700;
	text-align: center;
	line-height: clamp(40px, 5vw, 70px);
	margin: 0;
}

.contact-container p {
	text-align: center;
	font-size: clamp(14px, 2vw, 18px);
	color: #5c5c5c;
	margin: 0;
	margin-bottom: 20px;
}

.contact-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.nama-form {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}

.nama-form input {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #2e4364;
	border: 1px solid #919191;
}

.nama-form label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
	border-radius: 10px;
}

.nama-form input:focus+label, .nama-form input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.email-form {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}

.email-form input {
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #2e4364;
	border: 1px solid #919191;
}

.email-form label {
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
	border-radius: 10px;
}

.email-form input:focus+label, .email-form input:valid+label {
	top: -1px;
	font-size: 14px;
	color: #2e4364;
}

.message-form {
	display: flex;
	flex-direction: column;
	text-align: left;
	width: 100%;
	position: relative;
	margin-bottom: 10px;
}

.message-form textarea {
	font-family: "SN Pro", sans-serif;
	font-size: 16px;
	padding: 10px 10px;
	border-radius: 5px;
	outline-color: #2e4364;
	border: 1px solid #919191;
	min-height: 100px;
	resize: vertical;
}

.message-form label {
	position: absolute;
	top: 10px;
	left: 10px;
	color: #777;
	transition: .3s ease;
	background-color: white;
	padding: 0 5px;
	font-size: 16px;
	border-radius: 10px;
}

.message-form textarea:focus+label, .message-form textarea:valid+label {
	top: -10px;
	font-size: 14px;
	color: #2e4364;
}

.send {
	background: #2e4364;
	border-bottom: 3px solid #020a16;
	color: white;
	font-weight: 700;
	border-radius: 10px;
	width: 100%;
	height: 50px;
	font-size: 15px;
	cursor: pointer;
	transition: .3s;
}

.send:hover {
	background: #516c99;
}

.contact-information {
	box-sizing: border-box;
	padding: 40px 30px;
	width: 30%;
	z-index: 1;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background-color: #31353a;
	border-radius: 15px;
	border-top: 15px solid #516c99;
}

.contact-information h2 {
	font-size: clamp(18px, 3vw, 28px); 
	color: #f0f4f8;
	font-weight: 700;
	text-align: center;
	margin: 0;
}

.contact-information p {
	text-align: center;
	font-size: clamp(12px, 2vw, 16px);
	color: #adadad;
	margin: 0;
	margin-bottom: 20px;
}

.contact-information i {
	color: #cacaca;
	margin-right: 5px;
}

.contact-information span {
	color: #adadad;
	margin-bottom: 12px;
}


@media (max-width: 600px) {

	header {
		width: 100vw;
		padding: 20px 10px;
		position: fixed;
		box-sizing: border-box;
	}

	.nav-bar {
		display: none;
		flex-direction: column;
		gap: 20px;
		position: fixed;
		top: 100%;
		right: 0;
		padding: 30px;
		background-color: #f8f8f7;
		box-sizing: border-box;
		border-radius: 20px;
		margin: 10px 0px;
		border: 1px solid #c7c7c7;
		box-shadow: 0px 5px 30px 0px #0f0f0f13;
		
	}

	.nav-bar.active {
		display: flex;
	}

	.nav-bar a {
		display: flex;
		font-size: 20px;
	}

	.signup-header {
		display: none;
	}

	.menu-icon {
		margin: 0px 20px;
		display: flex;
		align-items: center;
	}

	.features-container {
		display: flex;
		justify-content: center;
		text-align: left;
		padding: 60px 40px;
		background: transparent;
		height: fit-content;
	}

	.features {
		box-sizing: border-box;
		padding: 40px;
		width: fit-content;
	}

	.feature-grid {
		display: flex;
		flex-direction: column;
		justify-content: center;
		gap: 20px;
		height: fit-content;
	}

	.card {
		width: 300px;
		height: auto;	
	}


	.card.active {
		width: 300px;
		height: auto;
	}


}