@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yuji+Syuku&family=Zen+Old+Mincho&display=swap');


body {
  background-color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 9999 !important;
}

section{
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Adjusted heading styles */
h1{
  color: #333;
  text-align: center;
  font-family: Poppins, serif;
  font-weight: 600;
  font-style: normal;
  /* font-family: "Noto Serif JP", serif !important;
  font-weight: 900;
  font-style: normal; */
  font-size: 48px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

h2{
  color: #333;
  text-align: center;
  font-family: Poppins, serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

h3{
    color: #333;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 20px;
}

h4,
h6 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

h5{
    color: #333;
    text-align: center;
    font-weight: 400;
}



/* Adjusted paragraph styles */
p {
    letter-spacing: normal;
    line-height: 1.5;
    text-align: center;
}    

@media (max-width: 768px) {
    h1 {
      font-size: 32px;
    }
}
@media (max-width: 430px) {
  h1 {
    font-size: 24px;
  }
}
/* Header Styling */

.header-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  justify-content: center;
  width: 80%; 
  max-width: 800px;
  padding: 20px; 
  text-align: right; 
}

header {
  display: flex;
  margin-top: 40px;
  flex-direction: row; 
  width: 100vw; 
  height: 80vh; 
}

/* Header left styles */
.header-left {
  flex: 1; 
  background-image: url('../img/advertisement.png');
  background-repeat: no-repeat;
  background-size: contain; /* Ensure the image covers the container */
  background-position: center;
  height: 100%; /* Full height of the header */
}


.sponsor-link1 {
  height: 100px;
  width: 100px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 30px;
  position: absolute;
  top: 15%; 
  left: 45%;
  color: #000000; /* Adjust text color */
  text-decoration: none;
  background-color: rgba(255, 243, 197, 0);
  padding: 5px 10px;
  z-index: 9999;
}

.sponsor-link2 {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 30px;
  position: absolute;
  top: 60%; 
  left: 80%;
  color: #000000; /* Adjust text color */
  text-decoration: none;
  background-color: rgba(255, 243, 197, 0.674);
  padding: 5px 10px;
  /* border-radius: 5px; */
  z-index: 9999;
}
/* Header right styles */
.header-right {
  flex: 1; /* Takes the other half of the header width */
  height: 100%;
  margin-right: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center;
  padding: 20px 10px;
  overflow: hidden;
  box-sizing: border-box; 
}

header p {
  margin-bottom: 10px;
}

.title {
  margin-top: 10px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Adjust spacing between elements if necessary */
  flex: 1;
}

.title h1 {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 48px; /* Adjust font size as necessary */
  font-weight: 700;
}

.logosvg {
  height: 60px; /* Adjust size as necessary */
  width: auto;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 10px; /* Adjust spacing between logo and text if necessary */
}

@media (max-width: 1280px) {
  header {
    padding: 0; /* Adjust padding */
  }
}

@media (max-width: 1024px) {
  header {
    padding: 0; /* Adjust padding */
  }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
  header {
    flex-direction: column; /* Stack elements vertically for mobile desktops */
  }
  
  .header-left {
    height: 80vh; /* Adjust height as needed for mobile */
  }

  .header-right {
    height: auto; /* Adjust height as needed for mobile */
    padding: 10px; /* Adjust padding for mobile */
  }

  .title h1 {
    font-size: 48px; /* Adjust font size for mobile */
  }
}

@media (max-width: 480px) {
  header {
    margin-top: 0;
    flex-direction: column;
    padding: 10px 20px;
    height: 180vh;
  }
  
  .header-left {
    background-image: url('../img/advertisement.gif');
    height: 70vh; 
  }

  .header-right {
    height: auto !important; /* Adjust height based on content */
    padding: 0 15px; /* Adjust padding for mobile */
    margin-right: 0;
  }

  .title {
    display: none;
  }

  /* .title h1 {
    font-size: 32px; 
  } */

  .logo-text {
    flex-direction: column; /* Stack logo and text vertically for smaller screens */
  }

  .chat-container {
    min-width: 100% !important;
    flex-grow: 1 !important;
  }

  #user-input {
    min-width: 100% !important;
  }

  .message-container {
    display: none;
  }

  .kiona-container {
    width: 100% !important;
    height: 80vh !important;
  }

}
/*chat window */

.chat-container {
  flex-grow: 1;
  min-width: 350px;
  width: 100%; /* Adjust width to fit within the parent container */
  max-width: 100%; /* Ensure it does not exceed the container's width */
  height: 60vh; /* Height relative to viewport height */
  padding: 20px; /* Reduced padding for better fit on smaller screens */
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px; /* Adjust margin as needed */
}


/* CHAT WITH KIONA */
@media (min-width: 768px) {
  .col-md-8 {
    height: 90vh;
      justify-items: center;
      flex: 0 0 auto;
      width: 66.66666667%;
      margin: auto;
      padding: 10px 0 0px 0;
  }
}


.kiona-container {
  height: 60vh;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* .chat-container {
  flex-grow: 1;
  width: 80vw; 
  max-width: 100%; 
  height: 60vh;
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column; 
  margin-bottom: 20px !important; 
} */



.chat-messages {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
  gap: 10px;
  overflow: scroll;
}

/* CSS for loading animation with moving dots */
.loading-animation {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.loading-animation .dot1, .loading-animation .dot2, .loading-animation .dot3 {
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 2px;
  animation: loading-animation 1.4s infinite ease-in-out both;
}

.loading-animation .dot1 {
  animation-delay: -0.32s;
}

.loading-animation .dot2 {
  animation-delay: -0.16s;
}

@keyframes loading-animation {
  0%, 80%, 100% {
      transform: scale(0);
  }
  40% {
      transform: scale(1);
  }
}
.message {
  max-width: 100%; 
  word-wrap: break-word; 
  overflow-wrap: break-word;
}

.user-message {
  padding: 15px !important;
  font-size: 14px !important;
  border-radius: 10px !important;
  background-color: #ddd !important;
  color: #000 !important;
  align-self: flex-end; 
  text-align: left;
  letter-spacing: 0.05em;
  line-height: 1.5;
}


.ai-message {
  display: flex;
  flex-direction: column !important;
  align-items: flex-start;
  padding: 10px !important;
  border-radius: 8px;
  background-color: #fff !important;
  color: #000 !important;
  align-self: flex-start; 
  text-align: left; 
  letter-spacing: 0.05em; 
  line-height: 1.5;
}

.ai-message p{
  text-align: left;
  font-size: 14px !important;
}
.suggestions-container {
  width: 100%; /* Full width of the chat container */
  padding: 10px;
  background-color: #f8f9fa; /* Light background color to differentiate from chat messages */
  border-radius: 10px; /* Matching border radius with chat messages */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow to lift the container */
  margin-top: 20px; /* Space above the suggestions container */
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Ensure buttons fill the width of the container */
  opacity: 0; /* Start with hidden */
  transform: translateY(-20px); /* Initial position for smooth transition */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transition effects */
}

/* Suggestions Header */
.suggestions-header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px; /* Space below the header */
  color: #333; /* Darker color for better readability */
}

/* Suggestion Buttons */
.suggestion-button {
  font-size: 14px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #333; /* Outline color */
  background-color: #fff; /* White background for buttons */
  color: #333; /* Text color matching the outline */
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  opacity: 0; /* Start with hidden */
  transform: translateY(10px); /* Initial position for smooth transition */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* Button Hover Effects */
.suggestion-button:hover {
  background-color: #333; /* Background color on hover */
  color: #fff; /* Text color on hover */
}

.text-wrapper {
  display: flex;
  flex-direction: column;
  width: 100% !important;
}
.icons-container {
  display: flex;
  align-items: center; /* Optional: vertically align icons if needed */
  gap: 10px; /* Optional: add space between icons */
}

.pin-container, .rating-icons {
  display: flex;
  align-items: center; /* Optional: vertically align icons within their container */
}
/* .pin-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
} */

.pin-icon {
  align-self: flex-end;
  height: 1.5em;
  cursor: pointer;
  transition: 0.2s;
}

.pin-icon:hover {
  background-image: url('img/ipin-hover.svg');
}

.rating {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.5rem;
}

/* .rating-icons {
  display: flex;
  align-items: center;
} */
.rating-icons img {
  height: 1.5em;
  margin-right: 0.5rem;
  cursor: pointer;
}
.rating-icons img:hover {
  fill: #761616;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  width: 100%
}

#user-input {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  flex: 1;
  align-items: center;
  height: 40px;
  margin-right: 20px !important;
  overflow: scroll;
}

#user-input:hover,
#user-input:focus {
  border: 2px solid #7e7e7e;
  box-shadow: 0px 0px 0px 7px rgba(85, 95, 104, 0.2);
  background-color: white;
}

/* .mb-2 {
  margin-bottom: 0 !important;
} */




#send-button {
width: 150px;
background-color: #333;
color: #fff;
font-size: 16px;
border: 1px solid #333; /* Border added */
border-radius: 10px;
height: 50px; /* Increased height for better visibility */
justify-content: center;
align-items: center;
margin: -10px auto 10; /* Center button horizontally */
cursor: pointer;
transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Added border-color to the transition */
}



