/* ABOUT-US */
.hero-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}
.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
}

.hero-content-left-center {
  position: absolute;
  bottom: 180px; /* adjust this to move up/down */
  left: 80px; /* adjust this for left spacing */
  color: #fff;
  max-width: 600px;
}

.hero-content-left-center h1 {
  font-size: 64px; /* bigger heading */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content-left-center a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--btn-color);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 6px;
  transition: 0.3s;
}

/* ============= RESPONSIVE SLIDER ============= */
@media (max-width: 768px) {
  .hero-content-mid h1 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-content-left-center h1 {
    font-size: 28px;
  }
  .hero-content-left-center a {
    padding: 10px 25px;
    font-size: 14px;
  }
}
/* Section base styling */

.contact-us-section {
  padding: 30px 20px;
  /* background: #f9fafb; */
  text-align: center;
}

.contact-us-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 50px; */
  color: #1b1b1b;
}

.contact-us-section .container p{
  margin-bottom: 50px;
}

.contact-background{
 /* background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                    url('../uploads/get-a-solution.webp'); */
  background-color: #fff !important;
  color: #000;
background-size: cover;
  /* clip-path: polygon(0 0, 100% 15%, 100% 100%, 0 100%); */
  position: relative;
  z-index: 1;
}


.contact-background h2 {
    margin-top: 150px;
}

.contact-us-box{
      margin: -200px auto 80px;
}

.contact-box {
  position: relative;
  z-index: 2; 
}

.contact-us-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-us-card {
  padding-top: 10px;
  justify-items: center;
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 144px;
}

.contact-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.contact-us-card i {
  color: var(--primary-color);
    font-size: 40px;
}

.contact-us-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1b1b1b;
  margin: 0px 20px 10px;
}

.contact-us-card:hover h3{
  color:  var(--accent-color);
}

.contact-us-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.contact-us-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

.contact-us-form {
    flex: 1 1 50%;
    padding: 40px 22px;
}

.contact-map {
    flex: 1 1 50%;
    background: #fff;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    padding: 20px;
}

.social-links {
  padding-top: 40px;   /* top padding */
  padding-left: 20px;  /* left padding */
}

.social-links h4 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #333;
}

.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links ul li {
  margin-bottom: 10px;
}

.social-links ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s ease;
}

/* Icon style */
.social-links ul li a i {
  font-size: 20px;
  margin-right: 10px;
  color: #333;
  transition: color 0.3s ease;
}

/* Hover effect */
.social-links ul li a:hover {
  color: #0077b6; /* light blue hover */
}

.social-links ul li a:hover i {
  color: #0077b6;
}


/* ✅ Responsive Design */
@media (max-width: 992px) {
  .contact-us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-us-grid {
    grid-template-columns: 1fr;
  }

  .contact-us-card img {
    height: 200px;
  }
}

.social-responsibility-section {
  padding: 80px 20px;
  /* background: #f9fafb; */
  text-align: center;
}

.social-responsibility-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  /* margin-bottom: 50px; */
  color: #1b1b1b;
}

.social-responsibility-section .container h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1b1b1b;
}

.social-responsibility-section .container p {
  margin-bottom: 60px;
}
.social-responsibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.social-responsibility-card {
  /* background: #fff; */
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.social-responsibility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.social-responsibility-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 7px
}

.social-responsibility-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: #1b1b1b;
  margin: 20px 20px 10px;
}

.social-responsibility-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 20px 25px;
  line-height: 1.6;
}

.social-responsibility-card a {
  color: var(--accent-color, #ff6600);
  text-decoration: none;
  font-weight: 600;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .social-responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .social-responsibility-grid {
    grid-template-columns: 1fr;
  }

  .social-responsibility-card img {
    height: 200px;
  }
}


/* END ABOUT STYLE */
