/* ========================================
   NEOLIV ESG MICRO SITE - STYLES
   ======================================== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-green: #34c759;
  --secondary-green: #1b8838;
  --dark-green: #0c1711;
  --light-green: #5bb462;
  --accent-green: #97b38b;
  --light-bg: #e4f8db;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #eeeeee;
  --gray-medium: #999999;
  --gray-dark: #232426;
  --text-primary: #000000;
  --text-secondary: #999999;
  --transition-fast: all 0.3s ease;
  --transition-smooth: all 0.4s ease;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 16px 50px rgba(0, 0, 0, 0.2);
  --container-padding: 20px;
  --header-height: 80px;
  --max-width: 1440px;
}

body {
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.container-fluid {
  max-width: 1440px;
}
a{
  text-decoration: none;
  color: unset;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header .navbar {
  padding: 15px 0;
}

.header.scrolled {
  background: rgba(0, 0, 0, 0.9);
}

.logo-placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  background: url("./assets/images/white_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 208px;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.navbar-nav .nav-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--white) !important;
  padding: 10px 20px !important;
  margin: 0 5px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  background: rgba(52, 199, 89, 0.2);
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link.active {
  background: var(--primary-green);
  color: var(--white) !important;
}


.custom-toggler {
  background: transparent;
  border: 2px solid var(--white);
  border-radius: 6px;
  width: 44px;
  height: 44px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.custom-toggler:focus {
  box-shadow: none;
  border-color: var(--primary-green);
}

.custom-toggler:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.custom-toggler i {
  font-size: 18px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Adjusted alpha for a lighter overlay */
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url("./assets/images/banner.png");
  background-size: cover;
  background-position: center;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32));
  z-index: -2;
}

.radial-gradient {
  position: absolute;
  width: 1498px;
  height: 1498px;
  left: 50%;
  top: -230px;
  transform: translateX(-50%);
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 712px;
  padding: 0 20px;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 68px;
  line-height: 77px;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 25%, #0c1711 343.26%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  animation: fadeInUp 1s ease-out;
  white-space: nowrap;
  overflow: hidden;
}

.hero-subtitle {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--white);
  margin-bottom: 60px;
  max-width: 698px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-download {
  background: var(--gray-dark);
  box-shadow: 0px 1px 4px rgba(38, 40, 46, 0.37);
  backdrop-filter: blur(2px);
  border-radius: 12px;
  border: none;
  padding: 11px 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.07em;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 257px;
  height: 42px;
}

.btn-download:hover {
  background: rgba(35, 36, 38, 0.8);
  transform: translateY(-2px);
}

.btn-primary-green {
  background: var(--primary-green);
  box-shadow: 0px 1px 2px rgba(13, 32, 62, 0.5);
  border-radius: 12px;
  border: none;
  padding: 11px 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  text-shadow: 0px 0px 0.5px var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 93px;
  height: 42px;
  text-decoration: none;
}

.btn-primary-green:hover {
  background: #2ba14e;
  transform: translateY(-2px);
  box-shadow: 0px 4px 8px rgba(13, 32, 62, 0.3);
}

/* Enhanced Vision Section */
.vision-section {
  background: var(--white);
  padding: 140px 0 100px 0;
  scroll-margin-top: 100px;
  position: relative;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.vision-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
}

.vision-eye-icon {
  opacity: 0.7;
  transition: var(--transition-fast);
}

.vision-eye-icon:hover {
  opacity: 1;
  transform: scale(1.1);
}

.vision-eye-icon svg {
  width: 70px;
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.vision-main-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: 24px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.vision-sub-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 80px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Mobile Vision Carousel */
.mobile-vision-carousel {
  margin-top: 60px;
}

.mobile-carousel-container {
  position: relative;
  background: linear-gradient(135deg, #e4f8db 0%, #f0f8e8 50%, #e8f5e1 100%);
  border-radius: 20px;
  padding: 30px 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.mobile-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 300%;
  position: relative;
}

.mobile-carousel-slide {
  width: 33.333%;
  flex-shrink: 0;
  padding: 0 10px;
  opacity: 0.7;
  transform: scale(0.95);
  transition: all 0.5s ease;
  box-sizing: border-box;
}

.mobile-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.mobile-slide-image {
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mobile-carousel-slide.active .mobile-slide-image img {
  transform: scale(1.05);
}

.mobile-slide-content {
  text-align: center;
  color: var(--text-primary);
  padding: 0 5px;
}

.mobile-slide-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--dark-green);
}

.mobile-slide-content p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.mobile-carousel-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 10px;
}