/* Hover effect */
#send-button:hover, #save-button:hover {
  background-color: #fafafa !important;
  color: #333 !important;
  border-color: #333 !important;
}


.form-control {
  flex: 1;
  margin-right: 10px;
}

/* Media query for screens less than 912px wide */
@media (max-width: 986px) {
  .header-content {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 90%;
  }

  .register-link {
    margin-top: 10px !important;
  }
  .title {
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
  }

  .title h1:first-child {
    font-size: 48px; /* Adjust font size as necessary for smaller screens */
    margin-top: 10px; /* Adjust margin for smaller screens */
  }

  .logo-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .logo-text h1 {
    font-size: 36px; /* Adjust font size as necessary for smaller screens */
    margin-top: 10px; /* Adjust margin for smaller screens */
  }

  .logosvg {
    height: 40px; /* Adjust size as necessary for smaller screens */
  }


}

@media (max-width: 545px) {
  section {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .title {
    gap: 0;
  }
  .logo-text {
    flex-direction: column; /* Keep the logo and text in one row */
    align-items: center;
    gap: 5px; 
  }

  .title h1:first-child {
    font-size: 32px; /* Adjust font size for smaller screens */
    margin-top: 5px; /* Adjust margin for smaller screens */
  }

  .logo-text h1 {
    font-size: 32px; /* Adjust font size for smaller screens */
    margin-top: 10px; /* Adjust margin for smaller screens */
  }

  
  .logosvg {
    height: 40px; /* Adjust size for smaller screens */
    width: auto;
  }
}

.ml12{
  
  /* font-weight: 200;
  font-size: 1.8em; */
  text-transform: uppercase;
  /* letter-spacing: 0.5em; */
}

.ml12 .letter {
  display: inline-block;
  line-height: 1em;
}
.moving2 .letter{
  display: inline-block;
  line-height: 1em;
}

.custom-btn-head {
  width: 220px;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  /* margin-top: 10px; */
  border: 1px solid #333;
  border-radius: 20px;
  height: 50px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.custom-btn-head:hover {
  background-color: #fafafa !important;
  color: #333 !important;
  border-color: #333 !important;
}

.register-link {
  font-size: 14px;
  text-align: center;
  display: inline-block;
  color: rgb(88, 0, 0);
  margin-top: 20px;
  text-decoration: underline;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 8px 16px;
}

.register-link:hover {
  transform: translateY(-4px);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  color: #333;
}


  @media screen and (max-width: 430px) {
    header h1 {
        font-size: 32px; /* Adjusted font size for smaller screens */
        line-height: 1.2; /* Adjusted line height for better readability */
        margin-top: 20px;
    }
    .custom-btn-head{
      width: 170px;
      font-size: 14px;
      height: 40px;
      justify-content: center;
      align-items: center;
    }

}


/* Navbar Styling */
.navbar {
    font-size: 16px;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    background-color: rgba(255, 255, 255, 0.8); /* Initial background color (white with some opacity) */
    backdrop-filter: blur(10px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    transition: background-color 0.3s ease;
    z-index: 1000;
    position: sticky;
    top: 0;
    border-bottom: 0.5px solid rgba(145, 145, 145, 0.316);
}


.navbar-brand img{
  width: 160px !important;
  height: 50px !important;
}


.nav-link {
  cursor: pointer;
  margin: auto;
  color: #333 !important;
}

.nav-link:hover {
  background-color: #9d9d9d29;
  color: #333;
}
.custom-btn {
  width: 150px;
background-color: #333;
color: #fff;
border: 1px solid #333; /* Border added */
border-radius: 20px;
height: 40px; /* Increased height for better visibility */
justify-content: center;
align-items: center;
margin: -10px auto 10; 
display: block; /* Change display to block */
cursor: pointer;
transition: background-color 0.3s, color 0.3s, border-color 0.3s; /* Added border-color to the transition */
}

.custom-btn:hover{
 background-color: #fafafa !important;
color: #333 !important;
border-color: #333 !important;
}

.navbar-collapse {
  display: none;
}

@media (max-width: 1024px) {
  .navbar-collapse {
      display: block; 
  }
}

@media (max-width: 430px) {
  .custom-btn {
    width: 120px;
    font-size: 14px;
    font-weight: 600;
  }
}
/* Styles for the login form */
.login-form {
  position: fixed; /* Change position to fixed */
  top: 50%; /* Position it in the middle vertically */
  left: 50%; /* Position it in the middle horizontally */
  transform: translate(-50%, -50%); /* Center it precisely */
  width: 400px; /* Set the desired width */
  max-width: 400px; /* Set maximum width to ensure responsiveness */
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 9999; /* Ensure form stays above background */
  display: none; /* Initially hide the form */
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

@media (max-width: 430px) {
  .login-form {
    max-width: 80%;
    max-height: fit-content;
  }
  
  .form-title {
    margin-bottom: 10px;
  }

  input {
    max-width: 100%;
    align-self: center;
    margin: auto;
  }
}


/* Style for the blurred background */
.blurred-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  filter: blur(5px); /* Adjust the blur intensity as needed */
  z-index: 998; 
  display: none;
}

.signup-link {
  margin-top: 10px;
}
.signup-link a {
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s; 
}

.signup-link a:hover {
  background-color: #c9c9c9;
}
#signin {
  margin-top: 16px;
}

form{
  margin-top: 10px;
}
.form-group {
  position: relative;
  padding-right: 15px;
  /* margin-bottom: 20px; */
  overflow: hidden;
}

.form-group:last-child {
  margin-bottom: 0px;
}
/* .form-button { */
  /* justify-content: center;
  align-items: center;
} */
input {
  display: block;
  width: 100%;
  height: 60px;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #9999998d;
  border-left: 1px solid #9999998d;
  border-radius: 10px;
  font-family: inherit;
  box-shadow: 5px 5px 5px rgba(128, 128, 128, 0.2);
  transition: all 0.1s;
}

input::placeholder {
  color: #999;
}

/* Hover and focus styles for inputs */
input:hover,
input:focus {
  border: 1.5px solid #42212181;
  box-shadow: 8px 8px 8px rgba(204, 131, 131, 0.4);
  /* background-color: white; */
  outline: none;
}

.form-group.form-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
input.form-submit {
  width: 200px;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
  border: 1px solid #333;
  border-radius: 20px;
  height: 50px;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

input.form-submit:hover {
  background-color: #fafafa !important;
  color: #333 !important;
  border-color: #333 !important;
  box-shadow: none;
}


/* Introduction and How It Works Section */
.my-container {
    /* height: 80vh !important; */
    width: 90% !important;
    margin: 20px; /* Adjust margin */
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.intro-back {
  width: 80%;
  margin: auto; /* Center the image within its container */
  background-color: none;
  display: block;
}

.intro-back-container{
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto; 
}
@media (max-width: 1024px) {
  .my-container {
    margin: 0;
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  .py-5 {
    padding-top: 5px !important;
  }
  .my-container {
    margin: 0;
    width: 100% !important;
  }

  .my-container p {
    text-align: left;
  }
  .intro-back {
    width: 100%;
  }
}
/* PLAN */
.plan h2 {
  color: #c60000;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0px;
}
.plan h5 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 10px 0;
}
.plan h6 {
  font-size: 18px;
  font-weight: 400;
}
.plan-wrapper {
  display: flex;
  flex-direction: column; 
  align-items: center;  /* Align items to the start to allow the taller container to grow */
}

.free-plan,
.pay-as-you-go {
  text-align: center;
  width: 550px; 
  padding: 40px;
  border-radius: 20px;
  border: 8px solid #b30101;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.145);
  display: flex;
  flex-direction: column;  /* Arrange content inside the columns vertically */
  justify-content: space-between;  /* Distribute space between and around content items */
}


.free-plan {
  margin: 20px 50px 50px 50px;  /* Top and bottom margin */
  padding: 60px;
}

.pay-as-you-go {
  padding: 40px 60px 40px 60px;
  margin: 30px;
  flex-grow: 1;  /* Allow this container to grow taller */
}

.pay-as-you-go img {
  max-width: 80px;
}

.pay-as-you-go h2 {
  margin-bottom: 5px;
}

.steps {
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; /* Align items in the center vertically */
  gap: 20px; /* Optional: add space between the steps */
}

.step {
  width: 80%;
  text-align: center;
  flex: 1; /* Optional: make steps take equal space */
  padding: 10px;
  border-bottom: 2px solid #c60000;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.step p {
  margin-bottom: 0;
}

.free-plan ul {
  padding-left: 0 !important;
}
.free-plan ul li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-left: 15px;
  margin-bottom: 10px;
  background-color: #fff;
  border-bottom: 2px solid #c60000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px; 
}

.pay-btn {
  width: 200px;
  background-color: #333;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  /* margin-top: 10px; */
  border: 1px solid #333;
  border-radius: 20px;
  height: 50px;
  margin-top: 10px;
  align-self: center;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pay-btn:hover {
  background-color: #fafafa !important;
  color: #333 !important;
  border-color: #333 !important;
  outline: none;
}

.middle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 430px) {
  .free-plan,
  .pay-as-you-go {
    width: 90%;
    padding: 20px;
  }

  .plan h2{
    font-size: 36px;
  }

  .plan h6 {
    font-size: 16px;
  }

  .middle {
    font-size: 18px;
  }

  .steps {
    flex-direction: column; /* Stack steps vertically on small screens */
    align-items: center; /* Center steps horizontally */
  }

  .step {
    width: 100%; /* Ensure steps take the full width of the parent container on small screens */
  }

  .arrow {
    display: none;
  }
}
/* EXAMPLES */
.input-examples {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #ddd;
}


/* Adjusted link styles */
.input-example-link {
    color: #333;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.input-example-link:hover {
    transform: translateY(-5px);
}

/* HIGHLIGHTS */
.highlights-section {
  text-align: center;
}

.highlights-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 60px;
  margin: 0 auto;
}

.highlight {
  width: calc(33.33% - 20px); /* Adjust width */
  max-width: 300px;
  padding: 20px;
  margin: 0 auto 20px;
  text-align: center;
  border-bottom: 2px solid #c60000;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.highlight h4 {
  font-size: 20px;
  color: #fafafa;
  font-weight: 400;
  background-color: #333;
  padding: 10px;
  border-radius: 10px;
  margin: 20px;
}

.highlight p {
  width: 90%;
  margin: auto;
  font-size: 16px;
}

/* Media query for screens less than 430px wide */
@media (max-width: 768px) {
  .highlights-container {
      flex-direction: column;
      align-items: center;
  }

  .highlight {
      width: 90%; /* Adjust width to take up most of the screen */
      max-width: 350px; /* Remove max-width constraint */
      margin-bottom: 20px; /* Ensure spacing between items */
  }
}


/* Adjusted media queries */
@media (min-width: 768px) {
    .left-column {
        width: 40%; /* Adjust width */
    }

    .right-column {
        width: 60%; /* Adjust width */
    }
}

@media (min-width: 1200px) {
    .highlight {
        width: calc(25% - 20px); /* Adjust width */
    }
}

.adsbygoogle {
  border: 1px solid rgba(0, 0, 0, 0.1);
}



.questionary {
  margin: 20px 30px 0 30px;
}

.questions {
  background-color: #ff5c5c49;
  font-size: 14px !important;
  font-weight: 500;
  padding: 10px;
}

/* Balance Card Styles */
.buy-coin {
  margin: auto; /* Align to the right */
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 20px;
  /* box-shadow: 3px -3px 7px #cbcbcb, -10px 10px 22px #e2e2e2; */
  height: 70px; /* Adjust height to match the navbar height */
  width: 200px;
  text-align: center; /* Center the content */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  align-items: center;
  border-bottom: 2px solid #c60000;
  z-index: 999;
  cursor: pointer;
  transition: 0.2ms;
}

.buy-coin:hover {
  box-shadow: 4px 8px 4px rgba(27, 27, 27, 0.243);
}

.buy-now {
  font-weight: 600;
  text-decoration: underline;
  color: #333;
}

.round-div {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
  color: #c60000;
  font-weight: bold;
  border: 2px solid #c60000;
  margin-right: 10px;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  .chat-container {
    width: 90vw; /* Adjust width for smaller screens */
  }

  .input-container {
    display: flex;
    flex-direction: column;
  }
  #user-input {
    min-width: 350px;
    width: 100%; /* Make user-input take full width */
    margin-right: 0 !important; /* Remove right margin */
  }

  #send-button {
    min-width: 250px;
    width: 40%; /* Make send button take full width */
    margin-top: 10px; /* Add top margin to separate it from input */
  }
}
/* Modal styles */
.modal {
  display: none; /* Hidden by default */
  margin: auto;
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}
.coin-buy {
  align-self: center;
  font-weight: 700;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .chat-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .chat-messages {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    flex-basis: auto;
    min-width: 0;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  .user-message {
    padding: 15px;
    border-radius: 10px;
    background-color: #007bff;
    color: #fff;
    align-self: flex-end;
    text-align: left;
    letter-spacing: 0.05em;
    line-height: 1.5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }

  .ai-message {
    padding: 10px;
    border-radius: 8px;
    background-color: #f1f1f1;
    color: #000;
    align-self: flex-start;
    text-align: left;
    letter-spacing: 0.05em;
    line-height: 1.5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
}


/*BLOG*/

/* .column {
    width: 25% !important;
    padding: 20px;
}  */

/* Default styles */
.blog-article {
  width: 100%;
  align-items: center;
  justify-content: center;
}

.blog-article h3 {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}

.blog-article p {
  text-align: justify;
  margin-top: 10px;
  margin-bottom: 20px;
}

.blog-article img {
  width: 70%;
  max-width: 400px; 
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-article img {
      width: 100%;
      max-width: 300px;
  }
}

@media (max-width: 576px) {
  .blog-article img {
      max-width: 250px;
  }
}




/* FAQ SECTION */
.faq-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-item {
  margin-bottom: 20px !important;
  width: 100%; /* Adjust the width as needed */
  max-width: 70%;
  text-align: left; /* Ensure the text aligns to the left */
}

.category-title {
  margin-top: 10px;
  padding-left: 15%;
  padding-right: 20px;
  display: flex;
  align-items: flex-start;
  width: 100%;
  text-align: left;
}

.question {
  /* border-radius: 10px; */
  border: 2px solid rgb(79, 0, 198);
  padding: 15px 20px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center; /* Vertically center the content */
  display: flex;
  background-color: #ffffff;
  box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.243);
  border-radius: 20px;
  transition: background-color 0.3s, box-shadow 0.3s; /* Smooth transitions */
}


.question:hover {
  /* background-color: #ffffff;  */
  /* border-top: 1px solid #c60000; */
  box-shadow: 4px 8px 4px rgba(27, 27, 27, 0.243);
  
}
.answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 10px;
}

