:root {
  --color-white: #fdfffa;
  --color-light-gray: #f5f5f5;
  --color-gray: #888888;
  --color-dark-gray: #222222;
  --color-dark: #111111;
  --color-accent: #0099ff;
  --color-border: #dddddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins";
}

html {
  scroll-behavior: smooth;

}

body {
  background-color: var(--color-white);
  color: var(--color-dark);
  line-height: 1.6;

}

nav {
  background: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: relative;
}

/* Links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #571a1a;
}

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo .logo-img {
  height: 80px;
  width: 130px;
  margin-top: 10px;
}

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-evenly;
}

.menu-btn span {
  height: 3px;
  background: #333;
  border-radius: 2px;
  width: 100%;
  transition: 0.3s;
}

/* Mobile menu */
/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu.open {
  max-height: 300px;
  opacity: 1;
}


.mobile-menu a {
  padding: 10px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #333;
}

/* Hero Section */

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: bold;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateX(100%);
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.slide>span {
  position: relative;
  z-index: 1;
}


h1 {
  font-size: 8rem;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin-bottom: 40px;
}

.about {
  margin: 20px;
  padding: 20px;
  scroll-margin-top: 60px;
  margin-top: 10px;
 
}

.main-about {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.left-about {
  display: flex;
  justify-content: flex-end;
  margin-left: 100px;
  font-size: 30px;
  margin-top: 0;
}

.about .main-about .right-about {
  max-width: 768px;
  font-size: 18px;
  text-orientation: mixed;
  line-height: 1.6;
  line-break: auto;
  text-align: justify;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
}

.work {
  display: flex;
  gap: 0px;
  margin-top: 10px;
  justify-content: space-between;
}

.work-left {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  font-size: 20px;
}

.work-right {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #631717;
  color: white;
  font-size: 10px;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 50px;
  aspect-ratio: 1 / 1;
}

.work-right p {
  font-size: 15px;
  color: white;
}

.work-right:hover {
  background-color: #000;
  color: white;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}

.img-about {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.product {
  margin: 30px;
  padding: 30px;
}

.product-info {
  display: flex;
  justify-content: space-between;
  margin: 30px;
  gap: 10px;
  padding: 30px;
}

/* about */
@media (max-width: 992px) {
  .main-about {
    flex-direction: column;
    align-items: flex-start;
  }

  .left-about,
  .right-about {
    width: 100%;
  }

  .work {
    flex-direction: column;

  }

  .work-right {
    width: 150px;
    /* keep circle size */
    height: 150px;
    margin: 20px auto 0;
  }
}



/* about */
/* Mobile */
@media (max-width: 600px) {
  .about {
    padding: 20px 10px;
  }

  .right-about h2 {
    font-size: 1.25rem;
  }

  .right-about p {
    font-size: 0.95rem;
  }

  .work-right {
    font-size: 0.9rem;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  nav {
    border: none;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .product-info {
    display: flex;
    flex-direction: column;
  }

  .hero-image {
    margin-top: 18px;
  }
}

@media (max-width: 799px) {
  h1 {
    font-size: 4.5rem;
    line-height: 0.9;
  }
}

#faq {
  scroll-margin-top: 60px;
}

.faq-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  background: #fff;
  margin: 30px;
  padding: 30px;
  border-radius: 10px;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.faq-left h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.faq-left p {
  color: #555;
  line-height: 1.6;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f4f4f4;
  color: #88171A;
  cursor: pointer;
}

.faq-question::after {
  content: '+';
  font-size: 18px;
  transition: transform 0.3s, content 0.3s;
  margin-left: 10px;
  flex-shrink: 0;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 15px;
  background: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px;
}

@media (max-width: 800px) {
  .faq-section {
    grid-template-columns: 1fr;
  }
}


.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 20px;
  padding: 20px;
}

.card {
  overflow: hidden;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.card h3 {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  background-color: #631717;
  color: white;
}

/* Expanded product view */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

.product-view {
  background: #fff;
  border-radius: 12px;
  margin-top: 60px;
  max-width: 600px;
  width: 90%;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.product-view img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

#product {
  scroll-margin-top: 60px;
}

#productTitle {
  color: #631717;
}

#productDesc ul {
  list-style: circle;
  margin: 10px;
}

.product-view h2 {
  margin: 15px 0;
  font-size: 20px;
  color: #333;
}

.product-view p {
  color: #555;
  line-height: 1.6;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  #productDesc ul {
    font-size: 13px;
  }

  .product-view {
    margin-top: 60px;
  }
}