.mobile-nav-btn {
  background: var(--primary-green);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(52, 199, 89, 0.3);
  font-size: 14px;
}

.mobile-nav-btn:hover {
  background: var(--secondary-green);
  transform: scale(1.1);
}

.mobile-nav-btn:active {
  transform: scale(0.95);
}

.mobile-carousel-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(52, 199, 89, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}

.dot.active {
  background: var(--primary-green);
  transform: scale(1.2);
}

.dot:hover {
  background: var(--light-green);
}

/* Desktop Vision Layout */
.vision-content-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  background: linear-gradient(135deg, #e4f8db 0%, #f0f8e8 50%, #e8f5e1 100%);
  border-radius: 32px;
  padding: 80px 60px;
  margin-top: 80px;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.vision-content-layout::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(52, 199, 89, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.diamond-section {
  flex: 0 0 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.diamond-layout-container {
  position: relative;
  width: 380px;
  height: 380px;
}

.diamond-card {
  position: absolute;
  width: 150px;
  height: 150px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.diamond-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.diamond-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: rotate(-45deg) scale(1.4);
  transform-origin: center;
  transition: var(--transition-smooth);
}

.diamond-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  text-align: center;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.diamond-top {
  top: 0;
  left: 30%;
}

.diamond-left {
  bottom: 0;
  left: 0;
}

.diamond-right {
  bottom: 0;
  right: 0;
}

.diamond-card[data-pillar="sustainable"] .diamond-background {
  background: linear-gradient(
      135deg,
      rgba(76, 175, 80, 0.3),
      rgba(46, 125, 50, 0.3)
    ),
    url("./assets/images/planttree.jpg");
  background-size: cover;
  background-position: center;
}

.diamond-card[data-pillar="responsible"] .diamond-background {
  background: linear-gradient(
      135deg,
      rgba(255, 152, 0, 0.3),
      rgba(245, 124, 0, 0.3)
    ),
    url("./assets/images/governance.jpg");
  background-size: cover;
  background-position: center;
}

.diamond-card[data-pillar="governance"] .diamond-background {
  background: linear-gradient(
      135deg,
      rgba(33, 150, 243, 0.3),
      rgba(25, 118, 210, 0.3)
    ),
    url("./assets/images/responsible.jpg");
  background-size: cover;
  background-position: center;
}

.diamond-card:hover {
  transform: scale(1.08);
  z-index: 10;
}

.diamond-card:hover .diamond-inner {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.diamond-card:hover .diamond-background {
  transform: rotate(-45deg) scale(1.5);
}

.diamond-card.active {
  transform: scale(1.05);
  z-index: 5;
}

.diamond-card.active .diamond-inner {
  box-shadow: 0 12px 40px rgba(52, 199, 89, 0.3);
}

.vision-text-section {
  flex: 1;
  padding-left: 40px;
  z-index: 2;
}

.vision-detailed-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Section Title */
.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 52px;
  line-height: 78px;
  color: var(--text-primary);
  margin-bottom: 0;
}

/* ========================================
   PILLARS SECTION
   ======================================== */
.pillars-section {
  background: var(--white);
  padding: 120px 0 80px 0;
  scroll-margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.pillars-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.pillars-icon {
  opacity: 0.6;
  transition: var(--transition-fast);
}

.pillars-icon:hover {
  opacity: 1;
  transform: scale(1.05);
}

.pillars-description-gradient {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
  background: linear-gradient(180deg, #000000 -56.46%, #999999 96.26%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  text-align: center;
}

.pillars-fullwidth-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

/* Pillars Main Section */
.pillars-main-section {
  position: relative;
  min-height: 600px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Background Numbers */
.background-numbers-section {
  position: absolute;
  top: -352px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  height: 492px;
  width: 1232px;
  max-width: 90vw;
}

.bg-number-large {
  position: absolute;
  font-family: "Source Serif Pro", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 393px;
  line-height: 492px;
  background: linear-gradient(180deg, #8e8e8e 0%, #f4f4f4 35.58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
  top: 0;
  width: 205px;
  text-align: center;
  opacity: 0.6;
}

.bg-number-1 {
  left: 97.5px;
  transform: translateX(-50%);
}

.bg-number-2 {
  left: 50%;
  transform: translateX(-50%);
  margin-left: -100px;
}

.bg-number-3 {
  right: 97.5px;
  transform: translateX(50%);
}

/* Pillar Cards */
.pillar-cards-row {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  margin-top: 263px;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--container-padding);
}

.pillar-card-wrapper {
  flex: 0 0 400px;
}

.pillar-card-final {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-medium);
}

.pillar-card-final:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.pillar-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pillar-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pillar-card-final:hover .pillar-bg-image {
  transform: scale(1.05);
}

.pillar-card-overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 152px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(2px);
  border-radius: 16px 16px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.pillar-title {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 60px;
  color: var(--white);
  text-shadow: 0px 4px 0px #000000;
  text-align: center;
  margin: 0;
}

/* Enhanced Promises Section */
.promises-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #ffffff 100%);
  padding: 80px 0;
  scroll-margin-top: 100px;
  position: relative;
}

.promises-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(52, 199, 89, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.promises-container {
  max-width: 1400px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(27, 136, 56, 0.1);
  border-radius: 32px;
  padding: 80px 60px;
  position: relative;
  box-shadow: var(--shadow-light);
}

.promises-header {
  margin-bottom: 80px;
}

.promise-tab {
  background: var(--gray-light);
  border: 1px solid rgba(108, 117, 125, 0.2);
  border-radius: 20px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-secondary);
  height: auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.promise-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 136, 56, 0.1),
    transparent
  );
  transition: var(--transition-fast);
}

.promise-tab:hover::before {
  left: 100%;
}

.promise-tab.active {
  background: linear-gradient(
    135deg,
    var(--secondary-green) 0%,
    var(--primary-green) 100%
  );
  border: 1px solid var(--primary-green);
  color: var(--white);
  font-weight: 600;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 8px 32px rgba(27, 136, 56, 0.3);
  transform: translateY(-4px);
}

.promise-tab:hover:not(.active) {
  background: rgba(27, 136, 56, 0.1);
  transform: translateY(-2px);
  border-color: var(--primary-green);
}

.promises-description {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 22px);
  line-height: 1.5;
  background: linear-gradient(135deg, #000000 0%, #6c757d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  max-width: 1100px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.promise-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.promise-tag {
  border: 2px solid var(--text-primary);
  border-radius: 20px;
  padding: 12px 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.promise-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(52, 199, 89, 0.1),
    transparent
  );
  transition: var(--transition-fast);
}

.promise-tag:hover::before {
  left: 100%;
}

.promise-tag:hover {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 199, 89, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeInUp 0.8s ease-out;
}

.promises-list {
  margin-top: 80px;
}

.promise-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 32px 24px;
  border-bottom: 1px solid rgba(27, 136, 56, 0.1);
  transition: var(--transition-fast);
  border-radius: 16px;
  position: relative;
}

