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

body {
  font-family: Arial, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.nav {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.nav-links a {
  color: #333;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007bff;
}

/* Hero Section */
.hero {
  background: url("../../assets/img/services/bg-img.png") no-repeat center
    center;
  background-size: cover;
  color: white !important;
  padding: 0; /* Remove any padding to make it cover the full height */
  height: 70vh; /* Full height of the viewport */
  text-align: center;
  margin-top: 0; /* Remove any top margin */
  justify-content: flex-end; /* Align content to the right */
  align-items: center; /* Vertically center the content */
}

/* Box around the text */
.text-box {
  margin-right: 15em;
  background-color: rgba(235, 149, 82); /* Semi-transparent color */
  padding: 2rem;
  border-radius: 33px;
  max-width: 400px; /* Set a maximum width for the box */
  text-align: left; /* Align text to the left */
  position: relative; /* Position for the arrow */
}

/* Adding the left arrow using ::after */
.text-box::after {
  content: "";
  position: absolute;
  left: -74px;
  top: 20%;
  transform: translateY(-50%);
  border-top: 50px solid transparent;
  border-right: 75px solid #eb9552;
  border-bottom: 0 solid transparent;
}

/* Styling for text content inside the box */
.hero h1 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.cta-button {
  background-color: #eb9552;
  color: #fff;
  padding: 1.5rem 2.5rem;
  border: none;
  border-radius: 19px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 700px;
  margin-left: 530px;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
}

.section h1 {
  font-size: 2rem;
  color: #eb9552;
  text-align: center;
}

.section ul {
  list-style-type: disc;
  padding-left: 6em;
  color: #333;
}

.bold-text {
  margin-bottom: 10px;
  font-size: 1em;
  font-weight: bold;
}

.normal-text {
  font-weight: normal;
}

.strategic-image {
  max-width: 7em;
  margin: 1em auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Additional Styles for Arrow Images */
.arrow-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem; /* Adjust the space between the images and text */
}

.arrow-images img {
  width: 2.5em; /* Adjust the width of the arrows as needed */
  height: auto;
  margin-bottom: 3rem;
  padding-top: 0px;
}

.arrow-images h2 {
  font-size: 2rem;
  color: #eb9552;
  text-align: center;
  margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-item {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-item img {
  width: 5.125rem;
  margin-bottom: 1rem;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 1rem;
}

.service-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem; /* 20px */
}

.team-box {
  padding: 1.25rem; /* 20px */
  flex: 1 1 calc(48%); /* Responsive box sizing */
  text-align: left;
}

.team-box img {
  width: 6.125rem; /* 50px */
  margin-bottom: 0.9375rem; /* 15px */
}

.team-box h3 {
  font-size: 1.25rem; /* 20px */
  color: #838587;
  margin-bottom: 0.625rem; /* 10px */
}

.team-box p {
  font-size: 1rem; /* 16px */
  color: #838587;
  margin-bottom: 0.9375rem; /* 15px */
  line-height: 1.5em; /* Better readability */
}

.team-box ul {
  list-style: disc;
  text-align: left;
  padding-left: 1.25rem; /* 20px */
  color: #838587;
}

.team-box ul li {
  margin-bottom: 0.625rem; /* 10px */
  font-size: 1rem; /* 16px */
  line-height: 1.5em;
}

/* Categories Grid */
.categories-grid {
  background: url("../../assets/img/services/product-categories.png") no-repeat
    center center;
  background-size: contain; /* Ensures the image covers the full area */
  height: 100vh; /* Set the height of the section */
  display: flex; /* Ensures content can be centered inside the grid */
  justify-content: center; /* Optional: horizontally centers content */
  align-items: center; /* Optional: vertically centers content */
}

.category-item {
  background: #f8f9fa;
  padding: 1.5rem;
  text-align: center;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.category-item:hover {
  background: #007bff;
  color: white;
}
.contact-section2 {
  padding: 2rem;
  text-align: center;
  background-color: #fdfdfd;
}
.contact-section {
  padding: 2rem;
  text-align: center;
  background-color: #f9f9f9;
}
.contact-section form {
  background-color: #fdfdfd;
}

.contact-section2 h2 {
  margin-bottom: 0.5em;
  color: #eb9552;
  font-size: 2em;
}
.contact-section2 p {
  font-size: 1em;
  padding: 0 16em;
}
.contact-btn {
  margin-top: 1rem;
  background-color: #eb9552;
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 23px;
  cursor: pointer;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #c6631a;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  background: #eb9552;
}

.arrow-icon {
  width: 20px;
  height: 100%;
  padding: 0px;
}

.contact-form h3 {
  margin: 0;
  padding: 0.5em 0;
  font-size: 1.5rem;
  color: #f9f9f9;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #fdfdfd;
}

.form-group input[type="file"] {
  padding: 0;
}
/* Attach File Button Styling */
.attach-file-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #eb9552;
  color: white !important;
  font-size: 1rem !important;
  font-weight: bold !important;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 3.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.attach-file-btn:hover {
  background-color: #d9721a;
}

.clip-icon {
  width: 20px;
  height: 100%;
  padding: 0px;
}

/* Hide the file input */
input[type="file"] {
  display: none;
}

.submit-button {
  background-color: #eb9552;
  color: white;
  padding: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 30%;
}

.submit-button:hover {
  background-color: #c6631a;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-section p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 6rem 1rem 4rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .team-box {
    flex: 1 1 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 3rem 0;
  }

  .service-card,
  .category-item {
    padding: 1.5rem;
  }

  .contact-section2 p {
    font-size: 1em;
    padding: 0 0em;
  }

  .attach-file-btn {
    margin: 0 1em !important;
    display: inline-flex !important
    ;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #eb9552;
    color: white !important;
    font-size: 1rem !important;
    font-weight: bold !important;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }

  .submit-button {
    background-color: #eb9552;
    color: white;
    padding: 5px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 30%;
  }

  .categories-grid {
    background: url(../../assets/img/services/product-categories.png) no-repeat
      center center;
    background-size: contain;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero {
    background: url(../../assets/img/services/bg-img.png) no-repeat center
      center;
    background-size: contain;
    color: white !important;
    padding: 0;
    height: 30vh;
    text-align: center;
    margin-top: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hero h1 {
    font-size: 10px;
  }

  .cta-button {
    background-color: #eb9552;
    color: #fff;
    padding: 2px 5px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 125px;
    margin-right: 118px;
  }

  .contact-form h3 {
    font-size: 20px;
  }

  .section-header {
    padding: 10px;
  }
}

/* Updated by Nishita 26-11-24 */

img {
  padding: 0% !important;
}

.bg-checks {
  background: url(../../assets/img/services/bg-checks.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.icon-size {
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 20px;
}

.grid-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 2px solid #eb9552;
  border-radius: 85px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-item img {
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.grid-item span {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.paragraph-text {
  font-size: small;
}

.bg-orange {
  background-color: #eb9552;
  border-radius: 40px;
}

.bg-grey {
  background-color: #828486;
  border-radius: 40px;
}

.team-box p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.9375rem;
  line-height: 1.5em;
}

.team-box img {
  width: 4.125rem;
  margin-bottom: 0.9375rem;
}

.team-box ul {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.9375rem;
  line-height: 1.5em;
}

.rounded-circle {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

p {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* Optional custom styling */
.contact-form .btn-outline-secondary {
  display: flex;
  align-items: center;
}

.contact-form .clip-icon {
  margin-left: 8px;
  width: 20px;
  height: 20px;
}