@media (max-width: 500px) {
  .cards {
    grid-template-columns: 1fr;
  }

  #productDesc ul {
    font-size: 13px;
  }

  .product-view {
    margin-top: 60px;
  }
}

.values-section {
  background: #8d1f1f;
  margin: auto;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  position: relative;
  padding: 30px 10px;
}



.value-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  font-size: 32px;
}

.value-card h3 {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .value-card {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .value-card {
    padding: 10px;
  }
}

.who-we-are {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  margin: 30px;

}

/* .who-we-are h2 {
      font-size: 32px;
      margin-bottom: 40px;
      color: #333;
      margin-left: 10px;
    }

    .team-grid {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .team-card {
      background: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      padding: 20px;
      max-width: 300px;
      flex: 1;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border: 1px solid black;
    }

    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      border: 1px solid #970707;
    }

    .team-card img {
      width: 200px;
      height: 300px;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .team-card h3 {
      font-size: 20px;
      color: #222;
      margin-bottom: 5px;
    }

    .team-card p {
      color: #555;
      font-size: 16px;
    }

    @media (max-width: 900px) {
      .team-grid {
        flex-direction: column;
        align-items: center;
      }
    } */

.contact-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  align-items: center;
  gap: 20px;
  scroll-margin-top: 60px;
}

.contact-image {
  flex: 1;
  min-width: 300px;

}

.contact-image img {
  width: 480px;
  height: 500px;
  border-radius: 20px;
}

.contact-content {
  flex: 1;
  min-width: 300px;
  margin-top: 0;
}

.contact-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.contact-button {
  background: #631717;
  width: 100%;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background: #571a1a;
}

/* Modal */
/* ==========================
   UNIVERSAL STYLES (UNCHANGED)
   ========================== */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal {
  background: #fff;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: calc(100vh - 40px);
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: auto;
}

.modal h2 {
  margin-bottom: 20px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.modal form {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
}

.modal form input,
.modal form textarea,
.modal form select {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  width: 100%;
}

.modal form input:focus,
.modal form textarea:focus,
.modal form select:focus {
  border-color: #631717;
  outline: none;
}

.modal form textarea {
  resize: none;
  min-height: 100px;
}

.modal form button {
  background: #631717;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

.modal form button:hover {
  background: #571a1a;
}

.mobile-location-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
  box-sizing: border-box;
  align-items: flex-start;
}

.phone-group {
  flex: 2;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.country-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.iti {
  width: 100%;
}

.iti input {
  width: 100% !important;
}

/* Error messages */
#error-name,
#error-company,
#error-email,
#error-phone,
#error-country,
#error-message {
  display: none;
  color: #d93025;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 4px;
  font-weight: 500;
}

#error-name:not(:empty),
#error-company:not(:empty),
#error-email:not(:empty),
#error-phone:not(:empty),
#error-country:not(:empty),
#error-message:not(:empty) {
  display: block;
}

.error {
  border-color: #d93025 !important;
}

/* ==========================
   RESPONSIVE FIXES
   ========================== */

/* Small screens (phones portrait) */
@media screen and (max-width: 480px) {
  .overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 60px;
    overflow-y: auto;
  }

  .modal {
    width: 95%;
    max-height: none;
    margin: 0 auto;
    padding: 15px;
  }

  .modal form {
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    padding-right: 5px;
  }

  .mobile-location-group {
    flex-direction: column;
    gap: 10px;
  }

  .phone-group,
  .country-group {
    width: 100%;
    flex: none;
  }

  .modal form input,
  .modal form textarea,
  .modal form select {
    font-size: 14px;
    padding: 8px;
  }

  .modal form textarea {
    min-height: 70px;
  }

  #error-name,
  #error-company,
  #error-email,
  #error-phone,
  #error-country,
  #error-message {
    font-size: 11px;
    line-height: 1.3;
    word-wrap: break-word;
    white-space: normal;
  }

  .g-recaptcha {
    transform: scale(0.9);
    transform-origin: 0 0;
    height: auto;
    overflow: visible;
  }

  .g-recaptcha iframe {
    width: 100% !important;
    height: auto !important;
  }

  .rc-anchor-error-msg {
    font-size: 10px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
  }
}

