* {
  box-sizing: border-box;
  max-width: 100%;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
   overflow-x: hidden;
  }

/* NAVBAR */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1e2B42;
  color: white;
  padding: 0.75rem 1rem;
  width: 100%;
  position: relative;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
  flex: 1;
}

.logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-name {
  flex: 1;
  text-align: center;

  font-family: 'Syncopate', sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 7vw, 4rem);
  color: #c6cad1;
  letter-spacing: 0.1em;
  padding-bottom: 0.25em;
  border-bottom: 3px solid #1e2B42;
  max-width: max-content;
  margin: 1rem auto 0 auto;
  user-select: none;
}

.hamburger {
  flex: 1;
  display: flex;
  justify-content: flex-end;

  /* your original styles kept EXACTLY */
  background-color: transparent !important;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  cursor: pointer;
  user-select: none;
  padding: 0.5em;
}

/* Dropdown Menu Container */
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 1rem;
  background-color: #1e2B42;
  border-radius: 14px;
  padding: 0.5rem 0;
  display: none;
  width: clamp(220px, 60vw, 260px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
  color: #1e2B42;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s ease;
}

.dropdown-menu a:hover {
  background-color: #1c2B42;
  color: white;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #637ea6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}

.dropdown-menu .text {
  flex: 1; 
}

.dropdown-menu .arrow {
  font-size: 1.2rem;
  opacity: 0.7;
}

.dropdown-menu.show {
  display: flex;
}


  /* Modal styling */
    .modal {
      display: none; 
      position: fixed; 
      z-index: 1000; 
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0, 0, 0, 0.6);
    }

    .modal-content {
      background-color: #fff;
      margin: 10% auto;
      padding: 20px;
      border-radius: 10px;
      width: 90%;
      max-width: 350px; 
      text-align: center;
      position: relative;
      box-sizing: border-box;
    }

    .close-btn {
      margin-top: 15px;
      padding: 10px 20px;
      background-color:#4f6176;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .close-btn:hover {
      background-color: #596d83;
    }
    .modal.show {
  display: block;
}

/* banner image */
.banner-container {
  margin-bottom: 0;
  width: 100%;
  height: 650px; 
  overflow: hidden;
  position: relative;

}

.banner-image {
  width: 100%;
  height: 650px;
  object-fit: cover; 
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); 
}


/* Container base styling */
.qstn-container {
  width: 100%;
  margin: auto;
  background: #1e2B42;
    color: white;
  padding: 20px 30px;


  font-family: Arial, sans-serif;
}

/* Headings */
.qstn-container h2 {
  text-align: center;
  color: #333;
  margin-top: 0;
}

/* Questions */
.qstn-container .question p {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* Buttons */
.qstn-container button,
.qstn-container .btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 18px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;

  text-align: center;
  transition: background-color 0.3s ease;
}
.qstn-button-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.qstn-container button:last-child,
.qstn-container .btn:last-child {
  margin-right: 0;
}

.qstn-container button:hover,
.qstn-container .btn:hover {
  background-color: #0056b3;
}

