@import url('https://fonts.googleapis.com/css?family=Inter&display=swap');

:root {
  --bg: #ffffff;
  --text-dark: #222;
  --gray: #555;
  --accent: #000;
  --radius: 14px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text-dark);
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  /* border-radius: 0 0 var(--radius) var(--radius); */
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.05); */
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
}

.logo {
  width: 100%;
  height: 50px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  transition: all 0.3s ease;
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #fca311;
}

.enquire-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 15px 20px;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.enquire-btn i{
  margin-left: 0.5rem;
}

.enquire-btn:hover {
  background: #222;
}

/* Hamburger styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
@media (max-width: 900px) {
  header {
    padding: 14px 20px;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  nav.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .enquire-btn {
    width: 80%;
    text-align: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  /* border-radius: var(--radius); */
  border-radius: 25px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  overflow: hidden;
  margin: 10px auto;
  max-width: 98%;
}

.hero img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  /* filter: brightness(0.7); */
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eaeaea;
  margin-bottom: 24px;
}

.hero-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.hero-content .btn:hover {
  background: #f2f2f2;
}

.hero-worker {
  position: absolute;
  bottom: 0;
  bottom: 0%;
  right: 0px;
  width: 200px !important;
  height: 300px !important;
  object-fit: contain;
  z-index: 1;
}

.hero-bottom-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  /* background: rgba(0,0,0,0.5); */
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.95rem;
  color: white;
  width: 100%;
  font-weight: 600;
  text-shadow: 1px 1px black;
  /* backdrop-filter: blur(6px); */
}


