@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap');
/* Navbar Section */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Times New Roman', serif;
}

/* HEADER */
header {
  background-color: #ffffff;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 20px;
  height: 70px;
  position: relative;
  background-color: #e2e0e0;
}

/* LOGO */
.logo-with-text {
  display: flex;
  align-items: center;
  color: black;
}

.company-logo {
  height: 70px;
  margin-right: 10px;
}

.company-title {
  font-size: 18px;
  color: black;
  font-weight: 600;
}

/* DESKTOP MENU */
.main-menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 600;
  font-family: "Arimo", sans-serif;
}

.main-menu a:hover {
  color: #ff914d;
}

/* SOCIAL ICONS */
.social-icons i {
  font-size: 22px;
  margin-left: 10px;
  color: black;
  cursor: pointer;
}

/* HAMBURGER */
.hamburger {
  font-size: 32px;
  color: black;
  display: none;
  cursor: pointer;
}

/* DROPDOWN BASE */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: black;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  font-family: "Arimo", sans-serif;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #333;
  min-width: 260px;
  z-index: 9999;
  flex-direction: column;
  padding: 10px;
  border-radius: 4px;
  padding-left: 20px;
}

.dropdown-menu a {
  color: white;
  padding: 5px 10px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* ===============================
   MOBILE RESPONSIVE MENU
================================ */
/* ===============================
   MOBILE RESPONSIVE MENU (FIXED)
================================ */
@media (max-width: 768px) {

  /* Hamburger visible */
  .hamburger {
    display: block;
  }

  /* Hide desktop title */
  .company-title {
    display: none;
  }

  /* Slide-in mobile menu */
  .main-menu {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 260px;
    background: #111;
    flex-direction: column;
    padding: 80px 20px;
    transition: 0.3s ease-in-out;
    z-index: 99999;
  }

  /* When menu opens */
  .main-menu.show {
    right: 0;
  }

  /* Each item spacing equal */
  .main-menu a,
  .dropdown-toggle {
    color: white;
    padding: 11px 0;   /* Equal spacing */
    font-size: 18px;
     text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.15); /* subtle divider */
  }

  /* HIDE ARROW ICONS IN MOBILE */
  .dropdown-toggle i {
    display: none !important;
  }

  /* Dropdown items in mobile */
  .dropdown-menu {
    display: none !important;
    background: transparent;
    padding-left: 25px;
  }

  .dropdown-menu a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: none;
  }

  /* Bullet for mobile submenu */
  .dropdown-menu a::before {
    content: "• ";
    color: #ff914d;
  }

  /* Logo smaller */
  .company-logo {
    height: 70px;
    margin-left: -10px;
  }
  .dropdown {
    width: 100%;
    text-align: left !important;
  }
}

/* VERY SMALL PHONES */
@media (max-width: 415px) {
  .company-logo {
    height: 60px;
    margin-left: 10px;
  }
}


/* ==============================
   DESKTOP VIEW (UNCHANGED)
================================ */
@media (min-width: 769px) {

  .top-nav {
    height: 100px;
  }

  .company-logo {
    height: 90px !important;
    margin-left: 20px;
  }

  .dropdown-menu a::before {
    content: "•";
    position: absolute;
    left: 8px;
    font-size: 20px;
  }
}

/* CLOSE BUTTON (ONLY MOBILE) */
.close-btn {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  z-index: 100000;
}

@media (max-width: 768px) {
  .close-btn {
    display: block;
  }
}
    

       /* Hero Section */



.contact-banner {
  position: relative;
  width: 100%;
}

.banner-image {
  background: url("/hero_section/professional-welder-protective-uniform-helmet-welding-metal-part-workshop.jpg") no-repeat center center/cover;
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.banner-image h1 {
  color: white;
  font-size: 50px;
  z-index: 1;
  text-align: center;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 130px;
  font-family:  'Playfair Display', serif;
  padding: 0 20px;
}

.banner-image svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
}


@media (max-width: 1024px) {
  .banner-image h1 {
    font-size: 38px;
    margin-bottom: 100px;
     font-family: 'Playfair Display', serif;
  }
}

@media (max-width: 768px) {
  .banner-image {
    height: 50vh;
  }

  .banner-image h1 {
    font-size: 30px;
    margin-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .banner-image {
    height: 45vh;
  }

  .banner-image h1 {
    font-size: 38px;
    margin-bottom: 60px;
  }
}

