:root {
  --orange: #ff6f00;
  --dark: #1a1a1a;
  --light: #f9f9f9;
  --transition: 0.3s ease-in-out;
  --radius: 12px;
}


/*Home Page*/


/*  Base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
body { background: #f8f9fa; color: #333; scroll-behavior: smooth; }

/* Header */
header {
  background: #fff; padding: 10px 50px; display: flex; justify-content: space-between;
  align-items: center; position: sticky; top: 0; z-index: 1000; transition: var(--transition);
}
header .logo img { height: 80px; }
header nav { display: flex; gap: 30px; }
header nav a {
  text-decoration: none; color: var(--orange); font-weight: 500; font-size: 18px;
  position: relative; transition: color 0.3s;
}
header nav a:hover { color: #333; }
header nav a::after {
  content: ''; position: absolute; width: 0%; height: 2px; bottom: -5px; left: 0;
  background-color: var(--orange); transition: width 0.3s;
}
header nav a:hover::after { width: 100%; }

/* Hero Slider */
.hero-slide {
  height: 75vh; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.hero-slide-3 { 
  background-image: url(images/caraousel_3.jpg); 
  background-size: cover;
  background-position: center 20%; 
}
.hero-overlay {
  padding: 40px; color: white; text-align: center;
  border-radius: var(--radius); max-width: 800px; animation: fadeIn 1s ease; position: absolute;
}
.hero-overlay h1 { font-size: 2.5rem; margin-bottom: 10px; }
.hero-overlay p { font-size: 1.2rem; }

.btn-orange {
  background-color: var(--orange); color: white; border: none; transition: var(--transition);
  padding: 10px 24px; border-radius: 30px; font-weight: 500; text-decoration: none;
}
.btn-orange:hover { background-color: #e65c00; transform: scale(1.05); }

/* About Section */
.about-section small { color: var(--orange); font-weight: bold; }
.about-section h2 { margin-top: 10px; margin-bottom: 20px; }
.about-section img { border-radius: var(--radius); transition: var(--transition); }
.about-section img:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Cards */
.card { border: none; transition: 0.3s ease; border-radius: var(--radius); background: #fff; }
.card img { margin-bottom: 15px; }
.card:hover { transform: translateY(-8px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
.card h5 { color: var(--dark); }
.card p { font-size: 0.9rem; color: #666; }

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.custom-card {
  border: none !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}




/* Projects */
.card-img-top { border-top-left-radius: var(--radius); border-top-right-radius: var(--radius); transition: var(--transition); }
.card-img-top:hover { transform: scale(1.05); }
.card-body { text-align: center; }

/* Footer */
footer { background-color: #f1f1f1; font-size: 0.9rem; color: #555; }
footer a { color: var(--orange); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Responsive */
@media (max-width: 992px) {
  .hero-slide { height: 70vh; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay p { font-size: 1rem; }
}

@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  header nav { flex-wrap: wrap; margin-top: 10px; gap: 15px; }

  .hero-slide { height: 60vh; }
  .hero-slide-3 { background-position: top center; } /* Focus faces on mobile */
  .hero-overlay { padding: 20px; max-width: 90%; }
  .hero-overlay h1 { font-size: 1.5rem; }
  .hero-overlay p { font-size: 0.9rem; }
  .card p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-slide { height: 50vh; }
  .hero-slide-3 { background-position: top center; }
  .hero-overlay h1 { font-size: 1.2rem; }
  .hero-overlay p { font-size: 0.8rem; }
}

/*About page*/

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #f8f9fa;
      color: #333;
      scroll-behavior: smooth;
    }

    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    header .logo img {
      height: 80px;
    }

    header nav {
      display: flex;
      gap: 30px;
    }

    header nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      position: relative;
    }

    header nav a:hover {
      color: #333;
    }

    header nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ff6600;
      transition: width 0.3s;
    }

    header nav a:hover::after {
      width: 100%;
    }

    .hero-banner {
      height: 75vh;
    /* background-image: url(../images/about.jpg); */
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }

    .hero-banner .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }

    .hero-banner .content {
      position: relative;
      z-index: 2;
      max-width: 900px;
    }

    .hero-banner h1 {
      font-size: 2.5rem;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .hero-banner p {
      font-size: 1.1rem;
      color: #f1f1f1;
    }

    .section {
      padding: 60px 50px;
    }

    .section h2 {
      text-align: center;
      color: #ff6600;
      margin-bottom: 20px;
    }

    .section p.section-sub {
      max-width: 900px;
      margin: 0 auto 40px;
      text-align: center;
      color: #555;
      font-size: 1rem;
    }

    .text-orange {
      color: #ff6600;
    }


.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #ff6600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.icon-circle img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.custom-card {
  border: none !important;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

    .leadership .card {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 20px;
      text-align: center;
      min-height: 460px;
    }

    .leadership .leader-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .leadership h5 {
      margin-top: 5px;
      margin-bottom: 5px;
      font-size: 1.1rem;
    }

    .leadership p {
      font-size: 0.9rem;
      color: #555;
      margin-bottom: 8px;
    }

    .leadership p.small {
      font-size: 0.85rem;
      color: #888;
    }

    /* Footer */
footer {
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #555;
}

footer a {
  color: #ff6600;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


/* Animations */
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Responsive */
@media (max-width: 992px) {
  .hero-slide { height: 70vh; }
  .hero-overlay h1 { font-size: 2rem; }
  .hero-overlay p { font-size: 1rem; }
}

@media (max-width: 768px) {
  header { flex-direction: column; align-items: flex-start; }
  header nav { flex-wrap: wrap; margin-top: 10px; gap: 15px; }

  .hero-slide { height: 60vh; }
  .hero-slide-3 { background-position: top center; } /* Focus faces on mobile */
  .hero-overlay { padding: 20px; max-width: 90%; }
  .hero-overlay h1 { font-size: 1.5rem; }
  .hero-overlay p { font-size: 0.9rem; }
  .card p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .hero-slide { height: 50vh; }
  .hero-slide-3 { background-position: top center; }
  .hero-overlay h1 { font-size: 1.2rem; }
  .hero-overlay p { font-size: 0.8rem; }
}

 nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
      padding: 0;
      margin: 0;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      padding: 10px;
      display: block;
    }

    nav a:hover {
      color: #333;
    }

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      list-style: none;
      padding: 0;
      margin: 0;
      display: none;
      min-width: 180px;
      z-index: 1000;
    }

    .dropdown-menu li a {
      padding: 10px 15px;
      color: #333;
    }

    .dropdown-menu li a:hover {
       color: #ff6600; 
      /* color: #fff; */
    }

    /* Show Dropdown on Hover */
    .dropdown:hover .dropdown-menu {
      display: block;
    }

/*Contact Page*/

 * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
    body { background: #f8f9fa; color: #333; scroll-behavior: smooth; }

    /* Header */
    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    header .logo img { height: 80px; }
    header nav { display: flex; gap: 30px; }
    header nav a {
      text-decoration: none; color: #ff6600; font-weight: 500; font-size: 18px; position: relative;
    }
    header nav a:hover { color: #333; }
    header nav a::after {
      content: ''; position: absolute; width: 0%; height: 2px; bottom: -5px; left: 0;
      background-color: #ff6600; transition: width 0.3s;
    }
    header nav a:hover::after { width: 100%; }

    /* Hero Section */
    .hero-banner_1 {
      height: 40vh;
      background:#ff6600; 
      background-size: cover;
      background-position: center; 
      position: relative; 
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .hero-banner_1 .overlay {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      /* background: rgba(0,0,0,0.5); */
    }
    .hero-banner_1 h1 {
      position: relative; z-index: 2; font-size: 2.5rem; font-weight: 600;
    }

    /* Contact Section */
    .contact-section { padding: 60px 50px; }
    .contact-section h2 { text-align: center; color: #ff6600; margin-bottom: 40px; }

    /* Contact Cards */
    .contact-card {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      display: flex; 
      flex-direction: column; 
      justify-content: flex-start;
      height: auto; /* adjust to content */
    }
    .contact-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    /* Contact Info */
    .contact-info p {
      font-size: 1rem;
      margin-bottom: 20px;
      display: flex; align-items: center; justify-content: center;
    }
    .contact-info i { color: #ff6600; margin-right: 12px; font-size: 1.3rem; }

    /* Contact Form */
    .contact-form input, .contact-form textarea {
      width: 100%; padding: 10px;
      border: none; border-bottom: 1px solid #aaa;
      background: transparent; margin-bottom: 25px;
      outline: none; font-size: 16px; color: #333;
    }
    .contact-form label { color: #888; font-size: 14px; margin-bottom: 5px; display: block; }

    /* Animated Button - Original Slim Size */
    .btn-animated {
      position: relative;
      display: inline-block;
      padding: 8px 18px; /* slim size */
      color: #ff6600;
      text-decoration: none;
      text-transform: uppercase;
      overflow: hidden;
      margin-top: 10px;
      letter-spacing: 2px;
      transition: 0.4s;
      background: transparent;
      border: none;
    }
    .btn-animated:hover {
      background: #ff6600; color: #fff; border-radius: 5px;
      box-shadow: 0 0 5px #ff6600, 0 0 15px #ff6600, 0 0 30px #ff6600;
    }
    .btn-animated span { position: absolute; display: block; }
    .btn-animated span:nth-child(1) { top: 0; left: -100%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #ff6600); animation: btn-anim1 1s linear infinite; }
    .btn-animated span:nth-child(2) { top: -100%; right: 0; width: 2px; height: 100%; background: linear-gradient(180deg, transparent, #ff6600); animation: btn-anim2 1s linear infinite; animation-delay: 0.25s; }
    .btn-animated span:nth-child(3) { bottom: 0; right: -100%; width: 100%; height: 2px; background: linear-gradient(270deg, transparent, #ff6600); animation: btn-anim3 1s linear infinite; animation-delay: 0.5s; }
    .btn-animated span:nth-child(4) { bottom: -100%; left: 0; width: 2px; height: 100%; background: linear-gradient(360deg, transparent, #ff6600); animation: btn-anim4 1s linear infinite; animation-delay: 0.75s; }

    @keyframes btn-anim1 { 0%{left:-100%;} 50%,100%{left:100%;} }
    @keyframes btn-anim2 { 0%{top:-100%;} 50%,100%{top:100%;} }
    @keyframes btn-anim3 { 0%{right:-100%;} 50%,100%{right:100%;} }
    @keyframes btn-anim4 { 0%{bottom:-100%;} 50%,100%{bottom:100%;} }

    /* Map */
    .map-container iframe {
      width: 100%;
      height: 250px; /* fixed natural height */
      border-radius: 8px;
      border: 0;
    }

    /* Footer */
    footer { background-color: #f1f1f1; font-size: 0.9rem; color: #555; }
    footer a { color: #ff6600; text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* Responsive */
    @media (max-width: 992px) {
      .contact-section { padding: 40px 20px; }
      .contact-card { margin-bottom: 20px; }
    }

   /* Sustaianability  Page*/

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    header .logo img {
      height: 80px;
    }

    header nav {
      display: flex;
      gap: 30px;
    }

    header nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      position: relative;
    }

    header nav a:hover {
      color: #333;
    }

    header nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ff6600;
      transition: width 0.3s;
    }

    header nav a:hover::after {
      width: 100%;
    }

    .hero-banner {
      height: 75vh;
      /* background-image: url(../images/sustain_2.jpg); */
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-banner .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-banner h1 {
      font-size: 2.5rem;
      font-weight: 600;
    }

    .section-box {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      padding: 30px;
      margin-bottom: 40px;
      border-left: 4px solid #ff6600;
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-height: 400px; /* Equal height for all sections */
    }

    .text-orange {
      color: #ff6600;
    }

    /* Uniform Image Styles */
    .hover-zoom {
      width: 100%;
      max-width: 350px;   /* same width for all */
      height: 220px;      /* same height */
      object-fit: cover;  /* crop and fill like a card */
      object-position: center; /* center the crop */
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      border-radius: 12px;
    }
    .hover-zoom:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    /* ESG Image Slightly Taller */
    img[alt="ESG Commitment"] {
      height: 240px;
    }

    footer {
      background-color: #f1f1f1;
      font-size: 0.9rem;
      color: #555;
      padding: 20px 0;
      text-align: center;
    }

    footer a {
      color: #ff6600;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .hero-banner h1 {
        font-size: 1.8rem;
      }
      .hover-zoom {
        max-width: 280px;
        height: 180px;
      }
      img[alt="ESG Commitment"] {
        height: 200px;
      }
    }
    /*innovation page*/

     body {
      background-color: #f8f9fa;
      color: #333;
      font-family: 'Poppins', sans-serif;
      scroll-behavior: smooth;
    }

    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    header .logo img {
      height: 80px;
    }

    header nav {
      display: flex;
      gap: 30px;
    }

    header nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      position: relative;
    }

    header nav a:hover {
      color: #333;
    }

    header nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ff6600;
      transition: width 0.3s;
    }

    header nav a:hover::after {
      width: 100%;
    }

    .section {
      padding: 80px 50px;
    }

    .section h1 {
      text-align: center;
      font-size: 2.5rem;
      color: #ff6600;
      margin-bottom: 40px;
      font-weight: 600;
    }

    .card-orange {
      background: #fff;
      border: none;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      min-height: 100%;
    }

    .card-orange:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 28px rgba(255, 102, 0, 0.2);
    }

    .card-orange h3 {
      color: #ff6600;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .card-orange ul {
      padding-left: 20px;
    }

    footer {
      background-color: #f1f1f1;
      font-size: 0.9rem;
      color: #555;
    }

    footer a {
      color: #ff6600;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      header nav {
        flex-wrap: wrap;
        gap: 15px;
        margin-top: 10px;
      }
    }
    /*Service page*/

     body {
      font-family: 'Poppins', sans-serif;
      background: #f8f9fa;
      color: #333;
      margin: 0;
    }

    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    header .logo img {
      height: 80px;
    }

    header nav {
      display: flex;
      gap: 30px;
    }

    header nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      position: relative;
    }

    header nav a:hover {
      color: #333;
    }

    header nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ff6600;
      transition: width 0.3s;
    }

    header nav a:hover::after {
      width: 100%;
    }

    .page-title {
      text-align: center;
      margin: 60px 0 30px;
    }

    .page-title h1 {
      color: #ff6600;
      font-size: 2.8rem;
      font-weight: 600;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      padding: 0 60px 80px;
    }

    @media (max-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px 60px;
      }
    }

    .service-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .service-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      transform: translateY(-6px);
    }

    .service-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .service-card .card-body {
      padding: 30px 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card h3 {
      color: #ff6600;
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .service-card p {
      font-size: 1rem;
      color: #555;
      line-height: 1.6;
    }

    footer {
      background-color: #f1f1f1;
      font-size: 0.9rem;
      color: #555;
      padding: 20px 0;
      text-align: center;
    }

    footer a {
      color: #ff6600;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

  /*  Career page*/


  * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

/* ========== HEADER ========== */
header {
  background: #fff;
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header .logo {
  font-size: 32px;
  font-weight: 600;
  color: #ff6600;
  display: flex;
  align-items: center;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  text-decoration: none;
  color: #ff6600;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
}

header nav a:hover {
  color: #333;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff6600;
  transition: width 0.3s;
}

header nav a:hover::after {
  width: 100%;
}

/* ========== HERO SECTION ========== */
.hero-careers {
 
  height: 90vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-careers h1 {
  position: relative;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
}

/* ========== OUR CULTURE ========== */
.culture-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}

.culture img {
  border: 3px solid #FF6B00;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.culture img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight {
  color: #FF6B00;
  font-weight: 600;
}

/* ========== SECTION TITLES ========== */
.section-title {
  color: #FF6B00;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background: #ff6600;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-card {
  border: 2px solid #FF6B00;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: #FF6B00;
  color: #fff;
}

.testimonial-card:hover i {
  color: #fff;
}

.testimonial-card i {
  font-size: 2rem;
  color: #FF6B00;
  margin-bottom: 10px;
}

/* ========== JOB OPENINGS ========== */
.job-card {
  border: 2px solid #FF6B00;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  background: #FF6B00;
  color: #fff;
}

.job-card h4 {
  font-weight: 600;
}

.btn-orange {
  background-color: #FF6B00;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-orange:hover {
  background-color: #333;
  color: #fff;
}



/*Social Impact*/

body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

    header {
      background: #fff;
      padding: 10px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    header .logo img {
      height: 80px;
    }

    header nav {
      display: flex;
      gap: 30px;
    }

    header nav a {
      text-decoration: none;
      color: #ff6600;
      font-weight: 500;
      font-size: 18px;
      position: relative;
    }

    header nav a:hover {
      color: #333;
    }

    header nav a::after {
      content: '';
      position: absolute;
      width: 0%;
      height: 2px;
      bottom: -5px;
      left: 0;
      background-color: #ff6600;
      transition: width 0.3s;
    }

    header nav a:hover::after {
      width: 100%;
    }

    .hero-banner {
      height: 75vh;
      
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
    }

    .hero-banner .content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-banner h1 {
      font-size: 2.5rem;
      font-weight: 600;
    }

    .hero-banner p {
      font-size: 1.1rem;
      margin-top: 10px;
      color: #eaeaea;
    }

    .csr-block {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      padding: 30px;
      margin-bottom: 40px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .csr-block:hover {
      border: 2px solid #ff6600;
      box-shadow: 0 6px 24px rgba(255, 102, 0, 0.2);
      transform: translateY(-3px);
    }

    .csr-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .csr-block:hover .csr-img {
      border-color: #ff6600;
      box-shadow: 0 4px 14px rgba(255, 102, 0, 0.2);
    }

    .text-orange {
      color: #ff6600;
    }

    .btn-orange {
      background-color: #ff6600;
      color: white;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      background-color: #e65c00;
      box-shadow: 0 4px 14px rgba(255, 102, 0, 0.3);
    }

    footer {
      background-color: #f1f1f1;
      font-size: 0.9rem;
      color: #555;
      padding: 20px 0;
      text-align: center;
    }

    footer a {
      color: #ff6600;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .hero-banner h1 {
        font-size: 1.8rem;
      }
    }

    /* project page*/

    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
/* Project page*/
body {
  background: #f8f9fa;
  color: #333;
  scroll-behavior: smooth;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .logo {
  display: flex;
  align-items: center;
}

header nav {
  display: flex;
  gap: 30px;
}

header nav a {
  text-decoration: none;
  color: #ff6600;
  font-weight: 500;
  font-size: 18px;
  position: relative;
  transition: color 0.3s;
}

header nav a:hover {
  color: #333;
}

header nav a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ff6600;
  transition: width 0.3s;
}

header nav a:hover::after {
  width: 100%;
}

header nav a.active {
  color: #333;
}

/* ===== HERO ===== */
.hero {
  /* background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url() center/cover no-repeat; */
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  margin-top: 15px;
}

/* ===== FILTER BUTTONS ===== */
.filters {
  text-align: center;
  margin: 50px 0 30px;
}

.filters button {
  background: #fff;
  border: 1px solid #ddd;
  color: #f26a1b;
  padding: 10px 20px;
  margin: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filters button:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.filters button.active {
  background: #f26a1b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(242, 106, 27, 0.4);
}

/* ===== PROJECTS GRID ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 50px 50px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  background: #fff;
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-card .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(242,106,27, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.project-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 16px;
}

/* ===== CTA SECTION ===== */
.cta {
  text-align: center;
  padding: 50px 20px;
  background: #ff6600;
  color: white;
}

.cta .btn {
  display: inline-block;
  background: white;
  color: #ff6600;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
  font-weight: bold;
}

/* ===== FOOTER (About Page Style) ===== */
footer {
  background-color: #f1f1f1;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
  margin-top: 50px;
  padding: 30px 20px;
}

footer a {
  color: #ff6600;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