.promise-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
    background: linear-gradient(180deg, #f26522, #f26522);
  border-radius: 2px;
  transform: scaleY(0);
  transition: var(--transition-fast);
}

.promise-item:hover::before {
  transform: scaleY(1);
}

.promise-item:last-child {
  border-bottom: none;
}

.promise-item:hover {
  padding-left: 40px;
  background: rgba(27, 136, 56, 0.03);
  box-shadow: var(--shadow-light);
}

.promise-icon {
  flex-shrink: 0;
}

.icon-placeholder {
  width: 120px;
  height: 120px;
  border: 2px solid var(--light-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(52, 199, 89, 0.05) 100%
  );
  position: relative;
  transition: var(--transition-fast);
  color: var(--light-green);
  font-size: 48px;
  overflow: hidden;
}

.icon-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transition: var(--transition-fast);
}

.icon-placeholder:hover::before {
  left: 100%;
}

.icon-placeholder:hover {
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  color: var(--white);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(91, 180, 98, 0.3);
}

.promise-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.promise-content p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
  background: var(--black);
  color: var(--white);
  padding: 60px 0;
  scroll-margin-top: var(--header-height);
}

.footer-logo .logo-placeholder {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--white);
  background: url("./assets/images/white_logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 208px;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.footer-section-title h5 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 29px;
  letter-spacing: -0.3px;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
}

