/* ===========================
   Custom Cards and Collage Styles
   =========================== */

/* New Feature Cards Section */
.feature-cards-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Cards within existing sections */
.about-layout1 .feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card-image {
  width: 100%;
  height: 200px;
  border-radius: 20px 20px 0px 0px;
  overflow: hidden;
  margin-bottom: 0px;
  position: relative;
}

.feature-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-image img {
  transform: scale(1.1);
}

.feature-card-content {
  position: relative;
  z-index: 2;
  padding: 20px 30px 30px 30px;
}

.feature-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
  color: #3498db;
}

.feature-card-description {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Small Feature Cards for Sectoral Impacts */
.feature-card-small {
  padding: 0px;
  height: auto;
  min-height: 320px;
}

.feature-card-small .feature-card-image {
  height: 150px;
  margin-bottom: 0px;
  border-radius: 20px 20px 0px 0px;
}

.feature-card-small .feature-card-content {
  padding: 15px 20px 20px 20px;
}

.feature-card-small .feature-card-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card-small .feature-card-description {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Collage Section */
.collage-section {
  padding: 100px 0;
  background: #ffffff;
}

.collage-container {
  display: grid;
  grid-template-columns: 750px 360px;
  grid-template-rows: 390px 390px;
  gap: 20px;
  max-width: 1130px;
  margin: 0 auto;
}

.collage-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.collage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.collage-item-1 {
  grid-column: 1;
  grid-row: 1;
  width: 750px;
  height: 390px;
}

.collage-item-2 {
  grid-column: 2;
  grid-row: 1;
  width: 360px;
  height: 390px;
}

.collage-item-3 {
  grid-column: 2;
  grid-row: 2;
  width: 360px;
  height: 390px;
}

.collage-item-4 {
  grid-column: 1;
  grid-row: 2;
  width: 750px;
  height: 390px;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.collage-item:hover img {
  transform: scale(1.05);
}
.collage-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 0px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.collage-item:hover .collage-overlay {
  transform: translateY(0);
}

.collage-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.collage-description {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Section Title Styling */
.section-title-custom {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-custom h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  position: relative;
}

.section-title-custom p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .collage-container {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .collage-item-1, .collage-item-4 {
    width: 100%;
  }
  
  .collage-item-2, .collage-item-3 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .collage-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 300px);
  }
  
  .collage-item-1, .collage-item-2, .collage-item-3, .collage-item-4 {
    grid-column: 1;
    width: 100%;
    height: 300px;
  }
  
  .collage-item-1 { grid-row: 1; }
  .collage-item-2 { grid-row: 2; }
  .collage-item-3 { grid-row: 3; }
  .collage-item-4 { grid-row: 4; }
  
  .feature-card {
    margin-bottom: 20px;
  }
  
  .section-title-custom h2 {
    font-size: 2rem;
  }
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in.delay-1 { animation-delay: 0.2s; }
.animate-fade-in.delay-2 { animation-delay: 0.4s; }
.animate-fade-in.delay-3 { animation-delay: 0.6s; }
.animate-fade-in.delay-4 { animation-delay: 0.8s; }
.animate-fade-in.delay-5 { animation-delay: 1.0s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover Effects for Cards */
.feature-card {
  cursor: pointer;
}

.feature-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(46, 204, 113, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.feature-card:hover::after {
  opacity: 1;
}




  :root{
    --accent: #209AD6;
    --accent-2: #3679a5;
    --text-on-accent: #ffffff;
    --badge: #88c870;
    --page-bg:#ffffff;
    --card:#f9f9f9;
  }


  .wrap{
    max-width: 1200px;
    margin: 0 auto;
    padding: clamp(16px, 3vw, 32px);
  }
.two-col{

  display:grid;
  grid-template-columns: 360px 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: start;
  padding-bottom: 40px; /* so card doesn’t get cut off */
}

  @media (max-width: 900px){
    .two-col{ grid-template-columns: 1fr; }
  }

  .banner-stack{
    position: relative;
    min-height: 360px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    z-index: 3; /* stays under pentagon */
    padding-top: 12px;
  }
.pentagon,
.pentagon-badge {
  position: relative;
  z-index: 2; /* always above the card */
}

  .pentagon{
    --w: 320px;
    width: var(--w);
    max-width: 90vw;
    aspect-ratio: 1 / 1.05;
    position: relative;
    display:grid;
    place-items:center;
    color: var(--text-on-accent);
    text-align:center;
    padding: 24px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 68%, 50% 100%, 0% 68%);
    background: linear-gradient(160deg, var(--accent), var(--accent-2));
    box-shadow: 0 12px 24px rgba(0,0,0,.25);
    transform: translateY(-120%);
    opacity: 0;
  }
  .pentagon.active{
    animation: curtainDown 900ms cubic-bezier(.2,.85,.2,1) forwards;
  }

  .date{
    padding-top: 50px;
    font-weight: 800;
    font-size: clamp(18px, 2.6vw, 32px);
  }

.pentagon-badge {
  --w: 170px; /* a little bigger */
  position: absolute;
  left: 35px;
  top: 0;
  width: var(--w);
  aspect-ratio: 1 / 1.05;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0% 0%, 100% 0%, 100% 68%, 50% 100%, 0% 68%);
  background: #fdb724;
  color: #000000;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,.25);
  transform: translateY(-140%) rotate(-3deg);
  opacity: 0;
}

.pentagon-badge.active {
  animation: badgeDrop 1050ms 120ms cubic-bezier(.2,.85,.2,1) forwards;
}

/* Top text (INVESTOR) */
.pentagon-badge .badge-top {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
 font-family: 'Bebas Neue', sans-serif;
  line-height: 1.2;
}

/* Bottom text (DAY) */
.pentagon-badge .badge-bottom {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
}

  .pentagon-badge span{ text-transform: uppercase;font-size: 20px; }

.pentagon-badge .badge-text {
  display: block;
  text-align: center;
  font-size: 28px;   /* bigger font */
  font-weight: 500;  /* bolder */
  line-height: 1.2;  /* tighter spacing */
  text-transform: uppercase;
}


.content-card {
  background-color: rgb(238, 238, 238) !important;
  border: 1px solid rgb(238, 238, 238);
  /* fixed: min < max now */
  padding: clamp(36px, 4vw, 70px);


  position: relative;
  z-index: 1;
  margin-left: -335px; /* position 20px from banner-stack left (360px - 20px = 340px) */
  margin-top: 60px;    /* spacing downward */
}
.content-card h2{
  font-size: 65px;
  font-weight: bold;
  color: #000000;
  font-family: 'Anton';

}
.content-card p{
font-size: 16px;
color: #000000;
}

  @keyframes curtainDown{
    0%   { transform: translateY(-120%); opacity:.0; }
    60%  { transform: translateY(6%);    opacity:1;  }
    100% { transform: translateY(0%);    opacity:1;  }
  }
  @keyframes badgeDrop{
    0%   { transform: translateY(-140%) rotate(-6deg); opacity:0; }
    65%  { transform: translateY(8%) rotate(-2deg);    opacity:1; }
    100% { transform: translateY(0) rotate(-3deg);     opacity:1; }
  }


   .timeline-container {
      display: flex;
      align-items: center;

      max-width: 900px;
      margin: auto;
      flex-wrap: wrap;
      margin-top: 30px;
    }

    /* Pentagon shape */
    .pentagon1 {
      position: relative;
      width: 350px;   /* fixed width */
      height: 100px;  /* fixed height */
      color: white;
      display: flex;
      align-items: center;
      color: black;
      padding-right: 60px ;
justify-content: end;
background-color: #e7e6e6;
      font-size: 28px;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      flex-shrink: 0;
      clip-path: polygon(0 0, 80% 0, 90% 50%, 80% 100%, 0 100%);
      text-align: right;
      z-index: 1;
      line-height: 1;
    }

    /* Text block */
    .timeline-text {
      flex: 1;
      background: #fff0d7;
      padding-left: 80px;
      padding-right: 20px;
      padding-bottom: 15px;
      padding-top: 15px;
      border-radius: 6px;
      font-size: 16px;
      line-height: 1.6;
      z-index: 0;
      position: relative;
      left: -90px;
      
    }

    /* Responsive stacking */
    @media (max-width: 768px) {
      .timeline-container {
        flex-direction: column;
        align-items: flex-start; 
        
        
      }

      .timeline-text {
        margin-left: 0;
        width: 450px;   /* match pentagon width */
        margin-top: 10px;
        position: relative;
        left: 30px;
      }
    }
        @media (max-width: 622px) {
      .timeline-container {
        flex-direction: column;
        align-items: flex-start; 
       
        
      }

      .timeline-text {
        margin-left: 0;
        width: 350px;   
        margin-top: 10px;
        position: relative;
        left: 30px;
      }
       .pentagon{
        height: 100px;
       }
    }
    @media(max-width:493px){
        .timeline-text{
            margin-right:20px ;
        }
    }

/* Fixed height for timeline text boxes */
.fix-height {
  min-height: 120px; /* Set minimum height for all boxes */
  display: flex;
  align-items: center; /* Center content vertically */
  justify-content: flex-start; /* Keep text aligned to left */
}

/* Applications List Styling */
.applications-list {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

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

.applications-list li {
  padding-left: 35px; /* add space for image */
  position: relative;
}

.applications-list li::before {
  content: "";
  background-image: url("/assets/images/icons/bullet.png");
  background-size: 18px 18px; /* size of the bullet */
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px; /* align with text */
}

.applications-list .app-title {
  font-weight: 600;
  color: #000000;
  display: inline;
}

.applications-list .app-content {
  color: #000000;
  display: inline;
  margin-left: 5px;
}

/* Image collage styling */
.image-collage .row {
  margin: 0;
}

.image-collage .col-6 {
  padding: 5px;
}

.image-collage img {
  transition: transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-collage img:hover {
  transform: scale(1.05);
}
   .opportunities-cards-section {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
    }


 .opportunity-container {
  max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center; /* ✅ center last row */
      padding: 20px;
    }
  .card1 {
      background: white;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      width: 350px; /* ✅ fixed width so rows align */
      min-height: 650px; /* ✅ consistent height */
    }

    .card1:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .card1-header {
      height: 120px;
      background: #77d1f0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(0, 0, 0);
      font-size: 26px;
      font-weight: 400;
      text-align: center;
      padding: 20px;
    }

    .opportunity-card1-list li::before {
  content: "";
  background-image: url("/assets/images/icons/bullet.png");
  background-size: 14px 14px; /* size of the bullet */
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 4px; /* align with text */
}

    .opportunity-card1-list strong{
      color: #209AD6;
    }



    .card1:nth-child(2) .card1-header { background: #8dcebb; }
    .card1:nth-child(3) .card1-header { background: #fcc96c; }
    .card1:nth-child(4) .card1-header { background: #a5d06b; }
    .card1:nth-child(5) .card1-header { background: #f77b62; }

    .card1-accent {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      padding: 0 20px;
    }

    .card1:nth-child(1) .card1-accent { background: #dbf6ff; }
    .card1:nth-child(2) .card1-accent { background: #cdfff0; }
    .card1:nth-child(3) .card1-accent { background: #ffecc9; }
    .card1:nth-child(4) .card1-accent { background: #e5ffc2; }
    .card1:nth-child(5) .card1-accent { background: #f9bfb4; }

    .card1-content {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      background-color: #f7f5f5;
    }

    .card1-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .card1-description {
      color: #000000;
      line-height: 1.6;
      margin-bottom: 20px;
      flex-grow: 1;
    }

    .card1-footer {
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      font-weight: 600;
      color: white;
    }

    .card1:nth-child(1) .card1-footer { background: #77d1f0; }
    .card1:nth-child(2) .card1-footer { background: #8dcebb; }
    .card1:nth-child(3) .card1-footer { background: #fcc96c; color: #333; }
    .card1:nth-child(4) .card1-footer { background: #a5d06b; }
    .card1:nth-child(5) .card1-footer { background: #f77b62; }

    .opportunity-card1-list {
      list-style: disc;
      margin-left: 20px;
      margin-bottom: 15px;
    }
.card1-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

    .opportunity-card1-list li {
      font-size: 15px;
      margin: 8px 0;
      padding-left: 25px;
      position: relative;
    }

    @media (max-width: 768px) {
      .card1 {
        width: 100%;
      }
    }
.center-head {
  text-align: center;       /* center text */
  margin: 30px 0;           /* optional spacing above/below */
}



h1.centered-heading {
      text-align: center;
      margin-bottom: 20px;
    }

    .content {
      text-align: left;
      margin-bottom: 30px;
    }

.image-wrap {
    float: left;
    width: 610px;           /* your size */
    height: 343px;          /* your size */
    margin-right: 80px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
  }

  .image-wrap .slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
  }

  /* Each image takes the full width/height of the container */
  .image-wrap .slider-track img {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
    .text-content::after {
      content: "";
      display: table;
      clear: both;
    }

    .text-content {
      text-align: left;
      font-size: 16px;
      max-width: 1050px;
    
    }
    .text-content p {
      margin-bottom: 10px;
    }
    /* Ensure section content from the first heading onward starts below the floated image */
    .text-content h5 {
      clear: both;
    }



 .container-vision-mission {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      padding-left: 40px;
      padding-right: 40px;
      padding-bottom: 40px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

    .vision-mission  {
      flex: 1;
      background-color: #fcf2e1; 
      padding: 20px;
      
    
      text-align: center;
      max-width: 400px;
      min-width: 280px;
    }

    .vision-mission  h2 {
      margin-bottom: 15px;
      font-size: 24px;
      color: #333;

    }

    .vision-mission  p {
      font-size: 16px;
      line-height: 1.5;
      color: #444;
            text-align: left;
    }

    /* Responsive: stack on small devices */
    @media (max-width: 768px) {
      .container-vision-mission  {
        flex-direction: column;
        align-items: center;
      }

      .vision-mission  {
        max-width: 90%;
      }
    }


    .objectives-head {
      text-align: center;
      padding: 40px 20px 0px;
         color:  #ffffff;
         
    }
       .objectives-head-section {
      text-align: center;
      padding: 40px 20px 0px;
         color:  #ffffff;
         background-color: #ececec;
    }

    .objectives-head h2 {
      font-size: 38px;
      margin-bottom: 30px;
      color: #209ad6;
    }

    .objectives-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1100px;
      margin: 0 auto;
    }

.objectives {
  background: white;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;  /* ✅ ensures footer always at bottom */
  width: 350px; 
  min-height: 180px;
}

    .objectives h3 {
      margin: 0 0 10px;
      font-size: 20px;
      color: #222;
    }

    .objectives p {
      font-size: 15px;
      color: #444;
      line-height: 1.5;
      padding: 15px;
    }

    /* Bottom row centered */
    .bottom-row {
      grid-column: 1 / -1;  /* span full width of grid */
      display: flex;
      justify-content: center;
      gap: 20px;
    }

  
    .objectives-header {
            height: 60px !important;
            background: 	#77d1f0;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
        }

        .objectives:nth-child(2) .objectives-header {
            background: 	#8dcebb;
        }

        .objectives:nth-child(3) .objectives-header {
            background: #fcc96c;
        }

      .bottom-row .objectives:nth-child(1) .objectives-header {
          background: #a5d06b;  /* Objective 4 */
        }

        .bottom-row .objectives:nth-child(2) .objectives-header {
          background: #f77b62;  /* Objective 5 */
        }
.objectives-footer {
  height: 10px; /* ✅ fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-weight: 600;
  color: white;
  margin-top: auto; /* ✅ pushes footer down */
}
    .objectives:nth-child(1) .objectives-footer { background: #77d1f0; }
    .objectives:nth-child(2) .objectives-footer { background: #8dcebb; }
    .objectives:nth-child(3) .objectives-footer { background: #fcc96c; color: #333; }
     .bottom-row .objectives:nth-child(1) .objectives-footer { background: #a5d06b; }
     .bottom-row .objectives:nth-child(2) .objectives-footer { background: #f77b62; }

        .sub-ped{
          font-family: 'Anton';
          margin-bottom: 0;
        }




/* Leadership Banner Section */
.leadership-banner {
  position: relative;
  margin-top: 120px;
  height: 500px;
  background-image: url('/assets/images/pe-titles/leadership.jpg');
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay for better text readability */
.leadership-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.leadership-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
}
.leader-header img{
  width: 30px;
  margin-top:10px ;
}


/* Pentagon Arrow Overlay */
.pentagon-overlay {
  position: relative;
  background: linear-gradient(135deg, 
    rgba(97, 192, 255, 0.95) 0%, 
    rgba(41, 128, 185, 0.97) 50%, 
    rgba(44, 62, 80, 0.98) 100%);
  
  /* Pentagon arrow shape pointing left */
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  
  padding: 60px 80px 60px 120px;
  width: 40%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  /* Animation */
  opacity: 0;
  transform: translateX(100px);
  animation: slideInFromRight 1.2s ease 0.3s forwards;
  
  /* Shadow for depth */
  box-shadow: -20px 0 40px rgba(0, 0, 0, 0.2);
}

/* Text Content Inside Pentagon */
.pentagon-content {
  color: white;
  text-align: left;
}

.leadership-heading {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin: 0 0 30px 0;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.8s forwards;
}

.leadership-subtext {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin: 0;
  text-align: left;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 1s forwards;
}


.pentagon-overlay::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards, float 3s ease-in-out 2.5s infinite;
}

/* Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.scroll-down .arrow {
  display: inline-block;
  font-size: 32px;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  animation: bounce 2s infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down .arrow:hover {
  color: #3498db;
  transform: scale(1.2);
}

/* Animations */
@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Alternative Pentagon Shapes */
.pentagon-overlay.arrow-sharp {
  /* Sharper arrow pointing left */
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 30% 100%, 0% 50%);
}

.pentagon-overlay.arrow-wide {
  /* Wider arrow pointing left */
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
}

.pentagon-overlay.arrow-curved {
  /* Curved arrow effect */
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
  border-radius: 0 20px 20px 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pentagon-overlay {
    padding: 50px 60px 50px 100px;
  }
  
  .leadership-heading {
    font-size: 42px;
  }
  
  .leadership-subtext {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .leadership-banner {
    height: 500px;
  }
  
  .leadership-banner-content {
    height: 500px;
    justify-content: center;
    padding: 0 20px;
  }
  
  .pentagon-overlay {
    width: 90%;
    height: 400px;
    clip-path: polygon(0% 0%, 100% 0%, 85% 50%, 100% 100%, 0% 100%);
    padding: 40px 50px;
    text-align: center;
  }
  
  .leadership-heading {
    font-size: 36px;
  }
  p.leadership-subtext {
    width: 520px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .leadership-banner {
    height: 500px;
  }
  
  .leadership-banner-content {
    height: 500px;
  }
  
  .pentagon-overlay {
    width: 85%;
    height: 350px;
    clip-path: none;
    border-radius: 15px;
    padding: 30px;
  }
  
  .leadership-heading {
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  .leadership-subtext {
    font-size: 14px;
    text-align: left;
  }
}
@media(max-width:690px){
  p.leadership-subtext{
    width: 400px;
  }
}
@media(max-width:570px){
  p.leadership-subtext{
    width: 300px;
  }
}


@media (max-width: 480px) {
  .leadership-banner {
    height: 500px;
  }
  
  .leadership-banner-content {
    height: 500px;
  }
  
  .pentagon-overlay {
    width: 90%;
    height: 300px;
    padding: 25px;
  }
  
  .leadership-heading {
    font-size: 24px;
  }
}
@media(max-width:440px){
  p.leadership-subtext{
    width: 250px;
  }
    .pentagon-overlay {
    width: 90%;
    height: 330px;
    padding: 25px;
  }
}
   .leadership-section {
      padding: 40px 20px;
      background: #ffffff;
    }

    .leadership-container {
      max-width: 1200px;
      margin: 0 auto; /* centers the container */
    }

    .leadership-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .leader-box {
  background: #f2f2f2;
  border: 1px solid #ddd;
  padding: 20px;
  display: grid;
  grid-template-columns: 150px 1fr; /* image left, text right */
  gap: 20px;
  row-gap: 0px;
  align-items: start;
  height: auto; /* dynamic height */
}


/* Image */
.leader-photo img {
  width: 150px;
  height: auto;
  display: block;
}

/* Header (name + title) */
.leader-header {
  display: flex;
  flex-direction: column;
}

.leader-name {
  font-size: 28px;
  font-weight: 400;
  margin: 0px;
}

.leader-title {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

/* Description flows full width BELOW */
.leader-desc {
  grid-column: 1 / -1; /* span across both columns */
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin-top: 10px;
  text-align: left;
}


/* Responsive: stack items */

/* Responsive: stack items */
@media (max-width: 991px) {
  .leader-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .leader-photo {
    margin: 0 auto 15px;
  }
}

/* Mobile (≤769px): one box per row */
@media (max-width: 869px) {
  .leadership-grid {
    grid-template-columns: 1fr; /* only 1 per row */
  }
  .leader-name {
    font-size: 22px;
  }
  .leadership-heading {
    font-size: 32px;
  }
  .leadership-subtext {
    font-size: 18px;
    text-align: center;
  }
}

/* Small mobile (≤480px): shrink image */
@media (max-width: 480px) {
  .leader-photo img {
    width: 100px;
  }
  .leader-name {
    font-size: 20px;
  }
  .leader-title,
  .leader-desc {
    font-size: 14px;
  }
}

.card1-footer button{

  margin: 0 auto;
}


/* Every Minutes */
 .calc-section {
      max-width: 1000px;
      margin-top: 40px;
      margin-bottom: 40px;
      margin-left: 100px;
      margin-right: 100px;
      padding: 0 20px;
   
      line-height: 1.6;
    }

    .calc-section ul {
      list-style: none; /* remove default bullets */
      padding: 0;
      margin: 0;
    }

.calc-section li {
  display: flex;
  align-items: flex-start; /* align items to top */
  margin-bottom: 25px;
}

.circle-number {
  background: #209AD6;
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-size: 14px;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #209AD6;
  position: relative;
  top: 4px; /* adjust manually to align with h4 */
}

.calc-content {
  flex: 1;
}

.calc-content h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 500;
  color: #209AD6;
  line-height: 30px; /* match circle height for perfect alignment */
}

.calc-content p {
  margin: 0;
  font-size: 15px;
  color: #333;
}


    /* Sub-list (diamond bullets) */
    .sub-list {
      list-style: none;
      padding: 5px 0 0 25px;
      margin: 0;
    }

    .sub-list li {
      position: relative;
      left: 20px;
      margin-bottom: 8px;
      font-size: 16px;
      font-weight: 400;
      color: #333;
    }

    .sub-list li::before {
      content: "";
      position: absolute;
      left: -20px;
      top: 4px;
      width: 14px;
      height: 14px;
      background: url("/assets/images/icons/bullet.png") no-repeat center center;
      background-size: contain;
    }






 .card1-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card1-content li {
  position: relative;
  padding-left: 35px; /* space for bullet */
  margin-bottom: 12px;
  list-style: none;
}

.card1-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url("/assets/images/icons/bullet.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}




.solutions-download {
  display: flex;
  align-items: center;
  gap: 40px; /* space between QR and button */
  margin-top: 20px;
  flex-wrap: wrap;
}

.qr-box img {
  width: 150px;
  height: auto;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px; /* space between button and icon */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .solutions-download {
    flex-direction: column; /* stack QR above button */
    text-align: center;
    gap: 20px;
  }

  .download-btn {
    margin-top: 10px;
  }
}

.opportunities-cards-section1 {
      max-width: 1200px;
      margin: 0px auto;
      padding: 20px;
    }




.highlight-box {
  position: relative; /* needed for absolute positioning */
  border: 2px solid #2099d600;   /* blue border */
  background: #fdf5e6;           /* light background */
  padding: 20px 20px 20px 32px;  /* extra left padding so text doesn’t overlap */
  max-width: 900px;
  margin: 20px auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

/* Accent rectangle on the left side */
.highlight-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;   /* thickness of rectangle */
  height: 100%;
  background-color: #2099d6; /* your color */
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.highlight-box h3 {
  margin-top: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 12px;
}
.highlight-box h2 {
  margin-top: 0;
  color: #000000;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 12px;
  text-align: center;
}


/* index slider */
   .pe-section {
      padding: 80px 20px;
      background-color: #ffffff;
    }

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

    /* Header */
    .pe-header {
      text-align: left;
      margin-bottom: 60px;
    }

    .pe-main-title {
      font-size: 75px;
      font-family: 'Anton';
      font-weight: bold;
      color: #000000;
      line-height: 1.1;
      letter-spacing: 2px;
      margin-bottom: 0px;
    }

    .pe-caption {
      font-size: 32px;
      color: #000000;
      font-weight: 400;
      margin-bottom: 0px;
      font-family: 'Source Sans 3 light', sans-serif;
    }


    .pe-tagline {
      display: inline-block;
      background-color: #3498db;
      color: white;
      padding: 8px 20px;
      font-size: 22px;
      font-weight: 600;
      text-transform: capitalize;
      letter-spacing: 0.5px;
    }

    /* Layout Wrapper */
    .pe-content-wrapper {
      display: grid;
      grid-template-columns: 0.3fr 1fr 1.2fr;
      gap: 40px;
      align-items: start;
    }

    /* Top row only applies to small screens */
    .pe-top-row {
      display: contents; /* Default, overridden in media query */
    }

    /* Stats */
    .pe-stats {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .pe-stat-item {
      text-align: left;
      position: relative;
      padding-bottom: 20px;
    }

    .pe-stat-item::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 30px;
      height: 2px;
      background-color: #3498db;
    }

    .pe-stat-item:last-child::after {
      display: none;
    }

    .pe-percentage {
      font-size: 48px;
      font-weight: 700;
      color: #3498db;
      line-height: 1;
      margin-bottom: 5px;
    }

    .pe-stat-label {
      font-size: 16px;
      color: #2c3e50;
      font-weight: 500;
    }

    /* Image */
    .pe-image-container {
      width: 100%;
      max-width: 440px;
      aspect-ratio: 440/610;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      margin: 0 auto;
    }

   .pe-hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.pe-slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s;
}

.pe-slide-image.pe-active {
    opacity: 1;
    z-index: 1;
}

    /* Right Content */
    .pe-right-content {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      height: auto;
    }

    .pe-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 30px;
    
    }


    .pe-content-text {
      margin-bottom: 40px;
    }

    .pe-highlight-text {
      font-size: 18px;
      color: #3498db;
      font-weight: 600;
      line-height: 1.6;
      margin-bottom: 25px;
    }

    .pe-description {
      font-size: 16px;
      color: #5a6c7d;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    /* Button */
    .pe-button {
      display: inline-flex;
      align-items: center;
      background-color: #2c3e50;
      color: white;
      padding: 15px 25px;
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      align-self: flex-start;
    }

    .pe-button:hover {
      background-color: #34495e;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .pe-button::before {
      content: "▶";
      margin-right: 8px;
      font-size: 12px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .pe-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
      }

      .pe-top-row {
        display: flex;
        flex-direction: row;
        gap: 40px;
        flex-wrap: wrap;
      }

      .pe-stats {
        width: 100%;
        flex-direction: row;
      }

      .pe-image-container {
        width: 100%;
        max-width: 55%;
      }

      .pe-right-content {
        width: 100%;
        padding-left: 0;
      }

      .pe-icon {
        margin: 0 auto 30px;
      }
    }

    @media (max-width: 768px) {
      .pe-main-title {
        font-size: 75px;
      }

      .pe-caption {
        font-size: 38px;
      }

      .pe-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
      }

      .pe-stat-item::after {
        display: none;
      }

      .pe-percentage {
        font-size: 40px;
      }
    }

    @media (max-width: 480px) {
      .pe-main-title {
        font-size: 75px;
      }

      .pe-caption {
        font-size: 16px;
      }

      .pe-highlight-text {
        font-size: 15px;
      }

      .pe-description {
        font-size: 14px;
      }

      .pe-image-container {
        max-width: 100%;
      }
    }




    
@media(max-width:844px){
.image-wrap{
width: 750px;
}
}
@media(max-width:768px){
  .image-wrap{
    width: 500px;
  }
}
@media(max-width:561px){
  .image-wrap{
    width: 380px;
  }
}


@media(max-width:948px){
  .content-card{
      left: 10px;
  }
}
@media(max-width:901px){
 .pentagon-badge{
    margin-left: 250px;
  }
   .content-card{
    margin-left: 0px;
    border-left-width:0px !important;
    margin-top: 0px;
   }
}
@media(max-width:775px){
   .pentagon-badge{
    margin-left: 170px;
  }
}
@media(max-width:622px){
   .pentagon{
    height: 290px;
   }
   .pentagon .date{
    padding-top: 80px;
   }
    .pentagon-badge{
    margin-left: 100px;
  }
}
@media(max-width:498px){
     .pentagon-badge{
    margin-left: 30px;
  }
}





/* about-us */
@media(max-width:992px){
.about__text {

  margin-top: 20px;
}
}


@media (max-width: 1038px) and (min-width: 769px) {
  .objectives-container {
    grid-template-columns: repeat(3, 1fr); /* still 3 cols */
  }

  .bottom-row {
    grid-column: 1 / -1;  /* span across all columns */
    display: flex;
    justify-content: center;  /* center the 2 cards */
    gap: 20px;
  }

  .objectives {
    width: 280px; /* make cards a bit narrower for this range */
  }
}
@media (max-width: 929px) and (min-width: 768px) {
  .objectives {
   width: 230px;
  }

}


  /* Mobile screens: stack all cards neatly */
@media (max-width: 768px) {
  .objectives-container {
    display: grid;
    grid-template-columns: 1fr; /* one column */
    gap: 20px;
    justify-items: center; /* centers items */
  }

  .top-row, .bottom-row {
    display: contents; /* let children follow the parent grid */
  }

  .objectives {
    width: 90%;
  }
}


/* gas-energy */
@media(max-width:1081px) and (min-width: 992px ){
.features-layout1  .heading__desc {
    width: 800px;
  }
p.heading__desc .mb-2{
    width: 800px;
  }
 
}

@media(max-width:1238px){
     .video-banner-layout2{
    margin-left: 150px;
}
.about__text{
   margin-left: 150px;
}

h3.heading__title2{
  margin-left: 0px;
}
 .heading__layout2 h4,h1{
  margin-left: 150px;
 }
  .heading__layout3 h4{
  margin-left: 0px;
 }
}

@media(max-width:1115px){
  .about__text{
   margin-left: 200px;
   width: 300px;
}
}
@media(max-width:992px){
  .about__text{
    width: 600px;
    margin-left: 150px;
  }
}
@media(max-width:869px){

 .heading__layout2 h4,h1{
  margin-left: 100px;
 }
 .about__text{
  margin-left: 100px;
 }
}
@media(max-width:768px){
  .about__text{
    text-align: left;
  }
    .video-banner-layout2{
    margin-left: 100px;
}
  h3.heading__title{
  margin-left: 0px;
}

 .heading__layout2 h4,h1{
  margin-left: 0px;
 }
}
@media(max-width:767px){
   .about__text{
    margin-left: 0px;
    text-align: left;
  }
}

@media(max-width:691px){
  .about__text{
    width: 450px;
  }
      .video-banner-layout2{
    margin-left: 50px;
}
}
@media(max-width:553px){
    .video-banner-layout2{
    
    margin-left: 6px;
  }
}
@media(max-width:500px){
 .video-banner-layout2{
        max-width: 340px;
        width: 340px; /* Add this line */
        margin-left: 20px;
        height: 450px;
    }
  .video-banner-layout2 .slides{
     max-width: 340px;
  }
  .about__text{
    width: 350px;
    margin-left: 20px;
  }
}
@media(max-width:430px){
  .video-banner-layout2{
    max-width: 340px;
    margin-left: 20px;
  }
  .about__text{
    width: 350px;
    margin-left: 20px;
  }
}
@media (max-width: 570px) {
  .solutions-btn {
    flex-direction: column;
    align-items: stretch; 
   
  }

  .solutions-btn a {
    width: 100%;
     margin-bottom: 10px ;
  }
}
.heading__gas {
  font-size: 16px;
  margin-bottom: 0;
  color: #000000;
    padding-top: 15px;
}


.esg{
  width: 500px;
  margin-left: 150px;
}
.esg-pillar{
  width: 1000px;
  margin-left: 50px;
  margin-top: 100px;
}

@media(max-width:1062px){
  .esg{
    margin-left:200px;
  }
  .esg-pillar{
    margin-left: 200px;
    margin-top: 0px;
  }
}

@media(max-width:992px){
   .col-lg-5 img{
    
    margin-bottom: 50px !important;
    width: 500px;
  }
}
@media(max-width:812px){
   .col-lg-5 img{
    
  
  }
    .esg{
    margin-left:100px;
  }
}
@media(max-width:768px){

    .esg{
    margin-left:0px;
  }
}
@media(max-width:586px){

    .esg{
      width: 450px;
    margin-left:50px;
  }
}
@media(max-width:435px){

  
  .esg{
     margin-left: 20px;
  }
}
@media(max-width:485px){

  
  .esg{
    width: 400px;
     margin-left: 20px;
  }
}

.csr-images {
  display: flex;
  gap: 20px;            
  justify-content: center; 
  flex-wrap: wrap;     
}

.csr-images img {
  width: 350px;         
  height: auto;
 
  transition: transform 0.3s ease;
}

.csr-images img:hover {
  transform: scale(1.05); /* zoom effect on hover */
}




.sdg-section {
  display: flex;               
           
  justify-content: space-between; 
  gap: 40px;   
  width: 900px;                 
}

.sdg-text {
  flex: 1;  
  text-align: left; 
    max-width: 700px;                  
}

.sdg-images img {
  max-width: 250px;           
  height: auto;
}

.highlight {
  color: #0a9be3;
  font-weight: 600;
}
@media (max-width: 912px) {
  .sdg-section {
    flex-direction: column; 
    text-align: center;  
    gap: 0px;    
    align-items: left; 
    width: 700px;  
  }

  .sdg-images {
    margin-top: 20px;       
  }
}
@media(max-width:768px){
  .sdg-section {
    width: 500px;
  }
  
}
@media(max-width:545px){
  .sdg-section {
    width: 400px;
  }
  
}
@media(max-width:438px){
  .sdg-section {
    width: 350px;
  }
  
}
@media(max-width:800px){
.row  img .every-minutes{
    width: 600px;
    
  }
 
}
@media(max-width:520px){
.row  img .every-minutes{
    width: 400px;
}
  .row{
    width: 400px;
  }
}
@media(max-width:1156px){
  .objectives{
    width: 300px !important;
  }
}
@media(max-width:1090px){
  .objectives{
    width: 250px !important;
    gap: 20px;
  }
}

@media(max-width:980px){
  .pe-banner-overlay {
    position: absolute;
    left: 100px;
  }
}
@media(max-width:822px){
  .objectives{
    width: 220px !important;
    gap: 10px;

  }
  h3.objectives-header{
    height:80px !important;
  }
}
@media(max-width:540px){
  .pe-banner-overlay {
    position: absolute;
    left: 0px;
  }
}
@media(max-width:427px){
  .pe-topbar-contact .icon-phone {
    display: none;
  }
 .pe-topbar-contact .mob-no {
    display: none;
  }
}
@media(max-width:480px){
  .image-collage{
    position: inherit;
    left: -30px;
  }
   .applications-list{
    position: inherit;
    left: -20px;
  }
}
@media(max-width:460px){
  .row.applications-list{
   width: 320px;
  }
   .row .align-items-center .ml-40 {
    width: 320px;
}
}
@media(max-width:430px){
 .applications-list{
  width: 320px !important;
}
.image-collage .row img{
  width: 160px !important;
}
.row .align-items-center .ml-40{
  width: 380px;
}

  
}
@media(max-width:580px){
  .calc-section{
   margin-left: 0px !important;
  }
}
@media(max-width:500px){
  .calc-section{
   margin-right: 0px !important;
  }
}
img.banner-img[src*="Electric-Vehicles.jpg"] {
  object-fit: cover;              /* ensures image scales properly */
  object-position: left center !important; /* focus on left side */
  width: 100%;
  height: auto;
}


@media (max-width: 900px) {
  .banner-img img[src*="Electric-Vehicles.jpg"] {
    object-position: 30% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 500px) {
  .banner-img img[src*="Electric-Vehicles.jpg"] {
    object-position: 40% center !important; /* shift focus slightly right */
  }
}


@media (max-width: 1100px) {
  .banner-img img[src*="power-plant-close-up.jpg"] {
    object-position: 30% center !important; /* shift focus slightly right */
  }

@media (max-width: 510px) {
  .banner-img img[src*="power-plant-close-up.jpg"] {
    object-position: 40% center !important; /* shift focus slightly right */
  }
}}


@media (max-width: 1130px) {
  .banner-img img[src*="power-of-a-minute.jpg"] {
    object-position: 60% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 730px) {
  .banner-img img[src*="power-of-a-minute.jpg"] {
    object-position: 80% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 1070px) {
  .banner-img img[src*="about us.jpg"] {
    object-position: 20% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 885px) {
  .banner-img img[src*="about us.jpg"] {
    object-position: 30% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 685px) {
  .banner-img img[src*="about us.jpg"] {
    object-position: 40% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 480px) {
  .banner-img img[src*="about us.jpg"] {
    object-position: 50% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 990px) {
  .banner-img img[src*="sdg.jpg"] {
    object-position: 20% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 645px) {
  .banner-img img[src*="sdg.jpg"] {
    object-position: 30% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 715px) {
  .banner-img img[src*="CSR.jpg"] {
    object-position: 30% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 900px) {
  .banner-img img[src*="agricultural-&-rural-solar-solutions.jpg"] {
    object-position: 70% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 500px) {
  .banner-img img[src*="agricultural-&-rural-solar-solutions.jpg"] {
    object-position: 65% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 1220px) {
  .banner-img img[src*="Commercial-&-Industrial-Solar-Solutions.jpg"] {
    object-position: 15% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 590px) {
  .banner-img img[src*="Commercial-&-Industrial-Solar-Solutions.jpg"] {
    object-position: 25% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 975px) {
  .banner-img img[src*="residential-solar-solutions.jpg"] {
    object-position: 65% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 600px) {
  .banner-img img[src*="residential-solar-solutions.jpg"] {
    object-position: 55% center !important; /* shift focus slightly right */
  }
}

@media (max-width: 1400px) {
  .banner-img img[src*="ai-banner-3.jpg"] {
    object-position: 25% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 890px) {
  .banner-img img[src*="ai-banner-3.jpg"] {
    object-position: 15% center !important; /* shift focus slightly right */
  }
}
@media (max-width: 750px) {
  .banner-img img[src*="Contact-us.jpg"] {
    object-position: 65% center !important; /* shift focus slightly right */
  }
}