header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 2px 5px #777;
  z-index: 1000;
  padding: 8px 0;
  display: flex;

  justify-content: center;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 20px;
  gap: 0px;
}

@media (max-width: 1111px) {
  .container {
    gap: 30px;
  }
}

.logo img {
  height: 60px;
}

/* Navbar desktop */
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
    height:80px
}

nav a,
.dropbtn {
  font-weight: 700;
  color: #212529;
  font-size: 16px;
  background: none;
  border: none;
  cursor: pointer;
}

nav a:hover,
.dropbtn:hover {
  color: #092f53;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 16px;
}

.icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown:hover .icon {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #212529;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

/* Info section (top right) */
.info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lang-select a {
  font-size: 14px;
  color: #212529;
  cursor: pointer;
}

.phone {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  padding: 0 0.5rem;
  font-size: 12px;
  display: flex;
  align-items: center;
}

.contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #092f53;
  cursor: pointer;
}

.contact i {
  font-size: 14px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.close-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  left: 210px;
  z-index: 1002;
}

.close-btn.active {
  display: block;
}

.menu {
  display: none;
}

.info2 {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: 11111999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  width: 100%;
  max-width: 520px;
  padding: 32px 36px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.modal .close {
  position: absolute;
  right: 16px;
  top: 14px;
  font-size: 28px;
  cursor: pointer;
  color: #032b55;
  transition: color 0.2s ease;
}

.modal .close:hover {
  color: #0a59a8;
}

/* Inputs and button */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
}

form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #032b55, #064997);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(3, 43, 85, 0.25);
}

@media (max-width: 600px) {
  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 28px 24px 24px;
    border-radius: 14px;
    gap: 14px;
  }

  form input,
  form textarea {
    margin: 8px 0;
  }

  form button {
    padding: 12px;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    transition: opacity 0.3s ease;
  }

  .overlay.show {
    display: block;
    opacity: 1;
  }

  .line {
    display: flex;
    gap: 10px;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .menu {
    display: none;
    position: fixed;
    top: 0;
    height: 100%;
    width: 250px;
    background: #fff;
    flex-direction: column;
    padding-top: 60px;
    border-right: 1px solid #ccc;
    z-index: 1001;
    transition: left 0.3s ease;
  }

  .menu.show {
    display: flex;
    left: 0;
  }

  .menu nav {
    display: flex;
    width: 100%;
  }

  .menu nav a,
  .menu .dropbtn {
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: black;
    font-weight: bold;
    text-align: left;
  }

  .menu .dropdown {
    width: 100%;
  }

  .dropdown-content {
    width: 100%;
    padding: 15px 20px;
    border-right: 1px solid #ccc;
  }

  .dropdown .dropdown-content {
    position: relative;
    top: 0;
    left: 0;
    box-shadow: none;
  }

  .info {
    display: none;
  }

  .info2 {
    display: flex;
  }
.contacts{

}
  .contacts #tel {
    padding: 15px 20px;
    font-size: 12px;
  }

  .contacts .contact {
    padding: 15px 20px;
  }
}


 
/* ====== Footer ====== */

footer {
  background-color: #363636;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 60px 20px 30px 20px;
  line-height: 1.6;
  margin: 0 auto;
}

footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-container {
  max-width: 1200px;
}

/* Footer Head */
.footer-head {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
  justify-content: center;
}

.footer_phone-wrap h4 {
  margin-bottom: 20px;
  opacity: .5;
  font-size: 24px;
  color: #eee;
}

.footer_phone-wrap a,
.footer_phone-wrap span {
  transition: .3s;
  color: #fff;
  display: block;
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Apply Button */
.apply_for_footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.apply_for_footer button {
  border: none;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.apply_for_footer button:hover {
  background-color: #ffffffb1;
}

.footer-head .apply_for_footer button div {
  padding: 20px 40px;
  font-size: 15px;
  display: block;
  border-radius: 10px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  z-index: 7;
}
/* Footer Menu */
.footer-menu {
  width: 100%;
}

.footer_menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
}

.footer_nav-item a {
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.footer_nav-item a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #f1c40f;
  transition: width 0.3s;
  position: absolute;
  bottom: -3px;
  left: 0;
}

.footer_nav-item a:hover::after {
  width: 100%;
}

.footer-head .footer-menu .footer_menu-list {
  padding: 4px 0;
  flex-wrap: wrap;
  font-size: 13px;
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
}
/* Footer Bottom */
.footer_bottom {
  padding-bottom: 2rem;
}

.footer_bottom .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  width: 100%;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer-siteby a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: color 0.3s, border-color 0.3s;
}

.footer-siteby {
  color: #fff;
  display: flex;
  justify-content: center;
}

.footer-siteby a img {
  width: 100px;
  height: auto;
}

.footer-siteby a:hover {
  color: #f1c40f;
  border-color: #f1c40f;
}

/* Social Media Icons */
.footer-social-media {
  display: flex;
  gap: 20px;
  justify-content: center;
}




/* Brand colors */.footer-social-media a img {
  width: 30px;
  height: 30px;
  filter: grayscale(100%);
   transition: .2s ease-in-out;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-social-media a:hover img {
  transform: scale(1.15);
}

/* 🎨 Brand color filters (only active on hover) */
.footer-social-media a.youtube:hover img {
  filter: invert(18%) sepia(98%) saturate(6304%) hue-rotate(357deg) brightness(95%) contrast(123%);
}

.footer-social-media a.instagram:hover img {
  filter: invert(39%) sepia(73%) saturate(7471%) hue-rotate(316deg) brightness(99%) contrast(101%);
}

.footer-social-media a.facebook:hover img {
  filter: invert(31%) sepia(80%) saturate(7483%) hue-rotate(203deg) brightness(99%) contrast(96%);
}

.footer-social-media a.linkedin:hover img {
  filter: invert(29%) sepia(93%) saturate(2012%) hue-rotate(186deg) brightness(94%) contrast(95%);
}

@media (max-width: 576px) {
  .row {
    text-align: center;
  }

  .apply_for_footer {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .center {
    display: flex;
    justify-content: center;
    max-width: 100% !important;
  }
}

/* Responsive Grid */
@media (min-width: 476px) {
  .row .col-sm-6 {
    max-width: 50%;
  }

  .center {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .apply_for_footer {
    margin-top: 1rem;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }

  .col-lg-5 {
    flex: 0 0 41.666%;
    max-width: 41.666%;
  }
}

@media (max-width: 992px) {
  .footer_bottom .row {
    gap: 1rem;
  }
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