/* Inputs */
.qstn-container input[type="text"],
.qstn-container input[type="number"] {
  width: 100%;
  padding: 8px 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Hide elements with .hidden */
.qstn-container .hidden {
  display: none;
}

/* Container */
.why-zowfity {
  background-color: white;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  color: #ffffff;
  margin-top: 0;
  padding-top: 0;
}

/* Heading */

.why-heading {

  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* Subtext paragraph */
.why-subtext {
    text-align: center;
  font-size: 2.15rem;
  color: #fffafa;
  max-width: 650px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
 margin: 0 auto;
  font-size: smaller;

}

/* Cards container */
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Individual card */
.why-card {
  margin-bottom: 50px;
  background: linear-gradient(135deg, #1c2B42, #4bb5d2); 
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  padding: 25px 20px;
  flex: 1 1 260px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

/* Hover effect on card */
.why-card:hover {
  box-shadow: 0 8px 25px rgb(26 115 232 / 0.25);
  transform: translateY(-6px);
}

/* Icon styling */
.icon {
  font-size: 3.8rem;
  margin-bottom: 15px;
}

/* Card titles */
.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #1b2f47;
}

/* Card text */
.why-card p {
 text-align: center;
 font-size: 1rem;
  color: 000;
  line-height: 1.4;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;

}
/*companyvdo*/
.company-video-section {
  width: 100%;
  padding: 2rem;
  background-color: #1c2B42,;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-video-section video {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Company description container */
.company{
    margin: 0;
    padding: 20px;
     background: linear-gradient(135deg, #4bb5d2,#1c2B42); 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem; 
    flex-wrap: wrap;
    min-height: 20rem; 
    box-sizing: border-box;
}
.company-description{
     width: 100%;
    max-width: 50rem;
 font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
    border-radius: 1rem;
    padding: 1.5rem;
    box-sizing: border-box; 
}
.company-description h2{
    text-align: center;
    color: #c6cad1;
font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}
.company-description p{
    text-align: justify;
    text-align: center;
    color: #c6cad1;
font-family: 'Inter', 'Segoe UI', Roboto, Arial, sans-serif;
}
.zowmates {
  margin: 0;
  padding: 3rem 1rem;
  background: linear-gradient(27deg, #4bb5d2, #1c2B42);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.zowmates-description {
  width: 100%;
  max-width: 50rem;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-sizing: border-box;
}

.zowmates-description h2 {
  color: goldenrod;
font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.zowmates-description p {
  color: #c6cad1;
font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.zowmates-description strong {
  color: #ffffff;
  font-weight: 600;
}

.zowmates_tagline {
  font-style: italic;
  font-weight: 600;
  color: #f9a825;
    font-family: 'Poppins', 'Segoe UI', Roboto, Arial, sans-serif;

  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 1.5rem;
}
/*footer styling*/
.footer {
  
  background-color:#1c2B42;
  color: #ffffff;
  padding: 20px 10%;
  font-family: Arial, sans-serif;
}

.footer-container {
 display: flex;
  flex-direction: column; 
  align-items: center;
  text-align: center;
  gap: 10px;
}

/* Social icons */
.social-links a {
  color: #ffffff;
  margin: 0 8px;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #00bfff;
}

/* Privacy / Terms links */
.footer-links {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 10px; 
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bfff;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}


.language-selector label {
  margin-right: 5px;
  font-weight: 600;
}

.language-selector select {
  padding: 4px 8px;
  border-radius: 4px;
  border: none;
  background-color: #f0f0f0;
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #444;
  padding-top: 10px;
  font-size: 14px;
}

/*chatbot*/
#fixed-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#fixed-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  cursor: pointer;
}

#fixed-logo img:hover {
  transform: scale(1.1);
}

#faq-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 300px;
  height: 400px; 
  background:#1e2732;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  padding: 15px;
  z-index: 9998;
  display: none;
  font-family: Arial, sans-serif;

  overflow-y: auto; 
  overflow-x: hidden;

  -ms-overflow-style: none;
  scrollbar-width: none;
}
#faq-popup::-webkit-scrollbar {
  display: none; 
}

#faq-popup h3 {
  margin-top: 0;
  font-size: 18px;
  color: #333;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  background-color:#4f6176;
  width: 100%;
  text-align: left;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.2s;
  color: white;
}

.faq-question:hover {
  background-color: #617994;
}

.faq-answer {
    color: white;
  display: none;
  margin-top: 5px;
  padding-left: 10px;
  font-size: 13px;

}

/*sell products*/
.sell-products {
  background-color: #1c2B42;
  width: 100vw;
  padding: 3rem 1rem;
  text-align: center;
  color: #ffffff;
  box-sizing: border-box;
}

.sell-products h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sell-products p {
  color: #e0e0e0;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.sell-products .contact-box a {
  color: #ffc107; 
  text-decoration: underline;
  font-weight: 500;
}
/*job ad*/
.ad-section {
  background: linear-gradient(135deg, #1c2B42, #1c2B42);
  color: #ffffff;
  padding: 3rem 1.5rem;
}

.ad-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ad-text {
  
  max-width: 600px;
}

.ad-text h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ad-text .highlight {
  color: #f9a825;
}

.ad-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.ad-button {
  display: inline-block;
  background-color: #f9a825;
  color: #1e2732;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ad-button:hover {
  background-color: #ffbf00;
}

.ad-image {
  width: 100%;
  border-radius: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.ad-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}


/*apad*/
.app-ad-section {
  background: #1c2B42;  
  color: white;
  padding: 3rem 1rem;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.ad-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.ad-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-buttons img {
  height: 60px;
  transition: transform 0.3s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}
 .ad-content img {
  width: 100%;
  max-width: 1200px; 
  height: auto;
  display: block;
  margin: 0 auto 1rem auto; 
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}

  /* responsiveness */
  @media (min-width: 320px) and (max-width: 768px) {

   .logo img {
    height: 70px !important;
    width: auto !important;
  }
  
    nav {
      position: relative;
    }

    .site-name {
      font-size: 1rem;
    }
        .dropdown-menu {
    right: 0.5rem;
    width: clamp(200px, 70vw, 240px);
  }

  .dropdown-menu a {
    padding: 1rem;
  }
   .banner-container {
    height: auto; 
    
  }

  .banner-image {
    width: 100%;
    height: auto;
    object-fit: contain; 
    display: block; 
  }

  .quote h3 {
    font-size: 1.3rem;
  }

  .quote p {
    font-size: 0.95rem;
  }

  .quote {
    top: 65%;
  }
    .quote button {
        font-size: 12px;
        padding: 8px 16px;
    }
      .qstn-container {
    padding: 15px 20px;
  }

  .qstn-container button,
  .qstn-container .btn {
    width: 100%;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
  }

  .qstn-container button:last-child,
  .qstn-container .btn:last-child {
    margin-bottom: 0;
  }
    .modal-content {
    margin: 5% auto;
    }
     .why-heading {
    font-size: 1.8rem;
  }

  .why-subtext {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .icon {
    font-size: 2.5rem;
  }

  .why-card {
    padding: 20px 15px;
    box-shadow: 0 8px 25px rgb(26 115 232 / 0.25);
    transform: translateY(-20x);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .why-card h3 {
    font-size: 1.1rem;
  }

  .why-card p {
    font-size: 0.95rem;
  }
    .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links a,
  .social-links a {
    display: inline-block;
    margin: 5px 10px 5px 0;
  }

  .language-selector {
    margin-top: 10px;
  }
      .company-description h2 {
        font-size: 1.4rem;
    }

    .company-description p {
        font-size: 0.9rem;
    }
 .company {
        padding: 1.5rem 1rem;
        flex-direction: column;
    }
     .zowmates {
    padding: 2rem 1.5rem;
  }

  .zowmates-description {
    padding: 1.5rem;
  }

  .zowmates-description h2 {
    font-size: 2.2rem;
  }

  .zowmates-description p {
    font-size: 1.1rem;
  }
      #fixed-logo {
    bottom: 15px;
    right: 15px;
  }

  #fixed-logo img {
    width: 50px;
    height: 50px;
  }

  #faq-popup {
    bottom: 70px;
    left: 10px;
    width: 90vw;
    height: 60vh;
    max-height: 60vh;
    padding: 10px;
    font-size: 14px;
  }

  #faq-popup h3 {
    font-size: 16px;
  }

  .faq-question {
    font-size: 13px;
    padding: 8px;
  }

  .faq-answer {
    font-size: 12px;
    padding-left: 8px;
  }
      .feedback-form,
    .feedback-card {
        padding: 1rem;
    }

    .section-title,
    .feedback-header {
        font-size: 1.5rem;
    }

    .btn-submit {
        width: 100%;
    }

    .btn-delete {
        float: none;
        display: block;
        margin-top: 1rem;
        width: 100%;
    }
      .ad-content h2 {
    font-size: 1.5rem;
  }

  .ad-content p {
    font-size: 1rem;
  }

  .store-buttons img {
    height: 50px;
  }
  .ad-container {
    flex-direction: column; 
    text-align: center;
  }

  .ad-text {
    margin-right: 0;
  }

  .ad-image {
    order: -1; 
    margin-bottom: 2rem;
  }

  .ad-text h1 {
    font-size: 1.8rem;
  }

  .ad-text p {
    font-size: 1rem;
  }
   .footer {
    padding: 20px 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-links {
    flex-direction: column;  
    gap: 8px;
  }

  .footer-links a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .social-links a {
    font-size: 1.1rem;
    margin: 0 6px;
  }

  .footer-bottom {
    font-size: 13px;
  }

  }

@media (min-width: 481px) and (max-width: 768px) {
  #faq-popup {
    width: 350px;
    height: 350px;
    max-height: 65vh;
  }

}