@media (max-width: 768px) {
  .hero-content {
    left: 8%;
    right: 8%;
    top: 55%;
    transform: translateY(-50%);
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-content .btn {
    padding: 10px 16px;
  }

  .hero-worker {
    /* display: none; */
    bottom: 0px;
    right: -20px;
    width: 180px !important;
    height: 200px !important;
    overflow-x: hidden;
  }

  .hero-bottom-text {
    bottom: 0px;
    /* left: 50%; */
  }
}

/* .accordion-section{
  display: flex;
  flex-direction: row;
  width: 960px;
  margin-top: 5%;
}
.panel{
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
}
.panel h3{
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}
.panel.active{
  flex: 5;
}
.panel.active h3{
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}


@media(max-width: 480px){
  .accordion-section{
    width: 100vw;
  }
  .panel:nth-of-type(4),
  .panel:nth-of-type(5){
    display: none;
  }
} */

.main-container {
  display: flex;
  flex-direction: row;
  /* width: 1500px; */
  /* width: auto; */
  gap: 20px;
  margin: 5%;

}

/* Left description box */
.description-box {
  flex: 0.4;
  /* background: #fff; */
  padding: 20px;
  /* border-radius: 10px; */
  /* box-shadow: 0 0 10px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
  padding-top: 10%;
}

.description-box h2 {
  margin-top: 0;
  font-size: 25px;
  font-weight: 600;
  color: #222;
}

.description-box p {
  color: #555;
  font-size: 20px;
}

/* Accordion Section */
.accordion-section {
  flex: 0.6;
  display: flex;
  flex-direction: row;
  height: 450px;
  overflow: hidden;
}

.panel {
  background-size: cover;
  background-position: center;
  /* background-repeat: no-repeat; */
  background-repeat: round;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
}

.panel h3 {
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  border-radius: 4px;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
}

.what-we-offer-section{
  margin: 5%;
  margin-top: 80px;
  padding: 60px 20px;
  margin-bottom: 0px !important;
}
.tag{
  font-size: 15px;
  background: #eaeaea;
  padding: 10px 15px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid transparent;
  color: #666666;
}
.offer-section-title{
  margin: 15px 0px;
  font-size: 1.4rem;
}
.offer-section-desc{
  font-size: 1.2rem;
}
.contactus{
  align-items: center;
  padding: 12px 20px;
  border-radius: 9999px;
  background: black;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  margin-bottom: 5px;
  margin-left: 0.5%;
  vertical-align: middle;
  display: inline-flex;
  margin-bottom: 0rem;
}


.who-section {
  padding: 60px 20px;
  background: #fff;
  margin: 5%;
  margin-bottom: 0px;
  margin-top: 0px;
}

.who-tag {
  background-color: #f1f1f1;
  color: #555;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
}

.who-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 16px;
}

.who-text {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.stat {
  text-align: left;
}

.stat h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.stat p {
  font-size: 0.95rem;
  color: #777;
  margin: 5px 0 0;
}

.who-img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.card-custom {
  border: none;
  border-radius: 16px;
  background-color: #f8f9fb;
  padding: 30px;
  height: 100%;
}

.card-custom .icon {
  font-size: 28px;
  margin-bottom: 10px;
  color: #333;
}

.card-custom h5 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.card-custom p {
  color: #555;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .what-we-offer-section{
    margin: 0px;
    padding: 20px;
  }
  .main-container{
    margin: 0px;
    padding: 20px;
  }
  .description-box{
    padding: 0px;
    /* margin-top: 2rem; */
  }
  .panel {
    flex: 0.4;
    margin: 2px;
  }
  .who-title {
    font-size: 1.6rem;
  }
  .card-custom {
    text-align: center;
  }
  .stat {
    text-align: center;
  }
  .contactus{
    margin-top: 10px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .what-we-offer-section{
    margin: 0px;
    padding: 20px;
  }
  .main-container{
    margin: 0px;
    padding: 20px;
  }
  .description-box{
    padding: 0px;
    /* margin-top: 2rem; */
  }
  .panel {
    flex: 0.4;
    margin: 2px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.badge-featured {
  background: #f2f2f2;
  color: #555;
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
}

.product-card {
  border: none;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.product-card img {
  width: 100%;
  border-radius: 16px;
  height: 350px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}

.product-price {
  color: #666;
  font-size: 1.3rem;
}

.view-all {
  text-align: right;
  margin-top: 1rem;
}

.view-all a {
  color: #555;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.view-all a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .product-card img {
    height: 180px;
  }
  .section-header {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .view-all {
    text-align: left;
  }
  .section-header {
    margin-top: 2rem;
  }
}

.section-container {
  padding: 60px 20px;
  text-align: center;
}

.badge-section {
  display: inline-block;
  background-color: #f4f4f4;
  border-radius: 50px;
  padding: 6px 20px;
  font-weight: 500;
  color: #444;
  font-size: 15px;
  border: 1px solid #ccc;
}

.section-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin: 20px 0 40px;
}

.service-card {
  background-color: #f6f6f6;
  border: none;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  height: 300px;
  overflow: scroll;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .service-card {
    height: 300px;
  }
  .industry-card img{
    height: 300px !important;
  }
  .product-card img{
    height: 300px !important;
  }
  .accordion-section{
    height: 350px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .service-card {
    height: 400px;
  }
  .industry-card img{
    height: 320px !important;
  }
  .product-card img{
    height: 320px !important;
  }
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #f0f0f0;
}

.icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.icon-circle i {
  font-size: 20px;
  color: #333;
}

.service-card h5 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .service-card {
    text-align: center;
  }
  .icon-circle {
    margin: 0 auto 15px;
  }
}
.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.industry-card:hover {
  transform: scale(1.03);
}
.industry-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}
.industry-label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 15px;
  border-radius: 50px;
}

/* Clientele */
.client-section {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.client-section h2 {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 1.9rem;
  color: #222;
}

.logo-slider {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  gap: 40px;
  animation: scroll 30s linear infinite; /* faster speed */
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.clientele-logo {
  flex: 0 0 auto;
  width: 200px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.07);
  background: #f9f9f9;
}

.clientele-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .clientele-logo {
    width: 110px;
    height: 60px;
  }
  .logo-track {
    gap: 40px;
    animation-duration: 8s;
  }
}


/* Testiomonals */
.section-tag {
  display: inline-block;
  background-color: #f1f1f1;
  padding: 6px 18px;
  border-radius: 25px;
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.testimonial-section h2 {
  font-weight: 700;
  color: #222;
  font-size: 2rem;
}

.testimonial-section p {
  color: #666;
  line-height: 1.7;
  max-width: 500px;
}

.testimonial-card {
  background-color: #f6f6f6;
  border: none;
  border-radius: 20px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.stars {
  color: #000;
  margin-bottom: 10px;
  font-size: 25px;
}

.testimonial-text {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h6 {
  margin: 0;
  font-weight: 600;
  color: #111;
  font-size: 0.95rem;
}

.user-info span {
  display: block;
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .testimonial-section h2 {
    font-size: 1.7rem;
  }
  .testimonial-section p {
    max-width: 100%;
  }
}
.faq-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
}

.faq-section p {
  color: #666;
  max-width: 420px;
  line-height: 1.6;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  background: none;
  margin-bottom: 2%;
}

.accordion-button {
  background: none;
  color: #333;
  font-weight: 500;
  padding: 5px 0;
  box-shadow: none;
  font-size: 20px;
}

.accordion-button::after {
  content: "+";
  font-size: 22px;
  color: #555;
  background-image: none;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "";
}

.accordion-body {
  padding: 0 0 15px 0;
  color: #666;
  font-size: 0.95rem;
  max-width: 90%;
}

@media (max-width: 992px) {
  .faq-section {
    padding: 60px 20px;
  }
  .faq-section h2 {
    font-size: 1.7rem;
  }
  .faq-section p {
    max-width: 100%;
  }
}

.contact-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 10px 20px 50px;
}

.contact-hero h2 {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 15px;
  background: white;
  color: black;
}

.contact-hero p {
  font-size: 1.2rem;
  /* max-width: 750px; */
  margin: 0 auto;
  color: black;
  background: white;
  /* text-shadow: 2px 2px white; */
  margin-bottom: 2rem;
}

/* FORM CARD */
.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  /* margin: -120px auto 80px; */
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 20px 60px;
  margin-top: 1rem;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  box-shadow: none;
}

.form-control:focus {
  border-color: #000;
  box-shadow: none;
}

.btn-submit {
  background-color: #1e1e1e;
  color: #fff;
  padding: 14px;
  border-radius: 25px;
  border: none;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #333;
}

/* @media (max-width: 992px) {
  .contact-hero {
    padding: 100px 20px 200px;
  }

  .contact-form-wrapper {
    margin-top: -100px;
    padding: 40px;
  }
}

@media (max-width: 576px) {
  .contact-hero h2 {
    font-size: 1.5rem;
  }
  .contact-form-wrapper {
    margin-top: -80px;
    padding: 30px 25px;
  }
} */

.footer-section {
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1.1rem;
  padding: 5rem;
  /* padding-bottom: 2rem; */
}

.footer-logo i {
  font-size: 1.6rem;
  color: #f9b233; /* orange logo color */
}

.footer-divider {
  border: none;
  border-top: 1px solid #444;
  width: 80%;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f9b233;
}

.footer-social{
  float: right;
  display: flex;
  flex-direction: column;
}
.footer-social a {
  width: 35px;
  height: 35px;
  border: 1px solid #777;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  color: #000;
  background-color: #f9b233;
  border-color: #f9b233;
}

.mobile-footer-social{
  text-align: center;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
  font-size: 14px !important;
}
.mobile-footer-social a{
  border: 2px solid #777;
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s;
  padding: 3.5%;
  font-size: 18px;
  margin: 10px;
}
.mobile-footer-social a:hover {
  color: #000;
  background-color: #f9b233;
  border-color: #f9b233;
}

.footer-bottom {
  border-color: #333 !important;
}

.footer-policy a {
  color: #ccc;
  text-decoration: none;
}

.footer-policy a:hover {
  color: #f9b233;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact-form-wrapper {
    padding: 20px;
  }
  .footer-social {
    /* display: block; */
    flex-direction: row;
    gap: 1rem;
    float: left;
  }
  .footer-section {
      padding: 1rem;
  }
  .footer-social{
      float: left;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .footer-social {
    /* display: block; */
    flex-direction: row;
    gap: 1rem;
    float: left;
  }
}

.product-hero-section {
  position: relative;
  height: 70vh;
  border-radius: 20px;
  overflow: hidden;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45); /* dark overlay for readability */
}

.product-hero-section h1 {
  font-weight: 700;
  color: #fff;
  padding: 5px;
}

.product-hero-section p {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 5px;
}
@media (max-width: 768px) {
  .product-hero-section {
    margin: 5px;
  }

  .product-hero-section h1 {
    font-size: 1.8rem;
  }

  .product-hero-section p {
    font-size: 0.95rem;
  }
}

.content-box p{
  font-size: 1.2rem;
}
.content-box h2{
  font-weight: 600;
}

.img-box img {
  border-radius: 18px;
  width: 100%;
  height: 30rem;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.8rem;
}

.product-card-main-img {
  width: 100%;
  height: 800px;
  border-radius: 16px;
  object-fit: cover;
}
.product-card-sub-img {
  width: 100%;
  height: 350px;
  border-radius: 16px;
  object-fit: cover;
}

.product-card {
  /* margin-bottom: 1rem; */
}

/* .product-title {
  font-weight: 600;
  font-size: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 0.2rem;
  color: #222;
} */

.product-price {
  font-size: 0.95rem;
  color: #666;
}

.product-grid {
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .product-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
  }

  .right-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1.5rem;
  }
}

