
*{
	margin:0;
	padding:0;
	box-sizing: border-box; 
	font-family: "Poppins" , sans-serif;
}

body{
	display: flex;
	justify-content: center;
	align-items:center;
	min-height:100vh;
	background-color:#000000;
	background-size:cover;
	background-position: center	;
    
	
	
	
}

header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	padding: 20px 100px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	z-index:99;
	color:#000000;
}
.Logo{
	font-size:2em;
	color:#000000;
	user-select:none;
}


.navigation a:hover::after{
	transform-origin:left;
	transform: scaleX(1);
}
.navigation .btnLogin-popup{
	background: linear-gradient(90deg, gold, orange);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.navigation .btnLogin-popup:hover{
	background: linear-gradient(90deg, white, gold); /* Reverse gradient on hover */
    color: black;
    transform: scale(1.1); /* Slightly enlarge */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
}

.navigation .btnLogin-popup:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus glow */
}
.wrapper{
	position:relative;
	width:400px;
	height:440px;
	background:transparent;
	border:2px solid rgba(255, 255, 255, .5);
	border-radius:20px;
	backdrop-filter:blur(20px);
	box-shadow:0 0 30px rgba(0, 0, 0, .5);
	display: flex;
	justify-content:center;
	align-items:center;
    margin-top: 85px;
	overflow: hidden;
	transform:scale(0);
	transition: transform .5s ease height .2s ease;
}
.wrapper.active-popup{
	transform:scale(1);
}

.wrapper.active{
	height:520px;

}

.wrapper .form-box{
	width:100%;
	padding:40px;
}

.wrapper .form-box.login{
	transition: transform .18s ease;
	transform: translateX(0);
}

.wrapper.active .form-box.login{
	transition:none;
	transform: translateX(-400px);
}

.wrapper .form-box.register{
	position:absolute;
	transition:none;
	transform:translateX(400px);
    
}

.wrapper.active .form-box.register{
	transition: transform .18s ease;
	transform: translateX(0);
}

.wrapper .icon-close{
	position: absolute;
	top:0;
	right:0;
	width:45px;
	height:45px;
	background: #162938;
	font-size:2em;
	color:#fff ;
	display:flex;
	justify-content:center;
	align-items:center;
	border-bottom-left-radius:20px;
	cursor:pointer;
	z-index:1;
}


.form-box .L{
	font-size:2em;
	color:#000000;
	text-align:center;
}

.form-box .S{
	font-size:2em;
	color:#000000;
	text-align:center;
   
}


.input-box{
	position:relative;
	width:100%;
	height:50px;
	border-bottom:2px solid #162938;
	margin:30px 0;
}

.input-box label{
	position: absolute;
	top:50%;
	left:5px;
	transform:translateY(-50%);
	font-size:1em;
	color: #162938;
	font-weight:500;
	pointer-events:none;
	transition: .5s;
}


.input-box input:focus~label,
.input-box input:valid~label{
	top: -5px;
    transform:translateY(-50%);
}



.input-box input{
	width:100%;
	height:100%;
	background:transparent;
	border:none;
	outline:none;
	font-size:1em;
	color:gold;
	font-weight:600;
	padding:0 35px 0 5px;
}

.input-box .icon{
	position:absolute;
	right:8px;
	font-size:1.2em;
	color:gold;
	line-height:57px;
}

.remember-forgot {
	font-size:0.9em;
	color:#162938;
	font-weight:500;
	margin:-15px 0 15px;
	display :flex;
	justify-content: space-between;
}

.remember-forgot label input {
	accent-color:#162938;
	margin-right:3px;
}

.remember-forgot a{
	color:#162938;
	text-decoration:none;
}

.remember-forgot a:hover{
	text-decoration: underline;
}

/* Login and signup button*/
.btn{
	width: 100%;
    padding: 12px;
    font-size: 1.3em;
    font-weight: bold; /* Bold text */
    color: white; /* White text for better contrast */
    background: linear-gradient(90deg, gold, orange); /* Gradient effect */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
}

.btn:hover {
    background: linear-gradient(90deg, orange, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
    color: #000000;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus effect */
}

a {
  color: inherit;
  text-decoration: inherit;
}

.login-register{
	font-size: .9em;
	color:#162938;
	text-align:center;
	font-weight:500;
	margin:25px 0 10px;
}
.login-register p a{
	color:#162938;
	text-decoration:none;
	font-weight:600;
}
.login-register p a:hover{
	text-decoration:underline;
}

/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9; /* Light gray background */
    color: #333; /* Dark text for readability */
    line-height: 1.6;
}

