/* styles.css */

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px;
}

h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 10px;
}

nav a {
  color: #333;
  text-decoration: none;
}

section {
  margin-bottom: 20px;
}

/* footer {
  background-color: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
} */
footer {
  position: fixed;
  text-align: center;
  height: 30px;
  bottom: 0;
  width: 100%;
}
.rightAlign {
  text-align: right;
} 

.white-color {
  color: rgb(250, 250, 250)
}
.bg-black {
  background-color: black;
}
.color-yellow {
  color: yellow
}
.color-white {
  color: white;
  font-style: oblique;
}
.color-green {
  color:green;
}
.body-bg {
  background-color: #f1f5f5;
}
.nav-bg {
  background-color: #090929;
}
.color-blue {
  color: blue
}

.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
h4 {
  margin-top: 40px;
  font-weight: bold;
}
i {
  font-weight: bold;
}
pre {
    background-color: black;
    color: white;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 20px;
}
.cardBgColor {
  background-color: #a9bad1;
}

.blog-post-image {
  max-width: 100%;    /* Makes the image take up the full width of its container */
  height: auto;       /* Maintains the aspect ratio */
}

/* Optional: Media query to make images even smaller on very small screens like mobile */
@media (max-width: 576px) {
  .blog-post-image {
      max-width: 100%;  /* Full width on small screens */
      height: auto;     /* Maintain aspect ratio */
  }
}
.custom-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px;
  background: linear-gradient(45deg, #090929, #538b9a);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-left: 14px;
  margin-bottom: 14px;
}

.custom-home-btn:hover {
  background: linear-gradient(45deg, #090929, #538b9a);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.custom-home-btn:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.custom-home-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #fff;
  color: #090929;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.custom-home-btn:hover .btn-icon {
  background-color: #e0e0e0;
  color: #090929;
  transform: scale(1.1);
}

.main-bg-clr {
  background-color:#090929 !important;
}

.dropdown-item {
  color: white !important;
}
/* Remove background color change on hover */
.dropdown-item:hover {
    background-color: transparent  !important;
    color: rgb(255, 255, 255)  !important; /* Optional: Change text color when hovered */
    font-weight: 600  !important; /* Optional: Add underline on hover */
}

/* Optional: Add additional focus effect for accessibility */
.dropdown-item:focus {
    outline: none  !important;
    color: rgb(255, 255, 255)  !important;
    font-weight: 600  !important;
}

.dropdown-item:active {
	outline: none  !important;
	color: rgb(255, 255, 255)  !important;
	font-weight: 600  !important;
}