@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap");

body {
  background: #ffffff;
  background-size: cover;
  background-position: center;
  font-family: "Outfit", sans-serif;
  margin: 0;
  /* padding-top: 3rem; */
}

.justified-text {
  text-align: justify;
  font-size: 18px;
}


/***************************************************** NavBar *****************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgb(0, 0, 0);
  color: #fff;
  padding: 0 2rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.header__logo img {
  /* font-weight: 700; */
  /* font-size: 1.5rem; */
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  width: 140px;
}

.header__logo img:hover {
  filter: drop-shadow(0 0 12px rgba(255, 217, 0, 0.44)) drop-shadow(0 0 24px #ffd9004a);
  transform: translateY(-50%) scale(1.025);
  /* slight zoom-in */
}

/* hamburger for mobile view */
.mobile-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
}

.navbar {
  display: flex;
  align-items: center;
  height: 100%;
}

.navbar__menu {
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.navbar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  width: auto;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0 1rem;
  font-size: 0.8rem;
  position: relative;
  transition: color 0.4s ease, transform 0.3s ease;
}

.navbar__link span {
  display: block;
  opacity: 1;
  transform: translate(0);
  transition: 250ms ease all;
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #156fc4;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}

.navbar__link:hover {
  color: #156fc4;
  transform: translateY(-2px);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

/*# sourceMappingURL=styles.css.map */

/* From Uiverse.io by TCdesign-dev */
.button {
  display: inline-block;
  border-radius: 7px;
  border: none;
  background: #1875ff;
  color: white;
  font-family: "Outfit", sans-serif;
  text-align: center;
  font-size: 13px;
  box-shadow: 0px 14px 56px -11px #1875ff;
  width: 10em;
  padding: 1em;
  transition: all 0.4s;
  cursor: pointer;
  right: 2rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.4s;
}

.button span:after {
  content: "for Sales";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.7s;
}

.button:hover span {
  padding-right: 3.92em;
}

.button:hover span:after {
  opacity: 4;
  right: 0;
}

/*********************************** Navbar DropDown Radios Products ******************************************/

.dropdown_menu {
  position: relative;
}

/* Dropdown container */
.dropdown-content {
  display: none;
  position: absolute;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  border-radius: 8px;
  min-width: 220px;
  padding: 10px 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* List container */
.dropdown_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Dropdown links */
.dropdown-content a {
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: background-color 0.25s ease, padding-left 0.25s ease;
}

/* Hover effect on list items */
.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #1875ff;
  border-radius: 4px;
  padding-left: 25px;
  /* subtle sliding effect */
}

.dropdown_list a:active {
  color: #011431;
}

/* Show dropdown with transition */
.dropdown_menu.show .dropdown-content,
.dropdown_menu:hover .dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* sub menu */
/* Submenu inside "Licence Free" */
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  list-style: none;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(10px);
  z-index: 1001;
}

.list1 {
  position: relative;
}

/* Show submenu on hover */
.list1:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Submenu links */
.submenu li a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.submenu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.list2 {
  position: relative;
}

/* Show submenu on hover */
.list2:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.list3 {
  position: relative;
}

/* Show submenu on hover */
.list3:hover>.submenu {
  display: block;
  opacity: 1;
  transform: translateX(0);
}


@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .header {
    flex-direction: flex;
    height: auto;
    padding: 3px;
    gap: 1px;
  }

  .header__logo img {
    height: 15%;
    width: 15%;
    position: static;
    transform: none;
    margin-right: 3px;
    /* margin-bottom: 10px; */
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    display: none;
    height: 250px;
    /* hidden by default */
  }

  /* .nav__ul--extra {
    column-count: 1;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar {
    display: none;
    width: 100%;
  }

  .navbar.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar__link {
    padding: 1rem;
    text-align: center;
  }
} */

  .navbar__menu {
    flex-direction: column;
    align-items: center;
    position: static;
    transform: none;
    width: 100%;
    gap: 1rem;
  }

  .navbar__item {
    width: 100%;
  }

  .navbar__link {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.5rem;
    justify-content: center;
  }

  .dropdown-content {
    position: static;
    transform: none;
    opacity: 1;
    box-shadow: none;
    backdrop-filter: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }

  .dropdown_menu:hover .dropdown-content {
    display: none;
    /* disable hover-based dropdown on mobile */
  }

  .dropdown_menu.show .dropdown-content {
    display: block;
  }

  .submenu {
    position: static;
    transform: none;
    opacity: 1;
    display: none;
    padding-left: 1.5rem;
  }

  .list1:hover>.submenu,
  .list2:hover>.submenu,
  .list3:hover>.submenu {
    display: none;
  }

  .list1.show .submenu,
  .list2.show .submenu,
  .list3.show .submenu {
    display: block;
  }

  .button {
    position: static;
    transform: none;
    margin-top: 1rem;
    align-self: center;
    width: 50%;
    margin-left: 30px;
  }
}


