/* Modern About Us Hero Section Styles */

/* CSS Variables for consistent theming */
:root {
    --primary-blue: #1da6ff;
    --primary-dark: #0d47a1;
    --gradient-blue: linear-gradient(135deg, #1da6ff 0%, #0d47a1 100%);
    --gradient-purple: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: flex;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    overflow: hidden;
}

.team-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="plus-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0v20M0 10h20" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23plus-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 2;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem;
    min-height: 40vh;
}

.hero-text {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 50%;
    padding-right: 2rem;
    position: relative;
    z-index: 4;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-image {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.company-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-text {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
    color: #64b5f6;
}

.brand-name {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.6;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.highlight-icon {
    color: #ffd700;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: #ffd700;
    color: var(--primary-dark);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Hero visual styles removed - image is now part of background */

/* Stats grid removed - using team photo instead */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop Optimizations */
@media (min-width: 1200px) {
    .hero-content {
        padding: 4rem 2rem;
    }
    
    .hero-text {
        width: 50%;
        padding-right: 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .logo-image {
        max-width: 180px;
    }
    
    .hero-image-bg {
        width: 50%;
    }
}

@media (min-width: 1400px) {
    .hero-content {
        padding: 5rem 2rem;
        max-width: 1600px;
    }
    
    .hero-text {
        width: 50%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 1.75rem;
    }
    
    .hero-logo {
        margin-bottom: 2rem;
    }
    
    .logo-image {
        max-width: 200px;
    }
    
    .hero-image-bg {
        width: 50%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-text {
        width: 100%;
        padding-right: 0;
    }
    
    .hero-image-bg {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }
    
    .hero-pattern {
        width: 100%;
        height: 60%;
        bottom: auto;
        top: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .logo-image {
        max-width: 180px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 50vh;
        padding: 1rem 0;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-text {
        width: 100%;
    }
    
    .hero-image-bg {
        width: 100%;
        height: 35%;
    }
    
    .hero-pattern {
        width: 100%;
        height: 65%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
    
    .hero-logo {
        margin-bottom: 1rem;
    }
    
    .logo-image {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-text {
        width: 100%;
    }
    
    .hero-image-bg {
        width: 100%;
        height: 30%;
    }
    
    .hero-pattern {
        width: 100%;
        height: 70%;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 1rem;
    }
    
    .hero-logo {
        margin-bottom: 0.75rem;
    }
    
    .logo-image {
        max-width: 120px;
    }
}
/* WHO WE ARE SECTION */
.who-we-are {
  position: relative;
  padding: 80px 20px;
  background: #f9fafc;
}

.who-we-are .container-xl {
  max-width: 1200px;
  margin: 0 auto;
}

.who-we-are .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns (6 + 6) */
  gap: 2rem;
}

.who-we-are .card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.who-we-are .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.who-we-are .card-content {
  text-align: center;
}

.who-we-are .card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.who-we-are .card .icon img {
  width: 60px;
  height: 60px;
  max-width: 100%;
  height: auto;
}

.who-we-are .card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0a2a43;
}

.who-we-are .card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.who-we-are .card .btn {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid #0a7cf7;
  color: #0a7cf7;
  text-decoration: none;
}

.who-we-are .card .btn:hover {
  background: #0a7cf7;
  color: #fff;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 768px) {
  .who-we-are .cards {
    grid-template-columns: 1fr; /* stack on mobile */
  }

  .who-we-are .card {
    padding: 1.5rem;
  }

  .who-we-are .card-title {
    font-size: 1.2rem;
  }

  .who-we-are .card p {
    font-size: 0.95rem;
  }

  .who-we-are .card .icon img {
    width: 50px;
    height: 50px;
  }
}
.objectives-and-vision {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a2a43, #0a7cf7);
  color: #fff;
}

.objectives-and-vision .title-section {
  font-size: 2rem;
  font-weight: 700;
}

.objective-card {
  background: #ffffff;
  color: #333;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.objective-icon {
  margin-bottom: 1rem;
}

.objective-icon img {
  width: 60px;
  height: 60px;
}

.objective-card .title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #0a2a43;
}

.objective-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .objectives-and-vision {
    padding: 50px 15px;
  }
  .objective-card {
    padding: 1.5rem;
  }
  .objective-icon img {
    width: 50px;
    height: 50px;
  }
}
/* Milestones Section */
.milestones {
  position: relative;
  padding: 80px 20px;
  background: #f9fafc;
}

.milestones .title-section {
  font-size: 2.2rem;
  color: #0a2a43;
}

.milestones .subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #0a7cf7;
  transform: translateX(-50%);
  border-radius: 4px;
}

/* Each item */
.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  flex: 0 0 100px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0a7cf7;
  text-align: center;
}

.timeline-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-5px);
}

.timeline-card p,
.timeline-card li {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.timeline-card ul {
  margin: 0;
  padding-left: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .timeline::before {
    left: 15px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 10px;
  }

  .timeline-year {
    text-align: left;
    font-size: 1.2rem;
  }

  .timeline-card {
    width: 100%;
    margin-left: 0;
  }
}
/* Section Base */
.communication {
  padding: 80px 20px;
  background: #f9fafc;
}

.communication .title {
  font-size: 1.4rem;
  color: #0a2a43;
  margin-bottom: 1rem;
}

/* Info Cards */
.communication .info-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

.communication .info-card:hover {
  transform: translateY(-5px);
}

.communication .info-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Item List Link */
.communication .item-list-box {
  text-align: center;
}

.communication .item-list-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 2px solid #0a7cf7;
  border-radius: 8px;
  color: #0a7cf7;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.communication .item-list-link:hover {
  background: #0a7cf7;
  color: #fff;
}

/* Notice Block */
.communication .notice-block {
  background: #0a2a43;
  color: #fff;
  padding: 60px 20px;
  border-radius: 12px;
}

.communication .notice-card strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 1.1rem;
}

.communication .notice-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.communication .notice-card a {
  color: #0a7cf7;
  text-decoration: underline;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .communication {
    padding: 50px 15px;
  }

  .communication .title {
    font-size: 1.2rem;
  }

  .communication .info-card {
    padding: 20px;
  }

  .communication .notice-block {
    padding: 40px 20px;
  }
}
/* Cards */
.communication .info-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.communication .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Icons */
.communication .icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0a7cf7, #00c6ff);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.communication .info-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

/* Link */
.communication .item-list-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  background: #f0f6ff;
  border: 2px solid #0a7cf7;
  color: #0a7cf7;
  transition: all 0.3s ease;
}