.footer-links-list li {
  margin-bottom: 15px;
}

.footer-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.204545px;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--primary-green);
  transform: translateX(5px);
}

/* Social Links */
.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Loading States */
.loading {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.fade-in-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Screens (1200px+) */
@media (max-width: 1200px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 var(--container-padding);
  }

  .hero-title {
    font-size: 48px;
    line-height: 56px;
  }

  .section-title {
    font-size: 36px;
    line-height: 48px;
  }

  .vision-content-layout {
    gap: 40px;
    padding: 40px 30px;
  }

  .diamond-section {
    flex: 0 0 300px;
  }

  .diamond-layout-container {
    width: 280px;
    height: 280px;
  }

  .diamond-card {
    width: 120px;
    height: 120px;
  }

  .vision-text-section {
    padding-left: 20px;
  }

  .background-numbers-section {
    width: 1072px;
    top: -280px;
  }

  .bg-number-large {
    font-size: 300px;
    line-height: 350px;
    opacity: 0.5;
    width: 155px;
  }

  .pillar-cards-row {
    margin-top: 200px;
    gap: 20px;
  }

  .pillar-card-wrapper {
    flex: 0 0 350px;
  }

  .pillar-card-final {
    width: 350px;
    height: 350px;
  }

  .pillar-title {
    font-size: 32px;
    line-height: 48px;
  }
}

