/* =========================
   CLIMATE CHANGE SECTION
========================= */

.climate-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.climate-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.climate-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: #fdd835;
    color: #1b5e20;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   CONTENT LAYOUT
========================= */

.climate-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* =========================
   LEFT TEXT
========================= */

.climate-text {
    flex: 1;
}

.climate-text h3 {
    font-size: 22px;
    color: #2e7d32;
    margin-bottom: 10px;
    margin-top: 20px;
}

.climate-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.climate-text strong {
    color: #1b5e20;
}

.climate-text span {
    color: #fbc02d;
    font-weight: 500;
}

/* LIST */

.climate-list {
    padding-left: 20px;
    margin-top: 10px;
}

.climate-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* =========================
   RIGHT CARD
========================= */

.climate-highlight {
    flex: 1;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
}

.climate-highlight h3 {
    font-size: 22px;
    color: #1b5e20;
    margin-bottom: 20px;
}

/* IMPACT LIST */

.impact-list {
    list-style: none;
    padding: 0;
}

.impact-list li {
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* NOTE */

.impact-note {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.impact-note strong {
    color: #1b5e20;
}

/* =========================
   HOVER EFFECT
========================= */

.climate-highlight:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
}

/* =========================
   DECORATIVE ELEMENT
========================= */

.climate-highlight::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background: #fbc02d;
    top: -20px;
    right: -20px;
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUpClimate {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.climate-header,
.climate-text,
.climate-highlight {
    animation: fadeUpClimate 1s ease;
}

































/* =========================
   CLIMATE SECOND SECTION
========================= */

.climate-deep-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
  font-family: 'Roboto', sans-serif;
}

/* BLURRED BACKGROUND IMAGE */
.climate-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 110%;
  height: 110%;
  background: url('../assets/images/climate-bg.png') no-repeat center center/cover;
  filter: blur(1px);
  transform: scale(1.1);
  z-index: -2;
}

/* DARK OVERLAY FOR READABILITY */
.climate-deep-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  z-index: -1;
}

/* MAIN CONTAINER */
.climate-deep-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}

/* =========================
   LEFT IMAGE (BIG)
========================= */
.climate-left-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: transform 0.4s ease;
}

.climate-left-image img:hover {
  transform: scale(1.03);
}

/* =========================
   RIGHT CONTENT
========================= */
.climate-right-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* TEXT BLOCK */
.climate-text-block h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.climate-text-block h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: #90ee90;
}

.climate-text-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #e0e0e0;
}

.climate-text-block span {
  color: #00ffcc;
  font-weight: 500;
}

/* =========================
   RIGHT SIDE IMAGES (2)
========================= */
.climate-side-images {
  display: flex;
  gap: 15px;
}

.climate-side-images img {
  width: 50%;
  height: 190px;
  object-fit: cover;
  border-radius: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.climate-side-images img:hover {
  transform: scale(1.05);
}

/* =========================
   LIST (SOLUTIONS)
========================= */
.climate-solutions {
  margin-top: 10px;
  padding-left: 20px;
}

.climate-solutions li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #dcdcdc;
}


/* =========================
   THIRD CLIMATE SECTION
========================= */

.climate-third-section {
  padding: 110px 0;
  background: linear-gradient(to right, #f1f8f6, #e9f5f1);
  font-family: 'Roboto', sans-serif;
}

/* MAIN GRID */
.climate-third-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   TEXT CONTENT
========================= */
.climate-third-text {
  animation: fadeInUp 1s ease;
}

.climate-third-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 15px;
}

.climate-third-text h3 {
  margin-top: 25px;
  font-size: 22px;
  color: #2d6a4f;
}

.climate-third-text p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #444;
}

/* LIST */
.climate-actions {
  margin-top: 15px;
  padding-left: 20px;
}

.climate-actions li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  position: relative;
  padding-left: 5px;
}

