@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
    /* font-size */
    --big-font-size: 5rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --medium-font-size: 0.9rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --font-medium: 500;
    --font-semi-bold: 600;

    /* color */

     
     /*Aaru*/
     --theme-color:#0078d7;   
}

/*scrollbar style*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
    cursor: pointer;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-thumb-color); 
    border-radius: 6px; 
    height: 2px;
    cursor: pointer;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: var(--scrollbar-thumb-color);
    cursor: pointer;
}

.version{
    text-align: right !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  body{
    overflow-x: hidden;
    overflow-y: auto;
  }

.map_background {
    background-image: url('images/world_web_bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 90vh;
    display: flex; /* Change to flex */
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
}

/* Top right buttons */
.top_right_buttons {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 1000; /* make sure it stays above */
}

.top_right_buttons button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.top_right_buttons button:hover {
    background: #0056b3;
}

/* Ensure content starts below buttons */
.map_center_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 70px; /* push content down below top buttons */
    padding: 0 15px;
    text-align: center;
}

.map_center_container img {
    width: 250px;
    height: auto;
    margin-bottom: 20px;
    text-align: center;
}

.map_center_container h1 {
    color: black;
    font-size: var(--big-font-size);
    text-align: center;
    width: 80%;
    font-weight: normal;
}
.map_center_container h1 span {
    color: black;
    font-weight: var(--font-semi-bold);
}
.refund_text{
    font-size: 1em !important;
    margin : 0em 2em;
}

.features {
    display: flex;
    flex-wrap: wrap;              /* allows wrapping on smaller screens */
    justify-content: center;      /* center items horizontally */
    gap: 3em;                     /* space between items */
    text-align: center;           /* text aligned under icons */
    margin: 2em 0em;
}

.feature-item {
    display: flex;
    flex-direction: column;       /* icon on top, text below */
    align-items: center;          /* center both horizontally */
    width: 180px;                 /* control width (adjust as needed) */
}

.feature-item img {
    width: 50px;                  /* icon size */
    height: 50px;
    margin-bottom: 10px;          /* gap between icon and text */
}

.btn-icon {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    vertical-align: middle;
}


.footer_nav {
    /*position: absolute;*/
    /*right: 0;*/
    /*bottom: 0;*/
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    z-index: 2;
}

.policies{
    display: flex;
    gap: 1em;
}

.privacy_policy_text{
    color: var(--theme-color);
    text-decoration: none;
}

.next_btn {
    background-color: var(--theme-color);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: var(--font-semi-bold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}

.next_btn:hover {
    background-color: #005fa3;
}


/* SignUp Page Styles */


.signup_background {
    position: relative;
    background-image: url('images/web_bg.jpg');
    background-size: cover;
    background-position: center;
    width: 100vw;
    height: 100vh;
    height: auto; 
    filter: blur(5px);
    transition: filter 0.5s ease, background-image 0.5s ease;
}

.signup_background.loaded {
    filter: blur(0);
}

.logo_corner {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column; /* stack logo and text */
    align-items: center; /* center align text under logo */
}

.logo_corner img {
    width: 160px;
    height: auto;
}

.eco_text {
    font-family: 'Qwigley', cursive; /* Aquafina-style script */
    font-size: 28px; /* adjust size */
    color: var(--theme-color); /* or your theme color */
    margin-top: 5px; /* spacing between logo and text */
}

.sidebar {
    position: absolute;
    top: 160px;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    z-index: 2;
    margin-top: 3em;
    margin-left: 7em;
    margin-right: 7em;
    justify-content: center;
}
.sidebar.left { left: 0; align-items: center; }
.sidebar.right { right: 0; align-items: center; }
.sidebar_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    gap: 10px;
}

.sidebar_icon {
    width: 60px;
    height: 60px;
    margin-bottom: 5px;
    object-fit: contain;
}
.sidebar_item i {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.sidebar_item span:nth-child(3) {
    font-weight: normal;
    text-align: center;
    font-size: 0.7em;
}

.main_content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

.panel_title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 24px;
    text-align: center;
    margin-bottom: 0.6em;
}

.signup_center_container {
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 450px;
    max-width: 500px;
    width: 100%;
    margin-bottom: 30px;
}

.signup_center_container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    text-align: center;
}