/* Tablets (992px) */
@media (max-width: 992px) {
  .header .navbar {
    padding: 10px 0;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    margin-top: 10px;
    padding: 20px;
    position: relative;
    z-index: 1050;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 15px 20px !important;
    margin: 5px 0;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(52, 199, 89, 0.2);
    transform: translateX(5px);
  }

  /* Ensure mobile navbar closes properly */
  .navbar-collapse.collapsing {
    transition: height 0.3s ease;
  }

  /* Fix for mobile header positioning */
  .header {
    position: fixed;
    width: 100%;
    z-index: 1040;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 42px;
    white-space: normal;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .vision-title-container,
  .pillars-title-container {
    flex-direction: column;
    gap: 10px;
  }

  /* Show mobile carousel, hide desktop layout */
  .mobile-vision-carousel {
    display: block !important;
  }

  .vision-content-layout {
    display: none !important;
  }

  .diamond-section {
    flex: none;
    order: 1;
  }

  .vision-text-section {
    flex: none;
    order: 2;
    padding-left: 0;
  }

  .diamond-layout-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .background-numbers-section {
    display: none;
  }

  .pillar-cards-row {
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
    gap: 30px;
  }

  .pillar-card-wrapper {
    flex: none;
  }

  .pillar-card-final {
    width: 320px;
    height: 320px;
  }

  .promise-item {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .promises-container {
    padding: 50px 30px;
  }
}

/* Mobile Landscape (768px) */
@media (max-width: 768px) {
  :root {
    --container-padding: 15px;
  }

  .hero-bg {
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.32),
        rgba(0, 0, 0, 0.32)
      ),
      url("./assets/images/Mobile-Banner-3.jpg");
  }

  /* Mobile scroll margin adjustments */
  .vision-section,
  .pillars-section,
  .promises-section,
  .footer-section {
    scroll-margin-top: 80px;
  }

  .header .navbar {
    padding: 10px 0;
  }

  .logo-placeholder {
    font-size: 20px;
    width: 150px;
  }

  .custom-toggler {
    width: 40px;
    height: 40px;
  }

  .navbar-collapse {
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    margin-top: 15px;
    padding: 25px;
  }

  .hero-section {
    min-height: 500px;
    padding-top: 60px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .vision-main-description,
  .vision-sub-description,
  .pillars-description-gradient {
    font-size: 18px;
    line-height: 26px;
  }

  /* Mobile carousel adjustments */
  .mobile-carousel-container {
    padding: 25px 15px;
  }

  .mobile-slide-image {
    height: 180px;
  }

  .mobile-slide-content h3 {
    font-size: 18px;
  }

  .mobile-slide-content p {
    font-size: 13px;
  }

  .mobile-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .pillars-section {
    padding: 80px 0 60px 0;
  }

  .pillar-cards-row {
    margin-top: 40px;
    gap: 25px;
  }

  .pillar-card-final {
    width: 280px;
    height: 280px;
  }

  .pillar-card-overlay-top {
    height: 120px;
    padding: 12px;
  }

  .pillar-title {
    font-size: 24px;
    line-height: 32px;
  }

  .promise-tab {
    font-size: 16px;
    padding: 15px;
    height: auto;
    min-height: 80px;
  }

  .promises-description,
  .promise-content h4,
  .promise-content p {
    font-size: 18px;
    line-height: 26px;
  }

  .promises-container {
    padding: 40px 20px;
  }
}

/* Mobile Portrait (576px) */
@media (max-width: 576px) {
  /* Mobile scroll margin adjustments for smaller screens */
  .vision-section,
  .pillars-section,
  .promises-section,
  .footer-section {
    scroll-margin-top: 70px;
  }

  .header .navbar {
    padding: 8px 0;
  }

  .logo-placeholder {
    font-size: 18px;
    width: 120px;
  }

  .hero-section {
    padding-top: 50px;
    min-height: 500px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 30px;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 40px;
  }

  .hero-buttons {
    align-items: stretch;
  }

  .btn-download,
  .btn-primary-green {
    width: 100%;
    justify-content: center;
    min-width: auto;
  }

  /* Mobile carousel for small screens */
  .mobile-carousel-container {
    padding: 20px 10px;
  }

  .mobile-slide-image {
    height: 160px;
    margin-bottom: 15px;
  }

  .mobile-slide-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .mobile-slide-content p {
    font-size: 12px;
  }

  .mobile-nav-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .mobile-carousel-nav {
    margin-top: 20px;
  }

  .section-title {
    font-size: 24px;
    line-height: 30px;
  }

  .pillars-description-gradient {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 60px;
  }

  .pillar-cards-row {
    margin-top: 30px;
    gap: 20px;
  }

  .pillar-card-final {
    width: 250px;
    height: 250px;
  }

  .pillar-card-overlay-top {
    height: 100px;
    padding: 10px;
  }

  .pillar-title {
    font-size: 20px;
    line-height: 28px;
  }

  .promise-tab {
    padding: 12px;
    font-size: 14px;
    min-height: 70px;
  }

  .promise-tags {
    gap: 10px;
  }

  .promise-tag {
    font-size: 14px;
    padding: 8px 12px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
    padding: 12px 15px !important;
  }

  .icon-placeholder {
    width: 80px;
    height: 80px;
    font-size: 32px;
  }

  .promises-description,
  .promise-content h4,
  .promise-content p {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========================================
   CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-green);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gradient-primary {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--secondary-green) 100%
  );
}

.shadow-custom {
  box-shadow: var(--shadow-medium);
}

.transition-custom {
  transition: var(--transition-fast);
}

/* Enhanced scroll behavior for mobile */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 576px) {
  html {
    scroll-padding-top: 70px;
  }
}

/* Focus and Accessibility */
*:focus {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  /* Disable carousel auto-advance for reduced motion */
  .mobile-carousel-track {
    transition: none;
  }
}
.promises-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}


.promise-item {
  display: flex;
   align-items: center;
  gap: 1.5rem;
}

.promise-icon i {
  font-size: 60px;
  color: #F26522; /* Orange from image */
  min-width: 50px;
}


.promises-list1 i{
  color: #34C759;
}
.promise-item1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
    background: linear-gradient(180deg, #34C759, #34C759);
  border-radius: 2px;
  transform: scaleY(0);
  transition: var(--transition-fast);
}
.promises-list2 i{
  color: #00aeef;
}
.promise-item2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
    background: linear-gradient(180deg, #00aeef, #00aeef);
  border-radius: 2px;
  transform: scaleY(0);
  transition: var(--transition-fast);
}