.section-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.feature-card {
  background-color: #f4f4f4;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  background-color: #f1f1f1;
  transform: translateY(-3px);
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

.icon-wrapper i {
  font-size: 20px;
  color: #000;
}

.feature-title {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.feature-desc {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.5;
}

.product-section {
  max-width: 1100px;
  margin: 60px auto;
}

.product-img {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  /* object-fit: cover; */
}
/*
.product-title {
  font-weight: 700;
  font-size: 1.2rem;
} */

.product-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}

.price {
  font-weight: 600;
  font-size: 1.1rem;
}

.quantity-box {
  display: inline-flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 8px;
  padding: 5px 8px;
  margin-left: 10px;
  gap: 4px;
}

.quantity-box button {
  border: none;
  background: transparent;
  font-weight: bold;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  padding: 0 6px;
}

.quantity-box input {
  width: 50px;
  border: none;
  background: transparent;
  text-align: center;
  font-weight: 500;
  color: #333;
  outline: none;
}

.description {
  color: #777;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.enquire-btn {
  background-color: #000;
  color: #fff;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  text-decoration: none;
}

.enquire-btn:hover {
  background-color: #333;
  color: #fff;
}

.table {
  margin-top: 25px;
  border-color: #ddd;
  font-size: 0.9rem;
}

.table th {
  background-color: #f9f9f9;
  color: #666;
  width: 25%;
}

.extra-text {
  font-size: 0.9rem;
  color: #777;
  margin-top: 25px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .product-section {
    margin: 30px 20px;
  }
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.project-card {
  border: none;
  background-color: #fff;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* padding: 1rem 2rem; */
}

.project-card:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 6px 12px rgba(0,0,0,0.08); */
}

.project-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 16px;
}