.answer p {
  text-align: left !important;
  margin-top: 20px;
}

.answer.open {
  max-height: fit-content; /* Set your desired max height */
}


footer {
  background-color: #dfdfdf;
  padding-top: 20px;
}

footer li {
  margin-top: 10px;
  margin-bottom: 10px;
}
footer a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3em;
  font-size: 16px;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

footer a:hover {
  background-color: #9d9d9d29;
  color: #333;
}

footer img {
  max-width: 150px;
}

/* .row {
  display: flex;
  flex-direction: row;
} */

.row p {
  font-size: 18px;
  font-weight: 500;
}

/*buycoin page css*/
.coin-list {
  width: 80%;
}
.coin-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-top: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 10px;
}

.coin-info {
  display: flex;
  align-items: center;
}

.coin-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.coin-details {
  display: flex;
  flex-direction: column;
}

.coin-number {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.coin-price {
  font-size: 16px;
  font-weight: 500;
  color: #a60000;
  letter-spacing: 0.1em;
}

.buy-button {
  width: 30%;
  min-width: 130px;
  max-width: 200px;
  text-decoration: none;
  color: white;
  background-color: #333;
  padding: 10px 20px;
  border: 2px solid #850009;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #850009;
  border: 2px solid #850009;
}


@media (max-width: 620px){
  .coin-list {
    width: 100%;
  }

  .coin-list li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
}

.contactform{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 20px auto 20px auto;
}
