::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;
}

.img-banner {
	height: 50vh;
	width: 100%;

	float: right;
}

.list-icon {
	padding-top: 6px;
	margin-right: 10px;
}

.list-item-title {
	font-size: 1.1rem;
	font-weight: 530;
}

.last-p {
	font-size: 1.15rem;
	font-style: italic;
}

.button-text {
	margin-top: 15px;
}

.bg-skyblue {
	background-color: #cfe2ff !important;
	color: black;
}

.circle-icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
  margin-top: 5px;
}

.info-card {
	margin-top: 15px;
	padding: 5px 20px;
	background-color: #cfe2ff;
	color: black;
	border-radius: 5px;
	font-weight: 350;
	width: fit-content;
	border: 1px solid #689ded;
}

.p-link{
  margin-left: 8px;
  color: #5a42f3;
}

/* 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 */