/* Reset & base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
@font-face {
  font-family: 'Ethernocentric';
  src: url('fonts/Ethnocentric Rg.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

html,body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #fbfbfbf5, #fff42d);

  padding-top: 64px; /* height of navbar */
}

.ether-name {
  color: rgb(0, 0, 0);

  font-size: 1.7rem; /* smaller size on mobile */
  font-family: 'Ethernocentric', sans-serif;
}
/* Navbar */
.navbar {

  -webkit-backdrop-filter: blur(8px); /* Safari support */
  
  -webkit-user-select: none; /* Safari support */  
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(13, 1, 1, 0.722);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  color: white;
  z-index: 999;
  padding: 16px 24px;
  user-select: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #DAA520; /* blue-400 */
  transition: transform 0.3s ease;
}
@media (max-width: 768px)  {
  .brand {
    font-size: 1.4rem;
  }

  .menu-toggle {
    margin-left: auto; /* ensure it pushes to the end if needed */
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .brand {
    font-size: 1.4rem;
  }

  .menu-toggle {
    margin-left: auto; /* ensure it pushes to the end if needed */
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .brand {
    font-size: 1.4rem;
  }

  .menu-toggle {
    margin-left: auto; /* ensure it pushes to the end if needed */
  }
}


.brand:hover {
  transform: translateX(10px);
}

.plane-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: #DAA520; /* blue-500 */
  transition: transform 0.8s ease;
}

.brand:hover .plane-icon {
  transform: translateX(95px);
}

@media (max-width: 768px)  {
  .brand-name {
    font-size: 0.9rem; /* smaller size on mobile */
    font-family: 'Ethernocentric', sans-serif;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .brand-name {

    font-size: 1rem; /* smaller size on mobile */
    font-family: 'Ethernocentric', sans-serif;
  }

}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 700;
  font-size: 20px;
}
.plane-icon {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .plane-icon {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .plane-icon {
    width: 20px;
    height: 20px;
  }
}

.nav-links li a {
  color: #ffffff; /* blue-200 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffd364; /* blue-500 */
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropbtn {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.dropbtn:hover {
  color: #ffdb7e;
}

.chevron {
  transition: transform 0.3s ease;
}

.dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  top: 130%;
  left: 0;
  background: white;
  color: #111827;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  min-width: 160px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content li {
  padding: 8px 24px;
}

.dropdown-content li a {
  color: #111827;
  font-weight: 500;
}

@media (max-width: 768px) {
  body {
    padding-top: 64px; /* ensures space for fixed navbar */
  }

  .navbar {
    position: fixed;  /* ensures navbar is above content */
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 12px 16px;
  }

  .mobile-menu li {
    font-size: 1.2rem;
    padding: 14px 16px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    padding-top: 64px; /* ensures space for fixed navbar */
  }

  .navbar {
    padding: 12px 16px;
  }

  .mobile-menu li {
    font-size: 1.2rem;
    padding: 14px 16px;
  }
}

.dropdown-content li a:hover {
  color: #3b82f6;
}
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide desktop nav links */
  }
  .mobile-menu {
    display: flex;           /* Arrange items in a row */
    overflow-x: auto;        /* Enable horizontal scroll */
    white-space: nowrap;     /* Prevent items from wrapping to next line */
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 999;
  }
  .mobile-menu.open {
    display: flex;
    margin-top: -11.9px; /* Moves menu 10px higher
     */
     margin-left: -17.0399px;

  }

  .dropdown-content {
    position: static; /* Better stacking on small screens */
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    overflow-y: auto; /* Enable scroll if too tall */

  }

  .dropdown:hover .dropdown-content {
    transform: none;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-links {
      display: none; /* Hide desktop nav links */
    }
  
    .mobile-menu {
      display: flex;           /* Arrange items in a row */
      overflow-x: auto;        /* Enable horizontal scroll */
      white-space: nowrap;     /* Prevent items from wrapping to next line */
      padding: 0;
      margin: 0;
      list-style: none;
      z-index: 999;
    }
  
    .mobile-menu.open {
      margin-top: 160px; /* Moves menu 10px higher */
      display: flex;
    }
  
    .dropdown-content {
      position: static; /* Better stacking on small screens */
      transform: none;
      opacity: 1;
      visibility: visible;
      box-shadow: none;
      border-radius: 0;
      
      max-height: 250px; /* ✅ Limit height */
      overflow-y: auto;  /* ✅ Allow vertical scrolling */
    }
  
    .dropdown:hover .dropdown-content {
      transform: none;
    }
  }
  

.mobile-menu.open {
  z-index: 1001;
}
/* Mobile Menu */
.menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

.menu-icon {
  width: 28px;
  height: 28px;
}

.mobile-menu {
  
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.837);
  backdrop-filter: blur(8px);
  position: fixed;
  top: 64px;
  width: 100%;
  padding: 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  z-index: 9998;
  max-height: 0;
  overflow-y: hidden;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  max-height: 1000px; /* or use scroll */
  overflow-y: auto;
  padding: 16px 0;
 /* Adjust based on content */
}

.mobile-menu li {
  padding: 12px 24px;
}

.mobile-menu li a {
  color: #fbf9f6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.mobile-menu li a:hover {
  color: #f8c326;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .desktop-menu {
    display: none;
  }

  .menu-toggle {
    display: block;
  }}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.6rem;
  color: #DAA520; /* blue-400 */
  transition: transform 0.3s ease;
}

