 ::after, ::before {
    box-sizing: border-box;
}


.logo-img {
  height: 50px;
}

.active-nav{
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5)
}

.navbar {
  background-color: white;
  border-bottom: 1px solid #e5e5e5;
}


.banner-image {
  max-width: 100%;
  /* height: 60vh; */
  border-radius: 5%;
}

@media screen and (max-width: 1200px) {
  .banner-image {
    height: auto;
    width: 100%;
    margin-top: 20px;
  }
  
}

@media screen and (max-width: 768px) {
  .widget-small-mt{
    margin-top: 20px; 
  }
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.statements-section{
	height: auto;
	padding: 60px 20px;
	background-color: #f9f9fb;
	font-family: 'Inter', sans-serif;
}

.statements-icon {
  height: 50px;
  width: 50px;
  border-radius: 20px;
}

/* circular icon wrapper */
.circle-icon{
  border-radius: 50%;
  width: 200px;
}

.mr-5 {
  margin-right: 20px !important;
}

.allignment-margin-1 {
  margin-top: 25px;
}

@media screen and (max-width: 1211px) {
  .small-screen-mb-5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 1400px) {
  
  .allignment-margin-1 {
    margin-top: 0;
  }
}


/* Scoped styles for waitlist start */

.waitlist-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
  background: #fff;
  font-family: Arial, sans-serif;
}

.waitlist-container {
	display: flex;
	justify-content: center;
	align-items: center;
	/* height: 100vh; */
	background: #fff;
	font-family: Arial, sans-serif;
}

.waitlist-card {
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 2rem;
	/* width: 350px; */
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.waitlist-title {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #222;
}

.waitlist-subtitle {
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
	color: #444;
}

.waitlist-form input {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	outline: none;
	font-size: 1rem;
}

.waitlist-form textarea {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	outline: none;
	font-size: 1rem;
	resize: none;
}

.waitlist-form button {
	width: 100%;
	padding: 0.75rem;
	border: none;
	border-radius: 8px;
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease;
}

.waitlist-form button:hover {
	background: linear-gradient(135deg, #5a0fb5, #1d63d8);
}

.waitlist-note {
	margin-top: 1rem;
	font-size: 0.85rem;
	color: #666;
}
/* Scoped styles for waitlist  end */

/* waitlist success toast start*/
.hidden {
  display: none;
}
/* waitlist success toast  end */



/* Footer Section  start */
.footer-section {
  background-color: #f9f9fb;
  padding: 40px 20px 20px;
  font-family: 'Inter', sans-serif;
  color: #222;
  border-top: 1px solid #e5e5e5;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  /* font-size: 1.5rem; */
  margin-bottom: 2px;
  color: #3a3a3a;
}

.footer-brand p {
  font-size: 0.95rem;
  color: #666;
  max-width: 280px;
  line-height: 1.4;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  /* gap: 20px;
  margin: 20px 0; */
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #444;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #5a42f3; /* accent color */
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 5px;
  color: #444;
}

.email-link {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #777;
}

.footer-name{
  margin-bottom: 0.5rem;
}

.linkedin-icon {
  font-size: 1.5rem;
  color: #0A66C2;
  margin-right: 10px;
  transform: translateY(2px);
}

@media screen and (max-width: 768px) {
  .small-screen-footer{
    margin-bottom: 20px;
  }
}
/* Footer Section end */