:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --lead-color: #555555;
  --hero-bg: #1e1e1e;
  --accent-color: #1abc9c;
  --nav-bg: #ffffff;
  --link-color: #1abc9c;
  --list-bg: #ffffff;
  --list-border: #dee2e6;
  --list-text: #333333;
}

.iconsspecial{
  height: 25px;
  width: 25px;
  fill: #1abc9c;
}

.iconsspecialWhiteHeader{
  height: 30px;
  width: 30px;
  fill: white;
}

.iconsspecialWhite{
  height: 20px;
  width: 20px;
  fill: white;
}

.iconsspecialWhite:hover{
  height: 20px;
  width: 20px;
  fill: #1abc9c;
}

.iconsspecialWhiteHeader:hover{
  height: 30px;
  width: 30px;
  fill: #1abc9c;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Segoe UI', sans-serif;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar, .bg-light {
  background-color: var(--nav-bg) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-toggler{
  background-color: white;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

.navbar-nav .nav-link {
  margin-left: 1rem;
  font-weight: 500;
}

.hero-section {
  background-color: var(--hero-bg);
  color: white;
  padding: 100px 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23444444' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 40px;
  position: relative;
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.4), rgba(0,0,0,0));
  z-index: -1;
}

.hero-section .row {
  align-items: center;
}

.hero-section .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-in-out;
  text-align: left;
}

.hero-section .hero-content.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.hero-section .lead {
  font-size: 1.25rem;
  color: #bbb;
}

.hero-section .btn-warning,
.hero-section .btnview {
  background-color: var(--accent-color);
  border: none;
  color: white;
}

.hero-section .btn-warning:hover,
.hero-section .btnview:hover {
  background-color: white;
  color:#16a085;
}

/* New image column styles */
.hero-section .hero-image img {
  max-width: 300px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero-section .hero-image img:hover {
  transform: scale(1.05);
}

/* Responsive image alignment */
@media (max-width: 991.98px) {
  .hero-section .hero-content {
    text-align: center;
  }
  .hero-section .hero-image {
    margin-top: 40px;
  }
}


.devname{
  color:#16a085;
}

.list-group-item {
  background-color: var(--list-bg);
  border-color: var(--list-border);
  color: var(--list-text);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
  --bg-color: #121212;
  --text-color: #f1f1f1;
  --lead-color: #cccccc;
  --hero-bg: #1a1a1a;
  --nav-bg: #1e1e1e;
  --link-color: #66ffcc;
  --list-bg: #1e1e1e;
  --list-border: #444;
  --list-text: #e0e0e0;
}

body.dark-mode .navbar-light .navbar-nav .nav-link {
  color: #ddd;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--accent-color);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}

#myBtn:hover {
  background-color: #16a085;
}

.ms-3 {
  margin-left: 1rem !important;
}

.btndownload{
  background-color: #16a085;
  color: white;
}

.btndownload.iconsspecialWhite:hover{
  background-color: white;
  color: #16a085;
  border-color: #16a085;
  fill: #1abc9c;
}

.btndownload:hover{
  background-color: white;
  color: #16a085;
  border-color: #16a085;
}

.btnview{
  background-color: #16a085;
  color: white;
}

.btnview:hover{
  background-color: white;
  color: #16a085;
  border-color: #16a085;
}

.btncontact{
  background-color: #16a085;
  color: white;
}

.btncontact:hover{
  background-color: white!important;
  color: #16a085;
  border-color: #16a085;
}

footer {
  font-size: 0.9rem;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.navbar-brand{
  color: rgb(194, 194, 194);
}

.card {
  border: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

body.dark-mode .card {
  background-color: #1f1f1f;
  color: #e0e0e0;
}

body.dark-mode .card a.btn-outline-primary {
  border-color: #66ffcc;
  color: #66ffcc;
}

body.dark-mode .card a.btn-outline-primary:hover {
  background-color: #66ffcc;
  color: #121212;
}

.foremployers{
  padding-top: 2%;
}

.btncontact {
  background-color: var(--accent-color);
  color: white;
  border: none;
}

.btncontact:hover {
  background-color: #16a085;
}

body.dark-mode #formResponse {
  color: #90ee90;
}