.navbar-nav .nav-link {
  font-size: 14px !important;
  font-family: 'Roboto', Arial, sans-serif !important;
  color: #fff !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}

/* Navbar background color set to black for consistency */
.navbar.second-header,
#primary-header.navbar,
.header-top.first-header {
  background-color: #000 !important;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #e3ebff 0%, #c7d2fe 100%);
  margin: 0;
  padding: 0;
}
.container {
    margin-top: 120px;
}
.tech-title h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #1D157C;
  margin-bottom: 0.5rem;
}
.tech-title p {
  font-size: 1.2rem;
  color: #3C5494;
}
.tech-cards {
  margin-top: 2rem;
}
.tech-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  transition: transform 0.2s;
}
.tech-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(29,21,124,0.12);
}
.tech-card h2 {
  font-size: 1.5rem;
  color: #007bff;
  font-weight: 600;
  margin-bottom: 1rem;
}
.tech-card ul {
  padding-left: 1.2rem;
}
.tech-card li {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: #343536;
  line-height: 1.7;
}
.tech-card.coding {
  border-left: 6px solid #007bff;
}
.tech-card.graphics {
  border-left: 6px solid #5B7BCE;
}
.tech-gallery h2 {
  font-size: 1.4rem;
  color: #1D157C;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding: 0.7rem 1.2rem;
}
.gallery-images {
  gap: 1.5rem;
}
.gallery-img {
  width: 180px;
  height: 120px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-img:hover {
  transform: scale(1.07);
  box-shadow: 0 6px 18px rgba(29,21,124,0.15);
}
/* Header styles for consistency */
#header.fixed-top {
  z-index: 1030;
}
#bdNavbar {
  background-color: #000000;
}

.header-top.first-header {
  background: #111 !important;
  color: #fff;
  font-size: 15px;
}
.header-top .info li,
.header-top .social-links li {
  color: #fff;
}
.header-top .social-links a svg {
  fill: #fff;
}
.navbar.second-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.navbar .navbar-brand .logo {
  max-height: 60px;
}
.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff !important;
  letter-spacing: 0.5px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #007bff !important;
}
.navbar-toggler {
  background-color: transparent !important;
  border: none !important;
  border-radius: 8px;
}
.navbar-toggler svg {
  color: #acaaaa;
  fill: #1a087e !important;
}
.offcanvas-header .btn-close-black {
  background-color: #222;
  color: #fff;
}
.dropdown-menu {
  background: #000000;
  border-radius: 0.5rem;
}
.header-bottom .navbar-nav{
  padding: 20px 20px 20px 20px;
}
.header-bottom .navbar-nav a{
  font-size: 27px;
  padding: 20px 20px 20px 20px
}
#primary-header {
  background-color: #222;
}
#navbar-search-input {
  border-radius: 0.5rem;
}
/* Footer styles for consistency */
footer {
  background: var(--primary-color);
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border-top: 4px solid #fff;
  position: relative;
  z-index: 2;
}
.footer-menu {
  margin-top: 3.5rem;
}
.footer-menu .logo {
  max-width: 320px;
  margin-bottom: 1.2rem;
}
.footer-menu h5,
.footer-menu h6 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #fff;
}
.footer-menu ul.menu-list {
  padding-left: 0;
}
.footer-menu ul.menu-list li {
  margin-bottom: 0.5rem;
}
.footer-menu ul.menu-list a {
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu ul.menu-list a:hover {
  color: #e3ebff;
}
.footer-bottom {
  border-top: 1px solid #fff;
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: 0.95rem;
  color: #fff;
}
.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: #007bff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: background 0.2s, color 0.2s;
  border: 2px solid #007bff;
}
.footer-social-links a:hover {
  background: #007bff;
  color: #fff;
  border-color: #fff;
}
.footer-social-links a svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  transition: fill 0.2s;
}
@media (max-width: 768px) {
  .tech-title h1 {
    font-size: 2rem;
  }
  .gallery-img {
    width: 120px;
    height: 80px;
  }
  .tech-card {
    padding: 1.2rem 0.7rem;
  }
  .footer-menu {
    margin-bottom: 1rem;
  }
  .footer-menu .logo {
    max-width: 220px;
  }

  .navbar-nav .nav-link {
		font-size: 21px !important;
		font-family: 'Roboto', Arial, sans-serif !important;
		color: #fff !important;
		text-transform: uppercase !important;
		font-weight: 500 !important;
		letter-spacing: 0.5px !important;
	}
}