.project-title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.project-desc {
  color: #777;
  font-size: 1.2rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .who-img{
    height: 250px;
  }
  .project-card {
    padding: 0px;
  }
  .project-img {
    height: 300px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .project-card {
    padding: 0px;
  }
  .project-img {
    height: 300px;
  }
}

.project-detail-image img{
  width: 100%;
  height: 70vh;
  border-radius: 16px;
  object-fit: cover;
}

.project-detail-body p{
  font-size: 1.2rem;
}

.product-detail-subimg{
  width: 100%;
  height: 50vh;
  border-radius: 20px;
  margin-bottom: 2rem;
  object-fit: contain;
}

.section-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.usecase-title {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.problem h3 {
  font-weight: 600;
}

.problem p {
  color: #666;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}

.usecase-img img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.resourcesBtnDiv{
  display: flex;
  width: 100%;
  overflow-y: scroll;
  justify-content: center;
  margin-top: 6rem;
}

.resourcesBtn{
  background: lightgray;
  color: black;
  font-size: 1.4rem;
  border-radius: 40px;
  margin: 10px 20px;
  width: 310px;
  padding: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.resourcesBtnActive{
  background: black;
  color: white
}
.resourcesBtn:hover{
  background: black;
  color: white
}

@media (max-width: 767px) {
  .product-card-main-img{
    height: 350px;
  }
  .resourcesBtnDiv{
    display: block ruby !important;
  }
  .resourcesBtn{
    width: auto;
    font-size: 1.2rem;
    margin: 10px 5px;
    padding: 10px 20px;
  }
}

.resourcesImg{
  border-radius: 30px;
  width: 100%;
}
.resourcesTitle{
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0rem 1rem 0rem;
}
.resourcesText{
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .who-section{
    margin: 0px;
    padding-top: 0px;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .who-section{
    margin: 0px;
  }
}

.f-head{
  font-size: 1.6rem;
}
.f-subhead{
  font-size: 1.4rem;
}
.f-body{
  font-size: 1.2rem;
}

.infoDivContact{
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 32% !important;
  margin: 5px auto;
}
.infoDivContact2{
  background: white;
  padding: 2rem;
  border-radius: 20px;
  width: 24% !important;
  margin: 5px auto;
  background: #F3F3F3;
}

@media (max-width: 767px) {
  .infoDivContact{
    width: 100% !important;
  }
  .infoDivContact2{
    width: 100% !important;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .infoDivContact{
    width: 100% !important;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

.search-box input {
  border-radius: 30px;
  border: 1px solid #ddd;
  padding: 8px 35px 8px 15px;
  font-size: 0.9rem;
}

.search-box i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

.safetyImg{
  height: 450px;
  width:100%;
  border-radius: 20px;
}

.footerText{
  font-size: 16px;
  margin: 0px;
}

.accordion-body{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (max-width: 767px) {
  .safetyImg{
    height: 300px;
  }
  .logo-track {
    animation: scroll 30s linear infinite;
  }
  .footerText{
    font-size: 12px;
  }
}

.mobile-footer { display: none; }

@media (max-width: 767px) {
    .desktop-footer { display: none; }
    .mobile-footer { display: block; }
    .footer-social a{
      margin: 0px 10px;
      float: center;
      display: flex;
      flex-direction: row;
    }
}

.accordion-button{
  font-size: 1rem !important;
}