.login_btn {
    float: right;
    font-size: 16px;
    padding: 6px 14px;
    background: #007bff;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 0.5em;
    margin-left: 3em;
}
.login_btn:hover {
    background: #0056b3;
}
.signup_form label{
    font-weight: var(--font-medium);
    margin: 0.4em 0.6em;
}
.signup_form input {
    width: 100%;
    margin-bottom: 5px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    margin-top: 0.5em;
    font-weight: normal;
}


.signup_form input::placeholder {
    color: #b0b0b0;
    opacity: 1;
    font-weight: normal !important;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.signup_form input:focus {
    border-color: var(--theme-color) !important;
    outline: none !important;
    color: black !important;        
    font-weight: normal !important; 
}

.callback_slots {
    width: 100%;
    font-size: 0.98rem;
    color: #222;
}

.callback_title {
    font-weight: normal;
    text-align: left;
}

.callback_options {
    display: flex;
    flex-direction: row;
    gap: 18px;
}

.callback_options input[type="checkbox"] {
    margin-bottom: 0;
    margin-right: 0.5em;
    margin-top: 0;
}

.callback_options label {
    display: flex;
    align-items: center;
    margin-right: 0;
    white-space: nowrap;
    margin: 1em 0em;
    font-weight: normal;
}

.signup_btn {
    width: 100%;
    background: #0078d7;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 12px 1em;
    margin: 0.7em 0em;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.signup_btn:hover {
    background: #005fa3;
}

.contact_info {
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
}
.contact_info p {
    margin-right: 8px;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.phone-link{
  color: #fff;          /* ✅ make text white */
  text-decoration: none; /* remove underline */
  font-weight: bold;
}
.phone-link:hover{
  color: #ddd;          /* optional hover */
}


/*Login Page*/


/* Toast container */
#toast-container {
  position: fixed;  /* stays fixed on screen */
  bottom: 20px;     /* bottom center */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  pointer-events: none; /* allow clicks through container except on toast */
}

/* Toast box */
.toast {
  position: relative;       /* relative inside fixed container */
  pointer-events: auto;     /* allow interaction with toast itself */
  background: #fff;         /* White background */
  color: #333;              /* Dark text */
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  animation: slideIn 0.4s ease forwards;
  font-family: "Segoe UI", sans-serif;
  border-left: 6px solid var(--theme-color); /* Default left border */
  overflow: hidden;
}

/* Success & Error colors */
.toast.success { border-left-color: #2ecc71; }
.toast.error { border-left-color: #e74c3c; }
.toast.warning { border-left-color: #ffc107; }

/* Close button */
.toast button {
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  font-weight: bold;
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.toast button:hover {
  color: #000;
}

/* Slide in animation */
@keyframes slideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Inline validation error */
.input-error {
  border: 1px solid #e74c3c;
}
.error-msg {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 2px;
}

.required-star {
    color: red;
    font-weight: bold;
    margin-left: 1px;
}


/* OTP Verification Screen  */
.otp_container {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.otp-card {
    border-radius: 16px;
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.otp-illustration {
    margin-bottom: 24px;
}
.otp-illustration img {
    width: 350px;
}
.otp-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.otp-subtitle {
    color: #555;
    margin-bottom: 24px;
}
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.otp-inputs input {
    width: 40px;
    height: 48px;
    font-size: 1.5rem;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.otp-actions {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 24px;
}
.otp-actions a {
    color: #1976d2;
    text-decoration: none;
    margin-left: 12px;
    cursor: pointer;
}
.otp-btn {
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}


/* qr section */

.crm-header {
    text-align: center;
    margin-top: 40px;
}
.crm-header h1 {
    color: var(--theme-color);
    font-size: 2rem;
    margin-bottom: 8px;
}
.crm-header p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 32px;
}
.crm-header h2 {
    color: #222;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: 700;
}
.plan-container {
    display: flex;
    justify-content: center;
    gap: 3em;
    margin-bottom: 40px;
}
.plan-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 32px 28px;
    min-width: 300px;
    text-align: center;
    border: 1px solid #eee;
}
.plan-card h2 {
    font-size: 1.3rem;
    color: #222;
    margin-bottom: 16px;
    font-weight: 700;
}
.plan-card .price {
    font-size: 2.2rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 4px;
}
.plan-card .per {
    font-size: 1rem;
    color: #555;
    margin-bottom: 12px;
}
.plan-card p{
    font-size: 0.9em;
    font-weight: normal;
    margin: 1em 0em;
}
.plan-card p:nth-of-type(1) {
    background-color: yellow;
    color: black;
    font-weight: bold;
    text-align: center;
    padding: 0.5em 0em;
    border-radius: 20px;
    font-size: 1em;
}
.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    color: #444;
    font-size: 1rem;
}
.plan-card ul li {
    margin-bottom: 8px;
    font-weight: normal;
}

.plan-card ul li:nth-child(1) {
    margin: 20px 0px;
}

.plan-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}
.price-bold {
    font-size: 2.2rem;
    font-weight: 700;
    color: #222;
}

.price-period {
    font-size: 1.1rem;
    color: #555;
    font-weight: 400;
}

.plan-price-line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
}

.strike {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  color: #999;
}

.plan-btn{
    width: 15em;
    padding: 12px 50px;
    margin: 12px 0;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 8px;
    border: 1px solid #1976d2;
    background: #fff;
    color: #1976d2;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;      /* vertical center */
    justify-content: center;  /* horizontal center */
    font-weight: 600;
    white-space: nowrap;
}

.plan-btn.selected,
.plan-btn:hover {
    background: #1976d2;
    color: #fff;
}
.payment-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* 🔷 Payment Section (Row Layout) */
.payment-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.payment-instructions-wrapper,
.qr-section,
.qr-details {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    text-align: center;
}

.payment-instructions-wrapper{
    text-align: left;
}

/* 🔷 Instructions */
.payment-instructions {
    font-size: 1.08rem;
    list-style: decimal inside;
    padding: 0 10px;
    margin: 0;
    color: #222;
}

.payment-instructions li {
    margin-bottom: 8px;
    font-weight: normal;
    font-size: 0.9rem;
}

/* 🔷 QR Code */
.qr-code {
    width: 200px;
    height: 200px;
    border: 1px solid #ddd;
    padding: 0.4em;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.qr-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: normal;
}

/* 🔷 Payment Details */
.qr-details {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-top: 20px;
}

.qr-details p {
    margin: 0.5em 0;
    font-weight: normal;
}

.confirm-payment {
    position: fixed;       /* fix at viewport */
    bottom: 20px;          /* distance from bottom */
    right: 20px;           /* distance from right */
    z-index: 1000;         /* on top of other content */
}

/* Button styling stays the same */
.confirm-payment button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: background 0.3s;
}

.confirm-payment button:hover {
    background-color: #218838;
}
/*.qr-details p:nth-child(3),.qr-details p:nth-child(4){*/
/*    font-weight: bold;*/
/*}*/
#name, #company, #role {
  text-transform: capitalize;
}

/*login Page Style */

.login_container {
    background: rgba(255,255,255,0.98);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 450px;
    max-width: 500px;
    width: 100%;
    margin-top: -15em !important;
    margin-bottom: 30px;
}

.login_container h1 {
    font-size: 2rem;
    font-weight: 700;
    color: black;
    text-align: center;
}

/* Login card */
.login-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.login-card h2 {
    margin-bottom: 20px;
    color: #333;
}

.login-card input {
    width: 100%;
    padding: 12px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.login-btn {
    padding: 12px 20px;
    background: var(--theme-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #1d3f58;
}


/*Success page*/

.success-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical centering */
    align-items: center;     /* horizontal centering */
    height: 100vh;           /* full viewport height */
    text-align: center;
}

.success-container h1 {
    color: green;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.success-container p {
    color: black;
    font-size: 1.2em;
    margin-bottom: 30px; /* space before button */
}

.success-container .home-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* space between icon and text */
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: var(--theme-color); /* change color if needed */
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s;
}

.success-container .home-btn:hover {
    background-color: #0056b3;
}

.success-container .success-img {
    width: 500px;       /* adjust size */
    height: 500px;
    object-fit: contain;
    margin-bottom: 20px; /* space between image and text */
}

.form-row {
  display: flex;
  align-items: center;
  justify-content:center;
  gap: 10px;
  max-width: 100%;
  justify-content: space-between; /* inputs left, icon+checkbox right */
}

.form-group {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

.whatsapp-action {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  margin-top: 30px;
}

.whatsapp-action input[type="checkbox"] {
  width: 20px;       /* force width */
  height: 20px;      /* force height */
}

.whatsapp-icon {
  font-size: 20px;
}