/* =========================
   IMAGES (RIGHT SIDE)
========================= */
.climate-third-images {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* IMAGE BOX */
.img-box {
  overflow: hidden;
  border-radius: 1px;
}

/* IMAGE STYLE */
.img-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

/* HOVER EFFECT */
.img-box:hover img {
  transform: scale(1.08);
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







/* =========================================
   CLIMATE FOURTH SECTION
========================================= */

.climate-fourth-section {
    padding: 100px 20px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.climate-fourth-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

.climate-fourth-header {
    text-align: center;
    margin-bottom: 60px;
}

.climate-fourth-header h2 {
    font-size: 36px;
    color: #1b5e20;
    margin-bottom: 10px;
}

.climate-fourth-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================
   GRID LAYOUT
========================= */

.climate-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 15px;
}

/* BIG IMAGE */
.item1 {
    grid-column: span 2;
    grid-row: span 2;
}

/* =========================
   GRID ITEMS
========================= */

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 1px;
    cursor: pointer;
}

/* IMAGE */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* OVERLAY */
.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.grid-item:hover img {
    transform: scale(1.08);
}

.grid-item:hover .overlay-text {
    background: linear-gradient(to top, rgba(27,94,32,0.8), transparent);
}

/* =========================
   DECORATIVE TOUCH
========================= */

.grid-item::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    background: #fdd835;
    opacity: 0.2;
    border-radius: 50%;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUpGrid {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.climate-fourth-header,
.grid-item {
    animation: fadeUpGrid 1s ease;
}


/* =========================================
   CLIMATE FIFTH SECTION (CTA + COUNTERS)
========================================= */

.climate-fifth-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.climate-fifth-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* =========================
   LEFT CONTENT
========================= */

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #e8f5e9;
}

/* BUTTONS */

.cta-buttons {
    margin-top: 20px;
}

.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    margin-right: 10px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn.primary {
    background: #fdd835;
    color: #1b5e20;
    font-weight: 600;
}

.cta-btn.secondary {
    border: 2px solid #ffffff;
    color: #ffffff;
}

/* HOVER */

.cta-btn.primary:hover {
    background: #ffffff;
}

.cta-btn.secondary:hover {
    background: #ffffff;
    color: #1b5e20;
}

/* =========================
   COUNTERS
========================= */

.cta-counters {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.counter-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.counter-box h3 {
    font-size: 32px;
    color: #fdd835;
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 14px;
}

/* =========================
   ANIMATION
========================= */

@keyframes fadeUpCTA {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-content,
.counter-box {
    animation: fadeUpCTA 1s ease;
}











/* MOBILE */
@media (max-width: 768px) {
    .climate-section {
        padding: 70px 20px;
    }

    .climate-content {
        flex-direction: column;
    }

    .climate-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .climate-highlight {
        padding: 20px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .climate-text h3 {
        font-size: 18px;
    }

    .climate-list li,
    .impact-list li {
        font-size: 14px;
    }
}


/* =========================
   RESPONSIVENESS
========================= */

/* TABLET */
@media (max-width: 992px) {
  .climate-deep-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .climate-left-image img {
    height: 400px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .climate-deep-section {
    padding: 80px 0;
  }

  .climate-text-block h2 {
    font-size: 22px;
  }

  .climate-text-block h3 {
    font-size: 18px;
  }

  .climate-text-block p {
    font-size: 14px;
  }

  .climate-side-images {
    flex-direction: column;
  }

  .climate-side-images img {
    width: 100%;
    height: 180px;
  }

  .climate-left-image img {
    height: 300px;
  }
}





/* =========================
   RESPONSIVENESS
========================= */

/* TABLET */
@media (max-width: 992px) {
  .climate-third-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .img-box img {
    height: 230px;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .climate-third-section {
    padding: 70px 0;
  }

  .climate-third-text h2 {
    font-size: 24px;
  }

  .climate-third-text h3 {
    font-size: 18px;
  }

  .climate-third-text p {
    font-size: 14px;
  }

  .img-box img {
    height: 200px;
  }
}


/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {
    .climate-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .item1 {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .climate-fourth-section {
        padding: 70px 20px;
    }

    .climate-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .item1 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .climate-fourth-header h2 {
        font-size: 26px;
    }

    .climate-fourth-header p {
        font-size: 14px;
    }

    .overlay-text {
        font-size: 13px;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .climate-fifth-container {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-counters {
        grid-template-columns: 1fr;
    }
}


/* =========================
   RESPONSIVE
========================= */

/* TABLET */
@media (max-width: 992px) {
    .climate-content {
        gap: 40px;
    }

    .section-title {
        font-size: 30px;
    }
}