.communication .item-list-link:hover {
  background: linear-gradient(135deg, #0a7cf7, #00c6ff);
  color: #fff;
}

/* Notice Block */
.communication .notice-block {
  background: linear-gradient(135deg, #0a2a43, #09243a);
  padding: 50px 20px;
  border-radius: 16px;
  color: #fff;
  position: relative;
}

.communication .notice-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.communication .notice-icon {
  font-size: 40px;
  color: #0a7cf7;
  flex-shrink: 0;
}

.communication .notice-text strong {
  font-size: 1.1rem;
  color: #fff;
  display: block;
  margin: 0.5rem 0;
}
/* Hero Section */
.academy-banner.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a2a43, #0a7cf7);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px;
}

/* Background shapes */
.academy-banner .hero-bg .bg-shape {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  animation: float 10s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0px) translateX(0px); }
  to   { transform: translateY(30px) translateX(20px); }
}

/* Title */
.academy-banner .hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.academy-banner .hero-title .highlight {
  color: #00c6ff;
  text-shadow: 0 2px 10px rgba(0,198,255,0.4);
}

/* Subtitle */
.academy-banner .hero-subtitle {
  font-size: 1.2rem;
  margin: 1rem auto 2rem;
  max-width: 650px;
  color: rgba(255,255,255,0.9);
}

/* Search Box */
.academy-banner .search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.academy-banner .search-input {
  border: none;
  flex: 1;
  padding: 10px;
  outline: none;
  font-size: 1rem;
  color: #333;
}

.academy-banner .search-icon {
  color: #0a7cf7;
  margin-right: 10px;
  font-size: 1.2rem;
}

.academy-banner .search-btn {
  background: #0a7cf7;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  padding: 8px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.academy-banner .search-btn:hover {
  background: #005bb5;
}

/* Buttons */
.academy-banner .btn {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.academy-banner .btn-primary {
  background: #00c6ff;
  border: none;
  color: #fff;
}

.academy-banner .btn-outline-light {
  border: 2px solid #fff;
  color: #fff;
}

.academy-banner .btn-outline-light:hover {
  background: #fff;
  color: #0a2a43;
}
/* Section Background */
.risk-tools-section {
  background: linear-gradient(135deg, #0a2a43, #0a7cf7);
  color: #fff;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

/* Headings */
.risk-tools-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.risk-tools-section .highlight {
  color: #00c6ff;
  text-shadow: 0 2px 12px rgba(0,198,255,0.4);
}

.risk-tools-section .inner-title {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

/* List */
.risk-management-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.risk-management-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.risk-management-list li:hover {
  transform: translateX(8px);
}

.risk-management-list i {
  font-size: 1.4rem;
  margin-right: 10px;
  color: #00c6ff;
}

/* Image */
.risk-image {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25),
              0 0 25px rgba(0,198,255,0.5);
  transition: transform 0.4s ease;
}

.risk-image:hover {
  transform: scale(1.05);
}
/* Hero Section */
.alerts-hero {
  background: linear-gradient(135deg, #0a2a43, #0a7cf7);
  color: #fff;
  border-radius: 0 0 50px 50px;
  position: relative;
  overflow: hidden;
}

.alerts-hero .section-title {
  font-size: 2.8rem;
  font-weight: 700;
}

.alerts-hero .highlight {
  color: #00c6ff;
  text-shadow: 0 2px 12px rgba(0,198,255,0.4);
}

.alerts-hero .inner-title {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
}

.alerts-list {
  list-style: none;
  padding: 0;
}

.alerts-list li {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s;
}

.alerts-list li:hover {
  transform: translateX(8px);
}

.alerts-img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25),
              0 0 25px rgba(0,198,255,0.5);
  transition: transform 0.4s;
}

.alerts-img:hover {
  transform: scale(1.05);
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  color: #fff !important;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-cta:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0,198,255,0.5);
}
/* ESG Banner */
/* ESG Banner */
.esg-banner {
  background: linear-gradient(135deg, #0f1c3f, #0a7cf7);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.esg-banner .main-banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.esg-banner .sub-highlight {
  color: #00e6b8;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.esg-banner .main-banner-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 25px;
}

.btn-esg {
  display: inline-block;
  background: linear-gradient(90deg, #00e6b8, #0072ff);
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,198,255,0.4);
}

.btn-esg:hover {
  background: linear-gradient(90deg, #0072ff, #00e6b8);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0,198,255,0.6);
}

.esg-img {
  max-width: 90%;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3),
              0 0 30px rgba(0,198,255,0.3);
  transition: transform 0.4s ease;
}

.esg-img:hover {
  transform: scale(1.05) rotate(-1deg);
}
