/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* HEADER */
.header {
  width: 100%;
  background: #0b0b0b;
  color: #fff;
  padding: 12px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: scale(3.5);
  transform-origin: left center;
}

/* RIGHT SIDE */
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* PHONE */
.phone a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ff4d6d;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.phone a i {
  font-size: 14px;
}

.phone a:hover {
  color: #ff6a00;
}

/* SOCIAL ICONS */
.top-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-right a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  border-radius: 50%;
  color: #ccc;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* HOVER */
.top-right a:hover {
  background: #e94b12;
  color: #fff;
  transform: translateY(-2px);
}



/* CAROUSEL */
.image-carousel {
  width: 100%;
  height: 950px;
  overflow: hidden;
  background: #000;
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slideCarousel 12s infinite;
}

.carousel-slide {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ANIMATION */
@keyframes slideCarousel {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-33.333%);
  }
  65% {
    transform: translateX(-33.333%);
  }

  70% {
    transform: translateX(-66.666%);
  }
  95% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    padding: 12px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    height: 60px;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .image-carousel {
    height: 350px;
  }
}

/* STATS SECTION */
.stats-section {
  width: 100%;
  background: linear-gradient(135deg, #1b1b1b, #0b0b0b);
  padding: 55px 40px;
  border-top: 1px solid #3a1c0d;
  border-bottom: 1px solid #3a1c0d;
}

.stats-box {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  align-items: center;
}

.stat-item h2 {
  color: #e94b12;
  font-size: 42px;
  font-weight: 800;
  font-family: Georgia, serif;
  margin-bottom: 10px;
}

.stat-item h2 sup {
  font-size: 24px;
  top: -10px;
  position: relative;
}

.stat-item p {
  color: #d6c7b2;
  font-size: 13px;
  letter-spacing: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-section {
    padding: 35px 20px;
  }

  .stats-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-item h2 {
    font-size: 32px;
  }

  .stat-item p {
    font-size: 11px;
  }
}

.clients-section {
  width: 100%;
  text-align: center;
  padding: 18px;
  background: #0b0b0b;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.clients-section p {
  color: #d6c7b2;
  font-size: 14px;
  letter-spacing: 1px;
}

.clients-section strong {
  color: #ff6a00;
}
/* PRODUCTS SECTION */
.products-section {
  width: 100%;
  background: radial-gradient(circle at center, #1b1b1b 0%, #090909 70%);
  padding: 90px 70px 80px;
  color: #fff;
}

.products-heading {
  text-align: center;
  margin-bottom: 65px;
}

.products-heading span {
  color: #e94b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.products-heading h2 {
  font-size: 48px;
  line-height: 1.05;
  margin: 18px 0;
  font-family: Georgia, serif;
  font-weight: 800;
}

.products-heading p {
  color: #b8aa96;
  font-size: 16px;
  line-height: 1.7;
}

.small-line {
  width: 45px;
  height: 2px;
  background: #e94b12;
  margin: 25px auto 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1700px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  min-height: 560px;
  padding: 45px 24px;
  background: linear-gradient(135deg, #252320, #151515);
  border: 1px solid #1e1e1e;
  transition: all 0.4s ease;
}

.product-card.active {
  background: linear-gradient(135deg, #31251e, #171717);
  border-bottom: 4px solid #e94b12;
}

.product-number {
  position: absolute;
  top: 30px;
  right: 24px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(233, 75, 18, 0.22);
  font-family: Georgia, serif;
}

.product-card h5 {
  color: #e94b12;
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 23px;
  line-height: 1.2;
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

.product-card p {
  color: #b8aa96;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* TABLE */
.spec-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0 15px;
  border: 1px solid #2b2b2b;
}

.spec-head,
.spec-row {
  display: grid;
  grid-template-columns: 45% 55%;
}

.spec-head span {
  background: #e94b12;
  color: #fff;
  padding: 12px 10px;
  font-weight: 700;
  font-size: 13px;
}

.spec-row span {
  padding: 11px 10px;
  border-bottom: 1px solid #2b2b2b;
  font-size: 12px;
  line-height: 1.45;
}

.spec-row span:first-child {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 600;
}

.spec-row span:last-child {
  background: #181818;
  color: #d6c7b2;
}

/* BLUR VALUE */
.blur-value {
  filter: blur(5px);
  user-select: none;
  transition: filter 0.3s ease;
}

.blur-value.show {
  filter: blur(0);
}

/* SEE VALUE BUTTON */
.see-value-btn {
  width: 100%;
  padding: 11px;
  margin-bottom: 18px;
  background: transparent;
  color: #e94b12;
  border: 1px solid #e94b12;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.see-value-btn:hover {
  background: #e94b12;
  color: #fff;
}

.product-card a {
  color: #e94b12;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.product-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg, #31251e, #171717);
  border-color: #e94b12;
  box-shadow: 0 15px 40px rgba(233, 75, 18, 0.25);
}

/* POPUP FORM */
.spec-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.spec-popup.show {
  display: flex;
}

.spec-popup-box {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, #241f1c, #101010);
  border: 1px solid rgba(233, 75, 18, 0.4);
  border-radius: 14px;
  padding: 35px;
  position: relative;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.spec-popup-box h3 {
  font-size: 30px;
  font-family: Georgia, serif;
  margin-bottom: 10px;
  text-align: center;
}

.spec-popup-box p {
  color: #b8aa96;
  font-size: 14px;
  text-align: center;
  margin-bottom: 25px;
}

.spec-popup-box input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 14px;
  background: #171717;
  color: #fff;
  border: 1px solid #2b2b2b;
  border-radius: 7px;
  outline: none;
}

.spec-popup-box input:focus {
  border-color: #e94b12;
}

.spec-popup-box button[type="submit"] {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #ff5a1f, #e94b12);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-section {
    padding: 60px 20px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .products-heading h2 {
    font-size: 32px;
  }
}

/* CERTIFICATIONS SECTION */
.certifications-section {
  width: 100%;
  background: radial-gradient(circle at center, #25221f 0%, #0b0b0b 72%);
  padding: 100px 30px 95px 70px;
  color: #fff;
}

.certifications-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1650px;
  margin: 0 auto;
  gap: 40px;
}

.certifications-left {
  flex: 1;
}

.certifications-right {
  flex: 1.5;
  display: flex;
  justify-content: flex-end;
}

.video-wrapper {
  width: 100%;
  max-width: 950px;
  position: relative;
  background: #111;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px #2a2a2a;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, #e94b12, #ff6a00, transparent, transparent);
  z-index: -1;
  border-radius: 14px;
  opacity: 0.8;
}

.video-wrapper video {
  width: 100%;
  border-radius: 8px;
  display: block;
}

/* HEADING */
.certifications-heading {
  text-align: left;
  margin-bottom: 50px;
}

.certifications-heading span {
  color: #e94b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.certifications-heading h2 {
  font-size: 48px;
  line-height: 1.05;
  margin: 18px 0;
  font-family: Georgia, serif;
  font-weight: 800;
}

.certifications-heading p {
  color: #b8aa96;
  font-size: 16px;
  line-height: 1.7;
}

.certifications-line {
  width: 45px;
  height: 2px;
  background: #e94b12;
  margin: 25px 0 0;
}

/* GRID */
.certifications-grid {
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.certification-logo-card {
  aspect-ratio: 1;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.certification-logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.certification-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.certification-logo-card:hover img {
  transform: scale(1.05);
}

/* CERTIFICATE MODAL */
.cert-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cert-modal.show {
  display: flex;
}

.cert-modal-box {
  width: 100%;
  max-width: 700px;
  background: #111;
  border: 1px solid rgba(233, 75, 18, 0.4);
  border-radius: 10px;
  padding: 25px;
  position: relative;
  color: #fff;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.close-cert-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 32px;
  cursor: pointer;
  transition: color 0.3s;
}

.close-cert-modal:hover {
  color: #ff6a00;
}

.cert-modal-box h3 {
  font-size: 24px;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  color: #e94b12;
}

.cert-img-container {
  width: 100%;
  aspect-ratio: 1 / 1.414;
  background: #1a1a1a;
  border: 1px dashed #444;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cert-img-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 2;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .certifications-container {
    flex-direction: column;
    gap: 40px;
  }
  .certifications-heading {
    text-align: center;
  }
  .certifications-line {
    margin: 25px auto 0;
  }
  .certifications-grid {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .certifications-section {
    padding: 70px 25px;
  }

  .certifications-heading h2 {
    font-size: 36px;
  }

  .certifications-heading p br,
  .certifications-heading h2 br {
    display: none;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .certification-logo-card {
    padding: 10px;
  }
}

/* APPLICATIONS SECTION */
.applications-section {
  width: 100%;
  background: radial-gradient(circle at top, #242424 0%, #070707 75%);
  padding: 90px 70px 80px;
  color: #fff;
}

.applications-heading {
  text-align: center;
  margin-bottom: 65px;
}

.applications-heading span {
  color: #e94b12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
}

.applications-heading h2 {
  font-size: 48px;
  line-height: 1.05;
  margin: 18px 0;
  font-family: Georgia, serif;
  font-weight: 800;
}

.applications-heading p {
  color: #b8aa96;
  font-size: 16px;
  line-height: 1.7;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
}

.app-card {
  background: linear-gradient(135deg, #1b1b1b, #0b0b0b);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.app-card:hover {
  transform: translateY(-8px);
  border-color: #e94b12;
}

.app-card-carousel {
  width: 100%;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}

.app-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.app-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.app-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.app-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 40%);
}

.app-slide-caption {
  position: absolute;
  bottom: 35px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  z-index: 2;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.app-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #e94b12;
  transform: scale(1.2);
}

.app-card-title {
  padding: 25px 20px;
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-card-title h3 {
  font-size: 20px;
  font-family: Georgia, serif;
  color: #fff;
  line-height: 1.3;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .applications-grid {
    grid-template-columns: 1fr;
  }
  .applications-section {
    padding: 60px 20px;
  }
}


 



/* CTA SECTION */
.cta-section {
  width: 100%;
  padding: 110px 20px;
  background: radial-gradient(circle at center, #2a231d 0%, #0b0b0b 72%);
  color: #fff;
  text-align: center;
}

/* CONTENT */
.cta-content {
  max-width: 850px;
  margin: 0 auto;
}

/* TITLE */
.cta-content h2 {
  font-size: 54px;
  font-family: Georgia, serif;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
}

.cta-content p {
  color: #c7b8a2;
  font-size: 17px;
  margin-bottom: 35px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-btn {
  min-width: 210px;
  padding: 15px 28px;
  font-size: 15px;
  text-decoration: none;
  border-radius: 7px;
  transition: all 0.35s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #ff5a1f, #e94b12);
  color: #fff;
  font-weight: 700;
}

.cta-btn.primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(233, 75, 18, 0.45);
}

.cta-btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.cta-btn.secondary:hover {
  background: #e94b12;
  border-color: #e94b12;
  transform: translateY(-4px);
}

/* INFO */
.cta-info {
  font-size: 14px;
  color: #b8aa96;
  margin-bottom: 35px;
}

.cta-info span {
  color: #ff5a1f;
}

/* FORM CARD */
.cta-form {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

/* FORM ROW */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

/* INPUTS */
.cta-form input,
.cta-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  outline: none;
  background: #161616;
  color: #fff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: #8f8f8f;
}

.cta-form textarea {
  min-height: 130px;
  resize: none;
}

/* INPUT FOCUS */
.cta-form input:focus,
.cta-form textarea:focus {
  border-color: #e94b12;
  background: #1d1d1d;
  box-shadow: 0 0 0 3px rgba(233, 75, 18, 0.12);
}

/* SUBMIT BUTTON */
.cta-form button {
  width: 120px;
  padding: 16px;
  background: linear-gradient(135deg, #ff5a1f, #e94b12);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.35s ease;
}

.cta-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(233, 75, 18, 0.45);
}

/* MOBILE */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 18px;
  }

  .cta-content h2 {
    font-size: 36px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-form {
    padding: 22px;
  }

  .form-row {
    flex-direction: column;
  }
}
/* FOOTER */
.footer {
  width: 100%;
  background: radial-gradient(circle at center, #1b1b1b 0%, #080808 72%);
  padding: 75px 70px 30px;
  color: #fff;
}

/* GRID */
.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 1fr;
  gap: 55px;
  align-items: start;
}

/* LOGO */
.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 18px;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: #e94b12;
  margin-bottom: 18px;
  font-weight: 700;
}

.footer-about {
  color: #b8aa96;
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
}

/* COMMON HEADINGS */
.footer-contact h4,
.footer-products h4 {
  color: #e94b12;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 12px;
  color: #d6c7b2;
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact a {
  color: #d6c7b2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ff6a00;
}

/* PRODUCTS */
.footer-products ul {
  list-style: none;
  padding: 0;
}

.footer-products ul li {
  margin-bottom: 12px;
  color: #c7b8a2;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-products ul li:hover {
  color: #ff6a00;
  transform: translateX(5px);
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  margin-top: 45px;
  border-top: 1px solid #222;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer {
    padding: 55px 22px 28px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .footer-logo img {
    height: 100px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-about {
    margin: 0 auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.footer-contact a {
  color: #d6c7b2;
  text-decoration: none;
  transition: 0.3s;
}

.footer-contact a:hover {
  color: #ff6a00;
 
}
/* HIDE GOOGLE TRANSLATE BANNER AND TOOLTIPS */
.goog-te-banner-frame.skiptranslate,
.VIpgJd-ZVi9od-ORHb-OEVmcd {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0px !important;
  position: static !important;
}

html {
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
}

.goog-text-highlight {
  background-color: transparent !important;
  border: none !important; 
  box-shadow: none !important;
}