/* Landscape mode (small height but wide width) */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .overlay {
    align-items: flex-start;
    padding-top: 40px;
  }

  .modal {
    width: 90%;
    max-height: calc(100vh - 40px);
    padding: 12px;
  }

  .modal form {
    overflow-y: auto;
    max-height: calc(100vh - 100px);
  }

  .modal form textarea {
    min-height: 60px;
  }

  .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }
}

/* Very small devices (<=360px) */
@media screen and (max-width: 360px) {
  .g-recaptcha {
    transform: scale(0.8);
  }

  .modal {
    padding: 10px;
  }

  .modal form {
    max-height: calc(100vh - 100px);
  }

  .input-group {
    margin-bottom: 8px;
  }
}

/* Ultra tiny (<=320px) */
@media screen and (max-width: 320px) {
  .g-recaptcha {
    transform: scale(0.7);
  }

  .rc-anchor-logo-portrait,
  .rc-anchor-logo-img,
  .rc-anchor-logo-text {
    display: none !important;
  }

  .modal form {
    max-height: calc(100vh - 90px);
  }
}

/* Tablets (larger than phones) */
@media screen and (min-width: 481px) and (max-width: 768px) {
  .modal {
    width: 85%;
    max-height: calc(100vh - 60px);
  }

  .modal form {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }

  .g-recaptcha {
    transform: scale(0.95);
    transform-origin: 0 0;
  }
}


footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-logo {
  margin-bottom: 15px;
}


.footer-logo img {
  height: 100px;
  width: 150px;
}

.footer-section p {
  line-height: 1.6;
  font-size: 14px;
  color: #ccc;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #FAA81Cff;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #FAA81Cff;
}

.footer-section span {
  display: block;
  margin-top: 15px;
  color: #ccc;
}

.email-container {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.email-item {
  display: flex;
  align-items: center;

}

.email-item strong {
  color: #FAA81Cff;
  min-width: 75px;
}

.email-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}


.certifications {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.cert-item {
  display: flex;
  align-items: center;
}

.cert-logo {
  width: 90px;
  height: 60px;
  background: white;
  border-radius: 10px;
  padding: 2px;
  outline: none;
}

.cert-item span {
  font-size: 12px;
  text-align: center;
  display: flex;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-section {
    margin: 20px 0;
  }
}


@media (min-width: 1400px) {
  .hero-content {
    padding: 0 80px;
  }

  .about,
  .product,
  .faq-section,
  .contact-section,
  .footer-container {
    max-width: 1400px;
  }

  .hero-image {
    margin-top: 180px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  h1 {
    font-size: 5rem;
  }

  .hero {
    padding: 120px 20px 0;
  }

  .left-about {
    margin-left: 0;
    justify-content: flex-start;
    font-size: 24px;
  }

  .right-about {
    font-size: 16px;
  }

  .product-info {
    flex-direction: column;
    padding: 15px;
    margin-left: 0;
  }

  .product-info p {
    margin-left: 14px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 1.1;
  }

  .hero {
    padding: 100px 15px 0;
  }

  .work {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-right {
    margin: 20px auto 0;
    height: 120px;
    width: 120px;
  }

  .contact-image img {
    width: 100%;
    height: auto;
  }

  .faq-section {
    margin: 15px;
    padding: 15px;
    margin-left: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }

  nav {
    padding: 8px;
  }

  .logo .logo-img {
    height: 60px;
    width: 100px;
  }

  .right-about h2 {
    font-size: 1.1rem;
  }

  .right-about p {
    font-size: 0.9rem;
  }

  .work-left {
    font-size: 16px;
  }

  .work-right {
    font-size: 0.8rem;
    padding: 8px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .contact-content p {
    font-size: 14px;
  }


  .contact-button {
    font-size: 16px;
    padding: 12px 20px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-container {
    align-items: center;
  }

  .email-item {
  align-items: center;
  justify-content: center;
}

  .hero-image {
    margin-top: 50px;
  }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}


