/* TOP HEADER*/
.Top_header {
  background: #3A3A3A;
  color: white;
  padding: 21px 20px;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 10;
}

.top-header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
}

.highlight {
  color: #b30000;
}

/*LINKS*/

.email-link,
.phone-link {
  display: flex;
  align-items: center;
  grid-gap: 6px;
  color: white;
  text-decoration: none;
}

.email-link:hover,
.phone-link:hover {
  color: #b30000;
  text-decoration: underline;
}

.mail-icon {
  width: 18px;
  height: 18px;
  fill: white;
}

.email-link:hover .mail-icon {
  fill: #b30000;
}

.phone-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.divider {
  margin: 0 5px;
}

/*MAIN HEADER*/

.Main_header {
  background: white;
  color: #333;
  padding: 15px 20px;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
  z-index: 1000;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

nav li {
  position: relative;
}

nav a {
  text-decoration: none;
  font-size: 18px;
  color: black;
  padding: 10px 15px;
  display: block;
}

nav a:hover {
  color: #b30000;
  text-decoration: underline;
}

/*DROPDOWN*/

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 150px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 2000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a:hover {
  background: #eee;
}

/*LOGO*/

.logo {
  width: 85px;
  height: auto;
}

/*SLIDESHOW*/

.slideshow {
  position: relative;
  width: 100%;
  height: 600px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 18s infinite;
}

.slide1 { animation-delay: 0s; }
.slide2 { animation-delay: 5s; }
.slide3 { animation-delay: 10s; }

@keyframes fade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  30%  { opacity: 1; }
  40%  { opacity: 0; }
  100% { opacity: 0; }
}

/*BODY*/

body {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #f5f5f5;
}

/*WELCOME SECTION*/

.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}


.welcome-text {
  flex: 1;
  text-align: left;
}

.welcome-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #b30000;
}

.welcome-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #333;
}

.welcome-image {
  flex: 1;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*SERVICES*/

.services {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 25px;
  padding: 40px 20px;
  background: #3A3A3A;
}

.service-box {
  background: white;
  color: #333;
  text-decoration: none;
  padding: 40px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.service-box:hover {
  background: #b30000;
  color: white;
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/*CONTACT */

.contact-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.contact_us {
  text-align: center;
  color: #b30000;
  font-size: 20px;
  margin: 50px 0 40px;
}

.map-wrapper {
  width: 100%;
  height: 400px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  margin-top: -4px;
}

.contact-box h2 {
  color: #b30000;
  margin-bottom: 15px;
}

.contact-box p {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-box a {
  color: #b30000;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

/*FOOTER*/

.site-footer {
  background: #2e2e2e;
  color: #ffffff;
  padding: 30px 40px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-social {
  max-width: none;
  margin: 0;
}

.footer-social a svg {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a:hover svg {
  transform: scale(1.1);
  opacity: 0.8;
}

.footer-social span {
  font-weight: bold;
  color: #e60000;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #ccc;
}

/*PRESS*/

.press-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.press-text {
  flex: 1;
}

.press-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #b30000;
}

.press-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.press-image {
  flex: 1;
  max-width: 530px;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.press-image .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 25s infinite;
}

.press-image .slide1 { animation-delay: 0s; }
.press-image .slide2 { animation-delay: 6s; }
.press-image .slide3 { animation-delay: 12s; }

/*SCREENS*/

@media (max-width: 900px) {



  .welcome-section,
  .welcome-section.reverse,
  .press-section {
    flex-direction: column;
  }

  .welcome-image {
    margin-top: 20px;
  }

  .welcome-section.reverse {
    flex-direction: row-reverse;
  }

  .welcome-section.reverse .welcome-text {
    order: 1;
    text-align: left;
  }

  .welcome-section.reverse .welcome-image {
    order: 2;
    text-align: left;
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .press-section {
    flex-direction: column;
  }

  .press-text {
    order: 1;
  }

  .press-image {
    order: 2;
    margin-top: 20px;
  }
}

@media (max-width: 900px) {
  .job-section,
  .job-section.reverse {
    flex-direction: column;
  }

  .job-image {
    margin-top: 20px;
  }
}
/*Job*/
.job-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.job-section.reverse {
  flex-direction: row-reverse;
}

.job-text {
  flex: 1;
}

.job-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #b30000;
}

.job-text h3 {
  margin-bottom: 12px;
}

.job-text ul {
  font-size: 16px;
  line-height: 1.7;
  margin-left: 20px;
  margin-bottom: 20px;
}

.job-image {
  flex: 1;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .job-section,
  .job-section.reverse {
    flex-direction: column;
  }

  .job-image {
    margin-top: 20px;
  }
}