/* Header Styling */
header {
    background-color: #686A6C; /* Gold background */
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(219, 17, 17, 0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
header .logo h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: gold; /* Dark text */
}
header nav {
    display: flex;
    gap: 20px;
}
header nav a {
    text-decoration: none;
    color: black; /* Dark text */
    font-weight: bold;
    font-size: 1em;
    padding: 10px 15px;
    position: relative; /* Important for the pseudo-element */
    transition: color 0.3s;
}
.navigation :not(.btnLogin-popup)::after {
    content: ''; /* Empty content for the underline */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Hidden initially */
    height: 2px; /* Thickness of the underline */
    background-color: gold; /* Underline color */
    transition: width 0.4s ease-in-out; /* Smooth animation for the underline */
}

header .navigation:hover {
    color: gold; /* Slightly darker text on hover */
    
}
nav a:not(.btnLogin-popup):hover::after {
    width: 100%; /* Expand the underline on hover */
}


/* Section Styling */
section {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 900px;
    background-color: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
section h2 {
    font-size: 2em;
    color: gold; /* Gold headings */
    text-align: center;
    margin-bottom: 20px;
}

/* Form Styling */
.contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fefefe; /* Light background for form */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333; /* Dark text */
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: gold; /* Gold border on focus */
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5); /* Light gold glow */
}
.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background-color: gold;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.contact-form button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: scale(1.05);
}

/* Footer Styling */
footer {
    background-color: #333; /* Dark footer background */
    color: #fff; /* White text for footer */
    text-align: center;
    padding: 20px;
}
footer p {
    margin: 0;
    font-size: 1em;
}

/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {
    header {
        flex-wrap: wrap;
        justify-content: center;
    }
    header .logo {
        text-align: center;
        margin-bottom: 10px;
    }
    header nav {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .contact-form {
        padding: 15px;
    }
}
/* Authentication Forms */
.auth-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* White form background */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
}
.auth-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}
.auth-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}
.auth-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background-color: gold;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}
.auth-form button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: scale(1.05);
}
.auth-form a {
    color: gold;
    text-decoration: none;
}
.auth-form a:hover {
    text-decoration: underline;
}
.auth-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.3em;
    font-weight: bold; /* Bold text */
    color: white; /* White text for better contrast */
    background: linear-gradient(90deg, gold, orange); /* Gradient effect */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.6); /* Glow effect */
}
.auth-form button:hover {
    background: linear-gradient(90deg, orange, gold); /* Reverse gradient on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.8); /* Brighter glow */
}
.auth-form button:focus {
    outline: none;
    box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Focus effect */
}
/* Navigation Styling */
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: black;
    font-size: 1em;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s, background-color 0.3s;
}

/* Standard nav link hover effect */
nav a:hover {
    color: gold;
    border-radius: 5px;
}

/*login*/
/* Pricing Section */
.pricing-section {
    padding: 40px 20px;
    background-color: #f4f4f4; /* Light gray background */
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.pricing-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* Pricing Table Styling */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pricing-item {
    background-color: #fff;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.pricing-item h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.pricing-item p {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 20px;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.pricing-item ul li {
    margin-bottom: 10px;
}

.pricing-item .button {
    display: inline-block;
    padding: 12px 30px;
    background-color: gold;
    color: #333;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.2s;
}

.pricing-item .button:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}

/* Benefits Section */
.pricing-benefits {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-benefits h3 {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

.pricing-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.2em;
    color: #555;
}

.pricing-benefits ul li {
    margin-bottom: 10px;
}
/* Contact Section */
.contact-section {
    padding: 40px 20px;
    background-color: #f4f4f4;
    text-align: left;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

/* Contact Form Styling */
.contact-form {
    background-color: #fff;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 10px;
    
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}


.contact-form input,.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 5px;
}

.contact-form button {
    background-color: gold;
    color: #333;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background-color: #e6c200;
    transform: scale(1.05);
}

/* Contact Details Section */
.contact-details {
    background-color: #fff;
    padding: 30px;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}



.contact-details ul {
    list-style: none;
    padding: 0;
    font-size: 1.2em;
    color: #555;
}

.contact-details ul li {
    margin-bottom: 10px;
}

.contact-details a {
    color: gold;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}
.logo img {
    height: 50px; /* Adjust height as needed */
    width: auto;
    
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
/* button */

/* Hamburger Icon Menu Section------------------------------------------------------------------------------------------------------------------------------   */

  /* Hide checkbox */
  .nav-toggle {
    display: none;
  }
  
  /* Hamburger icon */
  .menu-icon {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 9999;
  }
  .menu-icon span {
    width: 30px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease-in-out;
  }
  /* Responsive full-screen menu */
  @media (max-width: 768px) {
    .menu-icon {
      display: flex;
    }
  
    .navigation {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100%;
      background-color: #fff;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 999;
    }
  
    /*Make sure menu appears when checkbox is checked */
    .nav-toggle:checked ~ .navigation {
      display: flex;
    }
  
   .navigation a {
      font-size: 1.5rem;
      color: #333;
      text-decoration: none;
    }
  }
  
  /* Prevent background scroll and interaction when menu is open */
body.nav-open {
    overflow: hidden;
    pointer-events: auto;
  }
  
  body.nav-open .navigation {
    pointer-events: auto;
  }
  
 /* Hamburger Icon Menu Section------------------------------------------------------------------------------------------------------------------------------   */