/* .navbar__menu {
  display: none;
  flex-direction: column;
  background-color: #333;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
} */

/* .navbar__link {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
} */


/***************************************************** Hero Section *****************************************************/
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: white;
}

.bg-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.bg-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#bg1 {
  z-index: 1;
  opacity: 1;
}

#bg2 {
  z-index: 1;
}

.dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent black */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  /* above everything else */
  max-width: 90%;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
}


/* General Mobile Devices */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
    height: auto;
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-content {
    padding: 1rem;
    max-width: 100%;
  }

  .bg-layer,
  .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
  }
}



/* Small Mobile Devices (≤425px) */
@media (max-width: 425px) {
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .hero-content {
    padding: 0.5rem;
  }
}


/***************************************************** About Section *****************************************************/
.about-container {
  padding: 40px;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* Ensures wrapping on smaller screens */
  gap: 20px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
  padding-left: 30px;
}

.download {
  height: 20px;
  width: 25px;
  padding-right: 5px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about-text {
  flex: 2;
  min-width: 300px;
  max-width: 600px;
  padding-right: 40px;
  padding-bottom: 50px;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #5f3802;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 10px;
  color: #5f3802;
}


/******************************************* wide variety Industry Section ****************************************/
.wide-varieties-section {
  background-color: #dddddd;
  text-align: center;
}

.top-heading {
  padding: 10px;
  font-size: 30px;
}

.row-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-content: center;
  gap: 20px;
  padding: 40px;
  /* flex-wrap: wrap; */
  /* Optional: wrap on smaller screens */
}

.profile {
  text-align: center;
  width: 120px;
  /* padding: 0 40px 0 40px; */
}

.profile-image {
  width: 100%;
  height: 120px;
  padding: 15px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.profile-name {
  /* padding-left: 15px; */
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

/***************************************************** Product Section *****************************************************/
/* ################# Motorola Section ################# */

.product-section {
  margin: 0;
  padding: 30px;
  background-color: #f4f6f9;
  color: #333;
  line-height: 1.6;
}

.product-section p {
  color: #9c9905
}

.product-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #000000;
}

/* Image Row */
.image-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
}

.image-container {
  position: relative;
  width: 200px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #ffffff;
}

.image-container.landscape img {
  object-fit: contain;
  background-color: #ffffff;
}

.image-container:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.image-container:hover .overlay {
  opacity: 1;
}

/* Title Grid */
.content-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.cell {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}

.cell:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cell h2 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #000000;
}

.cell p {
  /* font-size: 0.95rem; */
  color: #5f3802;
}

/* ####################### Kenwood TK-3501 Section ########################## */
.kenwood-section {
  margin-top: 60px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kenwood-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: #000000;
}