.brand-name {
  font-family: 'Ethernocentric', sans-serif; 
  position: relative;
  display: inline-block;
  padding-left: 28px; /* space for plane icon */
}

.plane-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 34px;
  color: #DAA520; /* blue-500 */
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}


/* Shrink brand on scroll */
.brand.shrink {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.highlight-ltd {
  font-family: 'Ethernocentric', sans-serif; /* Only for brand name */
  position: relative;
  display: inline-block;
  padding-right: 30px; /* add space for logo */
}

.ltd-plane {
  position: absolute;
  top: 50%;
  right: -12px; /* controls overlap with "d" */
  transform: translateY(-50%);
  width: 44px;
  height: auto;
  transition: transform 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.navbar.scrolled .ltd-plane {
  transform: translateY(-50%) scale(0.85);
}

/*______________________________________BANNER CONTAINER________________________________________________*/
.zoom-container {
  position: relative;
  width: 100%; /* Use full width for responsiveness */
  height: 100vh; /* Make the image cover the full viewport */
  overflow: hidden;
  border-radius: 0; /* No border radius so navbar lays flat on top */
  box-shadow: none; /* Optional: remove shadow for a cleaner overlay */
  margin: 0; /* Remove margin to let it sit at the top */
  z-index: 1; /* Lower than navbar */
}

.zoom-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
@media (max-width: 768px) {
  .zoom-container {
    height: 80vh; /* slightly shorter on mobile */
  }

  .zoom-container img {
    object-position: center center; /* center image for smaller screens */
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .zoom-container {
    height: 150vh; /* slightly taller for tablets */
  }
}

  .zoom-container img {
    object-position: center center; /* center image for smaller screens */
  }

.zoom-container:hover img {
  transform: scale(1.2);
}
.typed-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: clamp(1.8rem, 5vw, 5rem);
  text-align: center;
  padding: 0 10px;
  font-family: "Merriweather", serif;

  font-weight: bold;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  z-index: 2;
  text-shadow:
  2px 2px 3px rgba(0, 0, 0, 0.9),
  4px 4px 8px rgba(0, 0, 0, 0.85),
  6px 6px 12px rgba(0, 0, 0, 0.8),
  0 0 20px rgba(0, 0, 0, 0.95);
}
.no-cursor::after {
  content: none;
}


@media (max-width: 480px)  {
  .typed-overlay {
    font-size: clamp(1.8rem, 7vw, 3.6rem);
    white-space: normal;
    line-height: 1.3;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .typed-overlay {
    font-size: clamp(1.8rem, 6vw, 4rem);
    white-space: normal;
    line-height: 1.3;
    max-width: 90vw;
  }
}


body, html {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
#typed-name::after {
  content: '';
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.font1 {
  font-family: 'Courier New', monospace;
  color: #0077cc;
}

.font2 {
  font-family: 'Georgia', serif;
  color: #cc0000;
}
.services-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  min-height: 10vh;
  background: transparent;
  gap: 40px;
}
@media (min-width: 768px) {
  .services-container {
    flex-direction: row;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .services-container {
    flex-direction: row;
  }
}

/* Sidebar styling with transparency and blur */
.sidebar {
  -webkit-backdrop-filter: blur(8px); 
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 24px;
  min-width: 220px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  color: white;
  height: fit-content;
  transition: all 0.5s ease;
}

.sidebar h2 {
  margin-bottom: 20px;
  color: #fff;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin: 12px 0;
  padding: 10px 14px;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  color: #ffffff;
}

/* 🔥 Animation on hover */
.sidebar li:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(10px);
  color: #DAA520;
}

/* Active state for clicked item */
.sidebar li.active {
  font-weight: bold;
  color: #DAA520;
  background: rgba(255, 255, 255, 0.15);
}

/* Content styling */
.service-content {
  -webkit-backdrop-filter: blur(8px); 
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 32px;
  border-radius: 16px;
  color: #fff;
  max-width: 600px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}


@media (max-width: 600px) {
  .dropdown-title {
    font-size: 1.1rem;
  }
  .description {
    font-size: 1rem;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .dropdown-title {
    font-size: 1.1rem;
  }
  .description {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.94rem;
    font-weight: 999px;
  }
}

.tools-section {
 
  padding: 60px 20px;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.tools-row {
  display: flex;
  gap: 20px; /* spacing between cards */
  justify-content: center;
  align-items: flex-start; /* align cards at top */
}

.tools-card {
  background: linear-gradient(135deg, #3c0266 , #5f11dc);

  flex: 1 1 0;
  max-width: 3000px; /* adjust as needed */
  border: 1px solid #a29fb3;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: flex-grow 0.3s ease;
}
@media (max-width: 768px) {
  .tools-row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .tools-card {
    max-width: 100%;
    flex-grow: 0;
    border-radius: 8px;
    height: auto;         /* let height adapt to content */
    min-height: 100px;    /* minimum height for rectangle look */
    padding: 0px;        /* add padding so content has space */
  }

  .card-header {
    padding: 10px 15px;
  }

  .card-body {
    padding: 10px 15px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .tools-row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .tools-card {
    max-width: 100%;
    flex-grow: 0;
    border-radius: 8px;
    height: auto;         /* let height adapt to content */
    min-height: 100px;    /* minimum height for rectangle look */
    padding: 0px;        /* add padding so content has space */
  }

  .card-header {
    padding: 10px 15px;
  }

  .card-body {
    padding: 10px 15px;
  }
}

.card-header {
  
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 20px 15px;
  border: 1px solid #767095;
  border-radius: 10000px; /* more curved edges */
  cursor: pointer;
  transition: background-color 0.3s ease;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .card-header {
    padding: 13px 10px;
  }
}

.card-header:hover {
  background-color: #06044c;
}
@media (min-width: 769px) and (max-width: 1024px) {
  .card-header {
    padding: 13px 10px;
  }
}

.card-header img {
  width: 70px;
  height: 70px;
  border-radius: 200%; /* makes the image circular */
  margin-right: 10px;
  background-color: #fff; /* optional: gives contrast if your image has transparency */
  border: 2px solid #0c0c0c; /* optional: subtle border for neatness */
}
.card-header h3 {
  flex-grow: 1;
  margin: 0;
  font-size: 1.1rem;
}

.icon {
  -webkit-user-select:none;
  font-size: 45px;
  user-select: none;
  transition: transform 0.3s ease;
}

.card-body {
  
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  transition: max-height 0.35s ease, padding 0.35s ease;
  flex-grow: 1;
}

.tools-card.open {
  flex-grow: 2; /* make the open card bigger */
}

.tools-card.open .card-body {
  
  max-height: 500px; /* enough height for content */
  padding: 15px;
}
/* Hide on mobile by default */
.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

/* When screen width is 768px or less */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }


  .dropdown {
    background-color: white;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #5f5757;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    flex-wrap: wrap;
    word-break: break-word;
    max-width: 100%;
    width: 100%;
  }

  .dropdown-item:hover {
    background-color: #adada9;
  }

  .dropdown-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
  }

  .dropdown-content {
    background-color: #e7e7e7;
    position: relative; /* or relative, depending on layout */
    z-index: 99;
    flex: 1;
    min-width: auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .dropdown-title {
    
    font-weight: bold;
    margin-bottom: 5px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .description {
    display: none;
    color: #000000;
    margin-top: 5px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
font-weight: 9999px;
 }

  .active .description {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }


  .dropdown {
    background-color: white;
    margin: 30px auto;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    flex-wrap: wrap;
    word-break: break-word;
    max-width: 100%;
    width: 100%;
  }

  .dropdown-item:hover {
    background-color: #f9f9f9;
  }

  .dropdown-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
    flex-shrink: 0;
  }

  .dropdown-content {
    flex: 1;
    min-width: auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 9999px;
  }

  .dropdown-title {
    font-weight: bold;
    margin-bottom: 5px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 9999px;
  }

  .description {
    display: none;
    color: #000000;
    margin-top: 5px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-weight: 9999px;
  }

  .active .description {
    display: block;
  }
}

@media (max-width: 600px) {
  .dropdown-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dropdown-item img {
    margin-bottom: 10px;
  }

  .dropdown-content {
    min-width: auto;
  }
}

/*____________FOOTER__________________________________________________________________________________________________________________*/
.footer {
  background: linear-gradient(to right, rgb(118, 194, 238), rgb(250, 135, 34));


  color: rgb(0, 0, 0);
  padding: 40px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-content {

  display: grid;
  grid-template-columns: 1fr;  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: center;

}
@media (min-width: 600px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: left;
  }
  
}
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    text-align: left;
  }
}

.footer-section h3 {
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 27px;
}

.footer-section ul,
.footer-section p {
  color: #000000;

  margin: 0 0 10px;
  line-height: 1.5;
  font-size:19px ;
}

.support-button {
  display: inline-block;
  background: #c91919;
  color: #fff1f1;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 4px 15px rgba(0, 255, 149, 0.4);
  transition: box-shadow 0.3s ease;
}

.support-button:hover {
  box-shadow: 0 0 25px rgba(0, 255, 149, 0.7);
}

.icons a {
  margin-right: 10px;
  font-size: 30px;
  color: #000000;
  transition: transform 0.2s ease;
}

.icons a:hover {
  transform: scale(1.2);
  color: #3754d5;
}

.footer-bottom {
  color: #000000;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 14px;
}

.slogan {
  color: #000000;

  display: flex;
  align-items: center;
  gap: 10px;
}

.legal {
  color: #000000;

  display: flex;
  gap: 10px;
  align-items: center;
}

.legal a {

  color: #000000;
  text-decoration: none;
}

.certifications img {
  color: #000000;

  height: 40px;
  margin-left: 10px;
}
Map container style */
.footer-section.map {
  max-width: 200px;
}

.map-container {
  width: 100%;
  aspect-ratio: 4/ 1;  /* Keeps square */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: grid;
}

.google-map {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 600px) {
  .map-container {
    width: 100%;
    aspect-ratio: 1/ 1;  /* Keeps square */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: grid;
  }
}


/*-------------------VIDEO---------------------------*/
.vid-sect{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}



.video-thumbnail-slider {
  padding: 40px 20px;
  text-align: center;
  color: rgb(0, 0, 0);
}

.thumbnail-container {
  display: flex;
  overflow-x: auto;
  gap: 50px;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
}

.thumbnail {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.thumbnail:hover {
  transform: scale(1.05);
}

.thumbnail img {
  width: 580px;
  height: 280px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* Modal Styling */
.modal {
  -webkit-backdrop-filter:blur(6px);
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  margin: auto;
  background: transparent;
  border: none;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.modal-content iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .modal-content iframe {
    height: 450px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .modal-content iframe {
    height: 450px;
  }
}

.close {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}


/* Play button always visible */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: none; /* Let clicks pass through to thumbnail */
}


.play-button svg {
  width: 68px;
  height: 48px;
}
@media (max-width: 768px) {
  .thumbnail img {
    width: 360px; /* Adjust for tablet */
    height: 190px;
  }
}

@media (max-width: 480px) {
  .thumbnail img {
    width: 270px; /* Adjust for mobile */
    height: 230px;
  }
}
/*--------------------------------------FORM-----------------------------*/
.isolated-enquiry-form * {
  all: unset;
  box-sizing: border-box;
}

.isolated-enquiry-form {
  max-width: 620px;
  margin: 90px auto;
  padding: 30px 25px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #fafafa;
  font-family: Arial, sans-serif;
  color: #222;
}

.isolated-enquiry-form h2 {
  all: unset;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
  display: block;
}

.isolated-enquiry-form label {
  all: unset;
  display: block;
  font-weight: 600;
  font-size: 21px;
  margin-bottom: 6px;
  cursor: pointer;
}

.isolated-enquiry-form input[type="text"],
.isolated-enquiry-form input[type="email"],
.isolated-enquiry-form input[type="tel"],
.isolated-enquiry-form select,
.isolated-enquiry-form textarea {
  all: unset;
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 15px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #111;
}
.isolated-enquiry-form input[type="text"],
.isolated-enquiry-form input[type="email"],
.isolated-enquiry-form input[type="tel"],
.isolated-enquiry-form select,
.isolated-enquiry-form textarea {
  all: unset;
  box-sizing: border-box;  /* ADD THIS LINE */
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 18px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #111;
}


.isolated-enquiry-form .checkbox-group {
  margin-bottom: 18px;
}

.isolated-enquiry-form .checkbox-group label {
  all: unset;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 19px;
  cursor: pointer;
}

.isolated-enquiry-form .checkbox-group input[type="checkbox"] {
  all: unset;
  width: 18px;
  height: 18px;
  border: 1.8px solid #999;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}

.isolated-enquiry-form .checkbox-group input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0px;
  width: 6px;
  height: 12px;
  border: solid #007bff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.isolated-enquiry-form button {
  -webkit-user-select:none;
  all: unset;
  width: 100%;
  background-color: #007bff;
  color: white;
  font-size: 16px;
  padding: 14px 0;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  transition: background-color 0.25s ease;
}

.isolated-enquiry-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 600px) {
  .isolated-enquiry-form {
    padding: 20px 15px;
    max-width: 95vw;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .isolated-enquiry-form {
    padding: 20px 15px;
    max-width: 95vw;
  }
  .confirmationMessage{
    display:none;
    color: green;
    margin-top: 4rem;
  }
}

/*-------------------------------------------------------------product list--------------------------------------*/
[x-cloak] {
  display: none !important;
}
.product-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: #000000;
  margin-bottom: -91px;
  margin-top: 77px;
 text-align: center;
}
.ether-title {
  font-size: 1.4rem; /* smaller size on mobile */
  font-family: 'Ethernocentric', sans-serif;
}
.product-grid {
  margin-top: 6rem; 
  margin-bottom: 11rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 160px;
  overflow: hidden;
  border-radius: 0.75rem;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-view-details {
  margin-top: auto;
  background: #2563eb;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
}

.side-panel {
  margin-top: 3.8pc;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: white;
  box-shadow: -2px 0 8px rgba(0,0,0,0.1);
  padding: 1.5rem;
  z-index: 50;
  overflow-y: auto;
}

.panel-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  color: #4b5563;
  background: none;
  border: none;
  cursor: pointer;
}

.panel-title {

  font-family:  'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

.panel-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.panel-description {
  font-family: 'Montserrat', sans-serif;
font-weight: 700; /* Bold weight */
  font-size: 1.5rem;
  color: #374151;
  margin-bottom: 1rem;
}

.panel-features {
  font-family: 'Roboto', sans-serif;
font-weight: 700; /* Bold weight */

  font-size: 1.2rem;

  list-style: disc;
  margin-left: 1.5rem;
  color: #4b5563;
  margin-bottom: 1rem;
}
.product-summary {
  font-family: 'Roboto', sans-serif;
font-weight: 700; /* Bold weight */
  list-style: disc;
 
  color: #4b5563;
  
}
.btn-quotation {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  background: #ab2929;
  color: white;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
  cursor: pointer;
}
@media (max-width: 768px)  {
  .product-image {
    height: 160px;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .side-panel{
    margin-top: 3.8pc;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 50;
    overflow-y: auto;
  }
  .brand {
    font-size: 1.4rem;
  }

  .menu-toggle {
    margin-left: auto; /* ensure it pushes to the end if needed */
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .product-image {
    height: 160px;
    overflow: hidden;
    border-radius: 0.75rem;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .side-panel{
    margin-top: 3.5pc;
    padding-bottom: 3rem; /* add extra bottom space for landscape toolbars */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 50;
    overflow-y: auto;
    padding-bottom: 5rem; /* add extra bottom space for landscape toolbars */

  }
  .brand {
    font-size: 1.4rem;
  }

  .menu-toggle {
    margin-left: auto; /* ensure it pushes to the end if needed */
  }
}.brochure-container {
  max-height: 56rem;
  max-width: 46rem; /* equivalent to max-w-xl */
  margin: 2.5rem auto 0 auto; /* mt-10 + centered */
  padding: 3.5rem; /* p-6 */
  background-color: #eff6ff8f; /* bg-blue-50 */
  border: 1px solid #93c5fd; /* border-blue-300 */
  border-radius: 1rem; /* rounded-2xl */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  text-align: center;
  margin-bottom: 3rem;
}

.brochure-title {
  font-size: 1.9rem; /* text-2xl */
  font-weight: bold;
  color: #1e40af; /* text-blue-800 */
  margin-bottom: 1rem; /* mb-4 */
}

.brochure-description {
  font-size: 1.5rem; /* text-2xl */
  color: #374151; /* text-gray-700 */
  margin-bottom: 1.5rem; /* mb-6 */
}

.brochure-button {
  background-color: #2563eb; /* bg-blue-600 */
  color: white;
  padding: 0.75rem 5rem; /* py-3 px-6 */
  border-radius: 9999px; /* rounded-full */
  font-size: 1.4rem; /* text-lg */
  font-weight: 600;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.brochure-button:hover {
  background-color: #1d4ed8; /* hover:bg-blue-700 */
}

/* Landscape adjustments */
@media (orientation: landscape) and (max-width: 768px) {
  .brochure-container {
    max-width: 100%;
    margin: 1rem auto;
    padding: 1.5rem;
    box-sizing: border-box;
  }

  .brochure-title {
    font-size: 1.5rem;
  }

  .brochure-description {
    font-size: 1.2rem;
  }

  .brochure-button {
    font-size: 1.1rem; /* slightly smaller */
    padding: 0.4rem 0.8rem; /* adjusted to fit better */
    white-space: nowrap; /* prevent line breaks */
  }
}

/* Portrait mobile adjustments */
@media (max-width: 480px) {
  .brochure-container {
    max-width: 100%;
    margin: 1rem auto;
    padding: 1rem;
    box-sizing: border-box;
  }

  .brochure-title {
    font-size: 1.4rem;
  }

  .brochure-description {
    font-size: 1rem;
  }

  .brochure-button {
    font-size: 1.1rem; /* slightly smaller to fit */
    padding: 0.6rem 1rem; /* balanced padding */
    white-space: nowrap; /* prevent line breaks */
  }
}


/*-------------------------------------------ABOUT US-----------------------------------*/

.about-wrapper {

  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  margin-bottom: 60px;
  margin-top: 30px;

}

.about-left,
.about-right {
  flex: 1 1 400px;
  padding: 20px;
  box-sizing: border-box;
}

.about-title {
  font-family: ethier;
  font-size: 51px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
  text-align: center;
}

.about-subtitle {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-top: 30px;
}

.about-text {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 40px;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.about-contact {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 27px;
  color: #000000;
  line-height: 1.6;
}

.about-contact a {
  color: #000000;
  text-decoration: none;
}

.about-contact a:hover {
  text-decoration: underline;
}

.about-right iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  * {
    transition: none !important;
    animation: none !important;
  }}
  @media (min-width: 769px) and (max-width: 1024px) {
    .about-left,
    .about-right {
      flex: 1 1 100%;
    }
  
    .about-wrapper {
      padding: 40px 0;
    }
  
    .about-title {
      font-size: 2.2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      padding: 0 15px;
    }
  
    .about-left,
    .about-right {
      flex: 1 1 100%;
      padding: 10px 0;
    }
  
    .about-title {
      font-size: 1.8rem;
      text-align: center;
    }
  
    .about-subtitle,
    .about-text,
    .about-contact {
      font-size: 1rem;
      text-align: justify;
    }
  
    .about-contact {
      font-size: 1.2rem;
      text-align: center;
    }
  
    .about-right iframe {
      min-height: 250px;
    }
  }

  