.subtitle {
  font-size: 0.5em; /* adjust as needed */
  margin: 0;
  font-weight: 500;
}

.header-top {
	background: #303030;
	height: 40px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #303030;
}

.header-top span {
	color: #d4d4d4;
	font-size: 9px;
}

.top-search {
	display: flex;
}

.top-search input {
	height: 26px;
	border: 1px solid #303030;
	padding: 0 10px;
	font-size: 13px;
	border-radius: 3px 0 0 3px;
}

.top-search button {
	height: 26px;
	border: 1px solid #0070c0;
	border-left: none;
	background: #0070c0;
	color: #ffffff;
	padding: 0 10px;
	border-radius: 0 3px 3px 0;
	cursor: pointer;
}








.about-section {
    background: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Optional Parallax Effect */
    padding: 0px 0;
}

.about-section h2,
.about-section span,
.about-section p {
	color: #000000;
}

.about-section .btn-outline {
	border-color: #0070c0;
	color: #0070c0;
}

.about-section .btn-outline:hover {
	background-color: #0070c0;
	color: #fff;
}

.full-width-image {
    width: 100%;
    margin: 0;          /* No margin */
    padding: 0;         /* No padding */
}

.full-width-image img {
    width: 100%;
    height: 200px;      /* Fixed height */
    object-fit: cover;  /* Keeps it wide without distortion */
    display: block;
}


.features-section {
    background-color: #f3f3f3;
    padding: 20px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.subtitle {
    display: block;
    font-size: 20px;
    margin-bottom: 20px;
    color: #444;
}

.description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* CARD */
.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.feature-card h3 {
    margin: 20px 0 10px;
    font-size: 23px;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 991px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card img {
        height: 220px;
    }
}

.markets-section {
    background: #f3f3f3 url('images/light.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: #ffffff; /* Make all text white */
}

/* Optional overlay */
.markets-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 20px;
    background: rgba(255, 255, 255, 0);
    z-index: 0;
}

.markets-section .container {
    position: relative;
    z-index: 1;
}

/* Ensure headings, paragraphs, spans are white */
.markets-section h1,
.markets-section h2,
.markets-section h3,
.markets-section h4,
.markets-section h5,
.markets-section h6,
.markets-section p,
.markets-section span {
    color: #000000;
}

/* Optional: make links white too */
.markets-section a {
    color: #000000;
}





/* Floating Chat Icon */
/* Chatbot Floating Icon */
#chatbot-icon {
  position: fixed;
  bottom: 50px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  animation: anime 2s infinite ease-in-out alternate;
  -webkit-animation: anime 2s infinite ease-in-out alternate;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
  z-index: 99999;

  /* Blue Border */
  border: 3px solid #0070c0;
}

@keyframes anime{
	  100%{
		transform: translateY(10px);
		-webkit-transform: translateY(100px0);
		-moz-transform: translateY(100px);
		-ms-transform: translateY(100px);
		-o-transform: translateY(100px);
		box-shadow: 0 2px 2px 2px rgba(0,0,0,0.2);
	}
  }

/* Profile Image Inside Circle */
#chatbot-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover Effect */
#chatbot-icon:hover {
  transform: scale(1.1);
}

/* Chatbot Container */
#chatbot-container {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 350px;
  height: 450px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 99999;
}

/* Hide Chatbot Initially */
.hidden {
  display: none !important;
}

/* Chatbot Header */
#chatbot-header {
  background-color: #0070c0;
  color: white;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

#close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Chatbot Body */
#chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Chatbot Messages */
#chatbot-messages {
  display: flex;
  flex-direction: column;
}

.message {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  max-width: 85%;
}

.message.user {
  background-color: #d0cece;
  color: #303030;
  align-self: flex-end;
}

.message.bot {
  background-color: #0070c0;
  color: white;
  align-self: flex-start;
}

/* Input Section */
#chatbot-input-container {
  display: flex;
  padding: 10px;
  border-top: 1px solid #303030;
  background-color: #303030;
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #303030;
  border-radius: 10px;
  background-color: #ffffff;
  color: #303030;
}

#send-btn {
  margin-left: 10px;
  padding: 10px 15px;
  background-color: #0070c0;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

#send-btn:hover {
  background-color: #bdbdbd;
}