.kenwood-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.kenwood-image img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.kenwood-image-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.hover-image-container {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.kenwood-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 0.95rem;
  padding: 8px 0;
  border-radius: 0 0 10px 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-image-container:hover .kenwood-overlay {
  opacity: 1;
}

.kenwood-content {
  flex: 1;
  min-width: 300px;
}

.kenwood-content h2 {
  color: #000000;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.kenwood-feature {
  margin-bottom: 20px;
}

.kenwood-feature h3 {
  margin: 0;
  font-size: 1.05rem;
  color: #000000;
}

.kenwood-feature p {
  /* font-size: 0.95rem; */
  color: #470808;
  margin: 5px 0 0 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .kenwood-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .kenwood-image-container,
  .kenwood-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .kenwood-content {
    width: 100%;
    padding: 0 10px;
    text-align: center;
  }

  .kenwood-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .kenwood-content h2 {
    font-size: 1.2rem;
  }

  .kenwood-feature h3 {
    font-size: 1rem;
  }

  .kenwood-feature p {
    font-size: 0.9rem;
  }
}


/**************************************************** Contact Form ************************************************************/
/* General Styling */

.contact-section {
  background-image: url("./images/contact_bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  z-index: 0;
}

.contact-overlay {
  background: rgba(225, 227, 236, 0.555);
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: stretch;
}

/* Left Contact Info Box */
.contact-info-box {
  flex: 1 1 400px;
  color: #000000;
  padding-right: 20px;
  font-family: "Outfit", sans-serif;
}

.contact-info-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info-box p {
  font-size: 16px;
  line-height: 1.6;
  color: #202020;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  color: #202020;
}

.contact-details i {
  font-size: 22px;
  color: #1875ff;
  margin-right: 12px;
}

/* Right Form Box */
.contact-form-box {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-box form {
  display: flex;
  flex-direction: column;
}

.contact-form-box input,
.contact-form-box textarea {
  padding: 12px 15px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  color: #000000;
  transition: border 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
  border-color: #1875ff;
  outline: none;
}

.contact-form-box ::placeholder {
  color: #575656;
}

/* From Uiverse.io by barisdogansutcu */
.contact-button {
  font-family: "Outfit", sans-serif;
  font-weight: bold;
  padding: 17px 40px;
  border-radius: 50px;
  cursor: pointer;
  border: 0;
  background-color: white;
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  transition: all 0.5s ease;
}

.contact-button:hover {
  letter-spacing: 3px;
  background-color: #1875ff;
  color: hsl(0, 0%, 100%);
  box-shadow: #1875ff 0px 7px 29px 0px;
}

.contact-button:active {
  letter-spacing: 3px;
  background-color: hsl(216, 100%, 55%);
  color: hsl(0, 0%, 100%);
  box-shadow: rgb(24, 117, 255) 0px 0px 0px 0px;
  transform: translateY(10px);
  transition: 100ms;
}


/* ****************************** Footer *********************************************** */
.footer:before,
.footer:after {
  box-sizing: border-box;
}

/* html {
  font-size: 100%;
} */

/* body {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #f4f4f4;
  align-items: start;
  min-height: 100vh;
} */

.footer {
  display: flex;
  flex-flow: row wrap;
  padding: 30px 30px 20px 30px;
  color: #2f2f2f;
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer>* {
  flex: 1 100%;
}

.footer__addr {
  margin-right: 1.25em;
  margin-bottom: 2em;
}

.footer__logo {
  /* font-family: "Pacifico", cursive; */
  font-weight: 400;
  /* text-transform: lowercase; */
  font-size: 1.5rem;
}

.footer__addr h2 {
  margin-top: 1.3em;
  font-size: 15px;
  font-weight: 400;
}

.nav__title {
  font-weight: 600;
  font-size: 15px;
  background-color: #000000;
  color: white;
  padding: 6px 12px;
  border-radius: 8px 8px 0 0;
  /* only top corners rounded */
  display: inline-block;
  margin-bottom: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.footer address {
  font-style: normal;
  color: #000000;
}

.footer__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  max-width: max-content;
  background-color: rgb(33, 33, 33, 0.07);
  border-radius: 100px;
  color: #2f2f2f;
  line-height: 0;
  margin: 0.6em 0;
  font-size: 1rem;
  padding: 0 1.3em;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer li {
  line-height: 2em;
}

.footer a {
  text-decoration: none;
}

.footer__nav {
  display: flex;
  flex-flow: row wrap;
}

.footer__nav>* {
  flex: 1 50%;
  margin-right: 1.25em;
}


.nav__ul a {
  color: #000000;
}

.nav__ul--extra {
  /* column-count: 2; */
  column-gap: 1.25em;
}

/* Reset styling for nested lists so they don't break */
.nav__ul--extra ul {
  column-count: 1;
  /* no columns for sub-list */
  /* padding-left: z; */
  /* indentation */
  margin-top: 5px;
  list-style: none;
  /* optional bullet points */
}

.nav__ul--extra ul li {
  break-inside: avoid;
  /* prevents splitting across columns */
}


.legal {
  display: flex;
  flex-wrap: wrap;
  color: #070606;
}

.legal__links {
  display: flex;
  align-items: center;
}

.heart {
  color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
  .legal .legal__links {
    margin-left: auto;
  }
}

@media screen and (min-width: 40.375em) {
  .footer__nav>* {
    flex: 1;
  }

  .nav__item--extra {
    flex-grow: 2;
  }

  .footer__addr {
    flex: 1 0px;
  }

  .footer__nav {
    flex: 2 0px;
  }
}

/* Mobile Responsiveness */

@media (max-width: 768px) {

  /* Navbar adjustments */

  /* Hero section */
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  /* Product section */
  .image-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container {
    width: 90%;
    max-width: 300px;
  }

  .content-table {
    grid-template-columns: 1fr;
  }



  /* Footer */
  .footer {
    flex-direction: column;
    padding: 20px;
  }

  .footer__nav {
    flex-direction: column;
  }

}


/* certification */

.certification-section {
  padding: 60px 20px;
  background: #f9f9f9;
  /* soft background */
  display: flex;
  justify-content: center;
  align-items: center;
}

.certification-container {
  text-align: center;
  max-width: 1000px;
  width: 100%;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.certification-heading {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #333;
  position: relative;
}

.certification-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #ffc107;
  /* golden underline */
  margin: 10px auto 0;
  border-radius: 2px;
}

.certification-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.certification-image:hover {
  transform: scale(1.02);
}


/* php contact response */
#responseMessage {
  text-align: center;
  display: block;
  margin-top: 10px;
}