body {
   font-family: Helvetica, Arial, sans-serif;
   color: rgb(51, 51, 51);
   background-color: rgb(248, 249, 250);
}

.logo img {
   height: 80px;
}

.paragraph-text {
   font-size: 20px;
   padding-bottom: 16px;
}

.hero {
   position: relative;
   color: rgb(255, 255, 255);
   text-align: center;
   padding: 100px 20px;
   overflow: hidden;
}
.con-box {
    width: 305px;
}
.w-70 {
   width: 70%;
   margin-left: auto;
   margin-right: auto;
}

.hero::before {
   content: "";
   background: url("../img/Main_building.jpg") center center / cover no-repeat;
   position: absolute;
   inset: 0;
}

.qr-center {
   text-align: center;
}

.qr-center img {
   width: 100%;
   max-width: 156px;
   border: 5px solid #fff;
   border-radius: 10px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
   .qr-section {
      flex-direction: column;
   }
}

.hero h1 {
   font-size: 3.5rem;
   font-weight: 800;
   position: relative;
   margin-top: 16px;
}

section {
   padding: 40px 20px;
}

.info-card {
   background: rgb(255, 255, 255);
   border: none;
   border-radius: 15px;
   padding: 30px;
   box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
   transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
   transform: translateY(-5px);
   box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 20px;
   cursor: pointer;
}

.info-card i {
   font-size: 2rem;
   color: rgb(7, 68, 32);
   margin-bottom: 10px;
}

.btn-register {
   display: inline-block;
   background: #009949;
   color: rgb(255, 255, 255);
   font-weight: 600;
   text-decoration: none;
   padding: 12px 36px;
   border-radius: 8px;
   transition: 0.3s;
   box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 10px;
}

.btn-register:hover {
   background: rgb(29, 160, 82);
   color: rgb(255, 255, 255);
   transform: translateY(-2px);
   box-shadow: rgba(0, 0, 0, 0.25) 0px 6px 14px;
}

img.img-fluid.rounded-3 {
   height: 330px;
   width: 100%;
}

.gradient-section {
   background: #e8e9f1;
}

/* Wrapper for each row */
.feature-item {
   position: relative;
   z-index: 2;
}

/* Icon hex box */
.feature-icon {
   width: 65px;
   height: 65px;
   display: flex;
   justify-content: center;
   align-items: center;
   background: #fff;
   /* background: url('./director.png'); */
   border-radius: 8px;
   /* border: 2px solid #dc3545; */
   /* Bootstrap danger color */
}

.square-box {
   width: 95px;
   height: 100px;
   background: #ffffff;
   border-radius: 8px;

   /* Bootstrap danger */
   display: flex;
   justify-content: center;
   align-items: center;
   box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.06);
}

/* Text block */
.feature-text p {
   font-size: 15px;
   color: #6c757d;
   width: 260px;
   font-style: italic;
}

.feature-icon.square-box img {
   border-radius: 14px;
}

/* Optional animation offsets */
.move-1 {
   transform: translateX(0);
}

.move-2 {
   transform: translateX(10px);
}

.move-3 {
   /* transform: translateX(20px); */
}

/* Hex box shape (if you need hexagonal shape) */
.hex-box {
   clip-path: polygon(25% 5%,
         75% 5%,
         100% 50%,
         75% 95%,
         25% 95%,
         0% 50%);
   background: #fff;
}

.event-details {
   text-align: left;
   /* ensures both lines align left */
}

.event-date,
.event-venue {
   font-size: 16px;
   color: #333;
   margin: 0;
}

/* Optional: make the whole block align left */
.d-flex.flex-column {
   align-items: flex-start !important;
}

.event-details {
   display: flex;
   flex-direction: column;
}

.info-cards {
   background: rgb(255, 255, 255);
   border: none;
   border-radius: 15px;
   box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 10px;
   transition: transform 0.3s, box-shadow 0.3s;
   display: flex;
   gap: 24px;
   align-items: center;
}

.info-cards i {
   font-size: 1.8rem;
   margin-bottom: 10px;
   display: block;
   padding: 20px;
   background: yellow;
}

.info-section {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

/* Event info card inside hero */
.event-card {
   display: flex;
   align-items: center;
   padding: 14px 18px;
   max-width: 650px;
   width: 100%;
   background: rgba(255, 255, 255, 0.9);
   border-radius: 12px;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
   gap: 20px;
}

.event-image .img-placeholder {
   width: 84px;
   height: 84px;
   background: linear-gradient(135deg, #f1f3f5, #e9ecef);
   border-radius: 10px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.event-details .event-date {
   font-size: 20px;
   color: #0b6b3b;
}

.event-details .event-venue {
   color: #4b4b4b;
   margin-top: 6px;
   font-size: 20px;
}

.event-cta .btn-register {
   padding: 10px 30px;
   border-radius: 8px;
   font-size: 1rem;
}

@media (max-width: 768px) {
   .event-card {
      flex-direction: column;
      text-align: center;
      gap: 12px;
      padding: 12px;
   }
   .event-details{
      text-align: center;
   }
   .event-cta {
      width: 100%;
   }

   .event-cta .btn-register {
      width: 100%;
      display: inline-block;
   }
}

.fw-bold {
   font-weight: 600 !important;
}

.info-container {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   gap: 30px;
}

.info-card {
   background-color: rgb(255 255 255 / 87%);
   border-radius: 10px;
   color: #363636;
   text-align: center;
   /* width: 250px; */
   /* height: 160px; */
   transition: transform 0.3s, box-shadow 0.3s;
}

/* .info-card:hover {
   transform: translateY(-5px);
   box-shadow: rgba(255, 255, 255, 0.2) 0px 8px 20px;
} */

.info-card i {
   font-size: 1.8rem;
   margin-bottom: 10px;
   display: block;
}

.text-primary {
   --bs-text-opacity: 1;
   color: rgb(2, 128, 53) !important;
}

section.dynamic {
   background: #d5e4ec;
}

.contact-section .btn {
   background-color: rgb(255, 255, 255);
   color: rgb(0, 40, 85);
   font-weight: 600;
   border-radius: 10px;
   padding: 12px 30px;
}

h2.section-title {
   color: rgb(7 143 63);
}

/* p.mb-5 {
   width: 600px;
} */

.contact-section .btn:hover {
   background-color: rgb(241, 241, 241);
}

.hex-box {
   width: 80px;
   height: 90px;
   clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
   background: rgb(255, 255, 255);
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
   transition: 0.3s;
   padding: 16px;
}

.hex-box i {
   font-size: 1.8rem;
}

.hex-box:hover {
   transform: translateY(-4px);
   box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 16px;
}

.impact-card img {
   border-radius: 8px;
   /*height: 200px;*/
}

.impact-section {
   color: rgb(0, 0, 0);
   position: relative;
   overflow: hidden;
}

.impact-card {
   background: rgb(255 255 255);
   border-radius: 10px;
   padding: 20px 20px;
   transition: 0.3s;
   backdrop-filter: blur(5px);
   height: 100%;
}

.impact-card:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-5px);
   cursor: pointer;
   box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 15px;
}

.impact-card h5 {
   letter-spacing: 0.5px;
   padding-top: 20px;
}

.impact-section p {
   color: #6c757d;
   font-size: 16px;
   line-height: 1.6;
}

@media (max-width: 768px) {
   .impact-section h2 {
      font-size: 1.8rem;
   }

   .impact-section p.fs-4 {
      font-size: 1.2rem;
   }
}

@media (max-width: 768px) {
   .hero h1 {
      font-size: 2.2rem;
   }

   section {
      padding: 60px 15px;
   }
}

.section-titles {
   font-weight: 700;
   letter-spacing: 1px;
   line-height: 1.2;
}

.subtitle {
   font-size: 1.3rem;
   letter-spacing: 0.5px;
}

/* experience Section */
.work-process-header {
   position: relative;
   margin-bottom: 60px;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.work-process-title {
   color: white;
   font-size: 2rem;
   font-weight: 700;
   margin: 0;
}

.join-experience {
   position: absolute;
   right: 40px;
   top: 50%;
   transform: translateY(-50%);
   color: white;
   font-size: 0.9rem;
   font-weight: 500;
}

.process-card {
   background: white;
   border-radius: 8px;
   padding: 30px 25px;
   position: relative;
   margin-bottom: 30px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 320px;
}

.process-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 10px 30px rgba(10, 30, 77, 0.15);
   cursor: pointer;
}

.process-card:hover h3,
.process-card:hover p {
   color: #ffffff;
   /* Deep navy for contrast */
}

.card-1:hover {
   background: url('../img/Workshop.png') center center / cover no-repeat;
   opacity: 0.5;
}

/* Light Blue */
.card-2:hover {
   background: url('../img/Plenary.png') center center / cover no-repeat;
   opacity: 0.5;
}

/* Light Green */
.card-3:hover {
   background: url('../img/Thematic.png') center center / cover no-repeat;
   opacity: 0.5;
}

/* Light Orange */
.card-4:hover {
   background: url('../img/Impact_Pavilion.png') center center / cover no-repeat;
   opacity: 0.5;
}

/* Light Purple */
.step-number {
   color: #ffffff;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 1.2rem;
   position: absolute;
   top: -25px;
   left: 25px;
   /* box-shadow: 0 4px 10px rgba(108, 43, 217, 0.3); */
}

.col_1 {
   background: #f99d27;
}

.col_2 {
   background: #00add9;
}

.col_3 {
   background: #5db845;
}

.col_4 {
   background: #007dbc;
}

.process-title {
   color: green;
   font-size: 18px;
   font-weight: 500;
   margin-top: 16px;
   margin-bottom: 16px;
}

.process-description {
   color: #6c757d;
   font-size: 0.95rem;
   line-height: 1.6;
   margin-bottom: 20px;
}

.process-icon {
   width: 60px;
   height: 60px;
   margin-top: 10px;
}

.process-icon svg {
   width: 100%;
   height: 100%;
   fill: var(--primary-purple);
   opacity: 0.8;
}

/* Decorative connector lines */
.connector-line {
   position: absolute;
   top: 50%;
   right: -30px;
   width: 60px;
   height: 2px;
   background: linear-gradient(to right, var(--dark-blue), transparent);
   transform: translateY(-50%);
   z-index: -1;
}

@media (max-width: 991px) {
   .connector-line {
      display: none;
   }

   .work-process-header {
      text-align: center;
   }

   .join-experience {
      position: static;
      transform: none;
      margin-top: 10px;
      display: block;
   }
}

@media (max-width: 576px) {
   .work-process-title {
      font-size: 1.5rem;
   }

   .process-card {
      min-height: auto;
   }
}

/* Experience Section */
.section-header {
   text-align: center;
   margin-bottom: 3rem;
}

.hub-card {
   position: relative;
   padding: 2rem;
   border-radius: 10px;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
   transition: all 0.3s ease;
   color: #000;
   height: 100%;
}

.hub-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}

.hub-card h5 {
   font-weight: 700;
   margin-bottom: 1rem;
}

.hub-card ul {
   padding-left: 1rem;
}

.hub-card ul li {
   margin-bottom: 0.5rem;
   font-size: 0.95rem;
}

/* Pin icons */
.pin {
   position: absolute;
   width: 40px;
   height: 40px;
   top: -20px;
   left: 20px;
   border-radius: 50%;
   background: radial-gradient(circle at 10px 10px, #fff, #0003);
   box-shadow: inset -2px -3px 5px rgba(0, 0, 0, 0.3);
   transform: rotate(-20deg);
}

.pin::after {
   content: '';
   position: absolute;
   width: 12px;
   height: 12px;
   background: #fff;
   border-radius: 50%;
   top: 8px;
   left: 8px;
   box-shadow: inset -2px -2px 3px rgba(0, 0, 0, 0.2);
}

.pin.red {
   background: radial-gradient(circle at 10px 10px, #8be5d5, #5bd6c0);
}

.pin.blue {
   background: radial-gradient(circle at 10px 10px, #f1c039, #e4a912);
}

.pin.green {
   background: radial-gradient(circle at 10px 10px, #cee4ff, #4384d2);
}

.pin.orange {
   background: radial-gradient(circle at 10px 10px, #ffd1b3, #cc5200);
}

/* Background gradients */
.bg-teal {
   background: linear-gradient(145deg, #2cb9a0, #6de1cc);
}

.bg-gold {
   background: linear-gradient(145deg, #f4c542, #e0a106);
}

.bg-blue {
   background: linear-gradient(145deg, #66a6ff, #3778c2);
}

.bg-orange {
   background: linear-gradient(145deg, #ffb26b, #f77b00);
}

.outcome-section {
   background-color: #e8e9f1;
}

.section-title h2 {
   font-size: 2.5rem;
   font-weight: 700;
   letter-spacing: 1px;
}

.section-title p {
   font-size: 1.2rem;
   color: #d1d1e0;
}

.outcome-card {
   background: rgb(255 255 255);
   border-radius: 16px;
   padding: 2rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   height: 200px;
}

.outcome-card:hover {
   transform: translateY(-5px);
   cursor: pointer;
   box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.outcome-card h5 {
   font-weight: 700;
   margin-bottom: 1rem;
   color: #078f3f;
}

.outcome-card p {
   color: #000000;
   font-size: 0.95rem;
   line-height: 1.6;
}

.impact-image {
   position: relative;
   border-radius: 20px;
   overflow: hidden;
   height: 500px;
}

.impact-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   text-align: center;
   color: #fff;
   padding: 2rem;
}

.impact-overlay h3 {
   font-size: 2.5rem;
   font-weight: 700;
   color: #ffda79;
}

.impact-overlay p {
   font-size: 1.1rem;
   color: #f5f5f5;
}

.impact-icon {
   font-size: 3rem;
   margin-bottom: 1rem;
   color: #ffda79;
}

@media (max-width: 992px) {
   .impact-overlay h3 {
      font-size: 2rem;
   }

   .impact-overlay p {
      font-size: 1rem;
   }
}

/* Legacy Section */
.legacy-section {
   background: #f8f9fa;
   padding: 60px 0;
}

.section-title {
   font-weight: 700;
   font-size: 28px;
   color: #0c8f63;
}

.legacy-card {
   background: #ffffff;
   border-radius: 12px;
   padding: 24px;
   text-align: center;
   height: 530px;
}

.img-box {
   background: #ffffff;
   border-radius: 12px;
   padding: 20px;
   margin-bottom: 1.2rem;
}

.legacy-text {
   font-size: 18px;
   line-height: 1.6;
   text-align: left;
   color: #6c757d;
}

/* industry-section */

.industry-section {
   padding: 80px 0;
   background: #e8e9f1;
}

.industry-list button {
   width: 100%;
   text-align: left;
   padding: 12px 16px;
   border: 1px solid #ddd;
   background-color: #fff;
   color: #333;
   font-weight: 500;
   transition: all 0.3s ease;
}

.industry-list button:hover,
.industry-list button.active {
   background-color: #5db845;
   color: #fff;
}


.industry-img img {
   width: 100%;
   border-radius: 4px;
}

.industry-content h4 {
   font-weight: 700;
   margin-bottom: 10px;
}

.industry-content p {
   color: #666;
   margin-bottom: 15px;
}

.check-list li {
   list-style: none;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   color: #333;
}

ul.check-list {
   padding: 0px;
}

.check-list li::before {
   content: '\2713';
   color: #5db845;
   font-weight: bold;
   margin-right: 10px;
}

/* industry-section */

.qr-widget-btn {
   position: fixed;
   bottom: 25px;
   right: 25px;
   width: 60px;
   background: linear-gradient(180deg, #009949 0%, #6EBD44 100%);
   height: 60px;
   border-radius: 50%;
   color: #fff;
   font-size: 28px;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
   cursor: pointer;
   z-index: 1000;
   transition: all 0.3s ease;
}

.qr-widget-btn:hover {
   background-color: #0a9c48;
   transform: scale(1.05);
}

/* QR Widget Card */
.qr-widget-card {
   position: fixed;
   bottom: 100px;
   right: 25px;
   width: 300px;
   background-color: #fff;
   border-radius: 15px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
   overflow: hidden;
   z-index: 999;
   display: none;
   animation: fadeIn 0.3s ease-in-out;
}

.qr-header {
   background-color: #0f9e49;
   color: #fff;
   padding: 12px 16px;
   font-weight: 600;
   font-size: 16px;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.qr-header .close-btn {
   background: none;
   border: none;
   color: #fff;
   font-size: 18px;
   cursor: pointer;
}

.qr-body {
   padding: 20px;
   text-align: center;
}

.qr-body img {
   width: 150px;
   height: 150px;
   object-fit: contain;
   border: 3px solid #074420;
   border-radius: 10px;
}

.qr-body p {
   margin-top: 10px;
   font-size: 14px;
   color: #555;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(10px);
   }

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


/* ===========
OutCome Section 
=============== */

.blog-card {
   border-radius: 20px;
   overflow: hidden;
   background: #fff;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
   transition: .3s;
       height: 450px;
}

h5.fw-bold{
   font-size: 18px;
   color: #119b49;
}
.blog-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.blog-img {
   height: 180px;
   object-fit: cover;
   width: 100%;
}

.category-badge {
   display: inline-block;
   padding: 4px 12px;
   border-radius: 20px;
   font-size: 12px;
   font-weight: 600;
   color: #fff;
   margin-bottom: 10px;
}

.user-info img {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   margin-right: 10px;
}


/* ===========
End Of OutCome Section 
=============== */


/* ===========
Changes
=============== */

.subheading{
   font-size: 18px;
   color: #6c757d;
}
.heroSubHeading {
  font-size: 22px;
}

.info-card p {
   font-weight: bold;
   font-size: 17px;
   color: #363636;
   line-height: 1.2;
}

.legacyBoxBackground {
   background-color: #291973;
}

.subscribeButton {
   background-color: rgb(7 143 63);
   color: white;
}

.bg-section {
   background-image: url('./earthBackground.png');
   background-size: cover;
   background-position: left center;
   background-repeat: no-repeat;
   min-height: 350px;
   border-radius: 10px;
   display: flex;
   align-items: center;
}

/* Quote styling */
.quote-box {
   color: white;
   padding: 20px 30px;
   text-align: left;
}

.quote-item {
   margin-bottom: 15px;
   padding-left: 20px;
   border-left: 3px solid rgba(255, 255, 255, 0.7);
}

.quote-item p {
   margin: 0;
   font-size: 18px;
   font-weight: 500;
   line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
   .bg-section {
      background-position: center;
      text-align: center;
   }

   .quote-item {
      border-left: none;
      border-bottom: 2px solid rgba(255, 255, 255, 0.7);
      padding-left: 0;
      padding-bottom: 10px;
   }
}

.puzzle-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0;
   max-width: 900px;
   margin: auto;
}

.puzzle-block {
   padding: 40px;
   position: relative;
   color: #000;
   font-family: Arial, sans-serif;
}

.image-box {
   height: 100px;
   width: 100px;
   padding: 10px;
}

/* COLORS */
.b1 {
   background: #62B5E5;
}

.b2 {
   background: #F5A5C4;
}

.b3 {
   background: #F7D276;
}

.b4 {
   background: #F6A98A;
}

/* Number Circle */
.num-circle {
   width: 45px;
   height: 45px;
   background: #000;
   color: #fff;
   border-radius: 50%;
   display: flex;
   justify-content: center;
   align-items: center;
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 20px;
}

/* --------------------------
   PUZZLE CONNECTORS
--------------------------- */

/* TOP TAB */
.b1::before,
.b2::before {
   content: "";
   position: absolute;
   top: -25px;
   left: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateX(-50%);
}

/* BOTTOM TAB */
.b3::after,
.b4::after {
   content: "";
   position: absolute;
   bottom: -25px;
   left: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateX(-50%);
}

/* LEFT TAB */
.b1::after {
   content: "";
   position: absolute;
   left: -25px;
   top: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateY(-50%);
}

/* RIGHT TAB */
.b2::after {
   content: "";
   position: absolute;
   right: -25px;
   top: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateY(-50%);
}

/* LEFT TAB (Bottom Row) */
.b3::before {
   content: "";
   position: absolute;
   left: -25px;
   top: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateY(-50%);
}

/* RIGHT TAB (Bottom Row) */
.b4::before {
   content: "";
   position: absolute;
   right: -25px;
   top: 50%;
   width: 60px;
   height: 60px;
   background: inherit;
   border-radius: 50%;
   transform: translateY(-50%);
}

/* Mobile responsive: stack blocks, remove puzzle tabs */
@media (max-width: 768px) {
   .puzzle-grid {
      grid-template-columns: 1fr;
   }

   .puzzle-block::before,
   .puzzle-block::after {
      display: none;
   }
}

.goals-section {
   /* background-color: #0f4a3f; */
   /* background-color: #107438; */
   background: url('../img/bg.jpg') center center / cover no-repeat;
   border-radius: 12px;
   padding: 38px 36px;
   color: #fff;
   position: relative;
   overflow: hidden;
}

a.btn.btn-know:hover {
   background-color: #5dbb46;
   color: #fff;
}

.goals-content h2 {
   font-size: 1.9rem;
   font-weight: 600;
}

.images-box {
   padding: 10px;
   background-color: #ffffff29;
   border-radius: 8px;
   margin-bottom: 26px;
}

.goals-content h2 em {
   font-style: italic;
   font-weight: 400;
   font-size: 24px;
}

.goals-content p {
   font-size: 16px;
   color: rgba(255, 255, 255, 0.85);
}

.btn-know {
   background: #fff;
   color: #0f4a3f;
   border-radius: 50px;
   padding: 10px 22px;
   font-weight: 500;
   font-size: 0.9rem;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.3s ease;
}

.btn-know:hover {
   background: #d5f3ee;
   transform: scale(1.03);
   cursor: pointer;
}

.goals-image {
   position: relative;
}

.goals-image img {
   width: 50%;
    max-width: 380px;
    position: relative;
    z-index: 2;
        bottom: -63px;
    right: -138px;
}


.goals-image img:nth-child(2) {
   position: absolute;
   top: 30px;
   left: 60px;
   z-index: 1;
   opacity: 0.9;
}

@media (max-width: 992px) {
   .goals-section {
      text-align: center;
   }

   .goals-image {
      margin-top: 30px;
   }

   .goals-image img:nth-child(2) {
      left: 40%;
      transform: translateX(-50%);
   }
}



/* Mobile Responsive Updates */

@media (max-width: 1200px) {
   .hero h1 {
      font-size: 2.8rem;
   }

   .paragraph-text {
      font-size: 18px;
   }

   .work-process-header {
      flex-direction: column;
      text-align: center;
   }

   .join-experience {
      position: static;
      transform: none;
      margin-top: 15px;
   }
}

@media (max-width: 992px) {
   .hero h1 {
      font-size: 2.2rem;
   }

   .paragraph-text {
      font-size: 16px;
   }

   .info-container {
      flex-direction: column;
      gap: 20px;
   }

   .info-card {
      width: 100%;
      max-width: 300px;
   }

   .gradient-section .row {
      flex-direction: column;
   }

   .hex-box {
      width: 60px;
      height: 70px;
   }

   .process-card {
      height: auto;
      /* min-height: 300px; */
   }

   .industry-section .row {
      flex-direction: column;
   }

   .industry-list {
      flex-direction: row !important;
      flex-wrap: wrap;
   }

   .industry-list button {
      flex: 1;
      min-width: 150px;
      font-size: 14px;
   }

   .impact-image {
      height: 300px;
   }

   .impact-overlay {
      flex-direction: row;
      justify-content: space-around;
      flex-wrap: wrap;
   }

   .impact-overlay h3 {
      font-size: 1.8rem;
   }

   .impact-overlay p {
      font-size: 0.95rem;
   }

   .impact-icon {
      font-size: 2.5rem;
   }

   .outcome-card {
      height: auto;
      min-height: 150px;
   }

   .legacy-point {
      flex-direction: column;
      text-align: center;
   }

   .legacy-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
   }

   .legacy-content h3 {
      font-size: 1.5rem;
   }
}

@media (max-width: 768px) {
   body {
      background-color: rgb(248, 249, 250);
   }

   section {
      padding: 30px 15px;
   }

   .hero {
      padding: 40px 15px;
   }

   .hero h1 {
      font-size: 1.8rem;
      margin-top: 10px;
   }

   .paragraph-text {
      font-size: 14px;
   }

   .logo img {
      height: 60px;
   }

   .info-card {
      width: 100%;
      height: auto;
      padding: 20px;
      min-height: 140px;
   }

   .info-card i {
      font-size: 1.5rem;
   }

   .btn-register {
      padding: 10px 30px;
      font-size: 14px;
   }

   p.mb-5 {
      width: 100%;
      margin-bottom: 1rem;
   }

   h2.section-title {
      font-size: 1.8rem;
      text-align: center;
   }

   .hex-box {
      width: 50px;
      height: 60px;
      padding: 12px;
   }

   .hex-box i {
      font-size: 1.5rem;
   }

   .d-flex.align-items-center.gap-3 {
      flex-direction: column;
      text-align: center;
   }

   .hex-box {
      margin: 0 auto;
   }

   .impact-card {
      padding: 15px;
   }

   .impact-card h5 {
      font-size: 1rem;
      padding-top: 10px;
   }

   .impact-card p {
      font-size: 0.85rem;
   }

   .impact-card img {
      /*height: 120px;*/
   }

   .process-card {
      padding: 20px 15px;
      height: auto;
      margin-bottom: 20px;
   }

   .process-title {
      font-size: 16px;
   }

   .process-description {
      font-size: 0.9rem;
   }

   .connector-line {
      display: none !important;
   }

   .work-process-header {
      margin-bottom: 30px;
   }

   .work-process-header h2 {
      font-size: 1.6rem;
   }

   .industry-section {
      padding: 30px 0;
   }

   .industry-list {
      flex-direction: column !important;
   }

   .industry-list button {
      width: 100%;
      text-align: center;
      padding: 10px 15px;
      font-size: 13px;
      margin-bottom: 8px;
   }

   .industry-img {
      margin: 20px 0;
   }

   .industry-content h4 {
      font-size: 1.1rem;
   }

   .check-list li {
      font-size: 0.9rem;
   }

   .check-list li::before {
      margin-right: 8px;
   }

   .impact-image {
      height: 250px;
   }

   .impact-overlay {
      padding: 1rem;
   }

   .impact-overlay h3 {
      font-size: 1.5rem;
   }

   .impact-overlay p {
      font-size: 0.85rem;
   }

   .impact-icon {
      font-size: 2rem;
      margin-bottom: 0.5rem;
   }

   .outcome-section {
      padding: 30px 15px;
   }

   .outcome-card {
      padding: 1.5rem;
      height: auto;
      min-height: 120px;
      margin-bottom: 15px;
   }

   .outcome-card h5 {
      font-size: 1rem;
      margin-bottom: 0.5rem;
   }

   .outcome-card p {
      font-size: 0.85rem;
   }

   .legacy-section {
      padding: 2rem 0;
   }

   .legacy-img {
      margin-bottom: 2rem;
   }

   .legacy-img img {
      border-radius: 8px;
      max-height: 250px;
   }

   .legacy-content h3 {
      font-size: 1.3rem;
      margin-bottom: 1rem;
   }

   .legacy-point {
      margin-bottom: 1rem;
      gap: 0.75rem;
   }

   .legacy-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
   }

   .legacy-icon img {
      max-height: 30px;
   }

   .legacy-content p {
      font-size: 0.9rem;
   }

   .qr-widget-btn {
      width: 50px;
      height: 50px;
      font-size: 24px;
      bottom: 20px;
      right: 20px;
   }

   .qr-widget-card {
      width: calc(100% - 40px);
      bottom: 80px;
      right: 20px;
      left: 20px;
   }

   img.img-fluid.rounded-3 {
      height: auto;
      max-height: 250px;
   }
}

@media (max-width: 576px) {
   section {
      padding: 20px 12px;
   }

   .col-lg-8.bg {
      display: flex;
      flex-direction: column;
      justify-content: center;
   }

   .d-flex.align-items-center.gap-3.wow.animate__fadeInRight.move-2 {
      padding: 0px;
   }
.move-2 {
    padding-left: 0px;
}
   .move-2,
   .move-1,
   .move-3,
   .move-4 {
      transform: translateX(0px);
   }

   .d-flex.align-items-center.gap-3.wow.animate__fadeInRight.move-2 {
      padding-left: 0px;
   }

   .w-70 {
      width: 100% !important;
   }

   .hero {
      padding: 30px 12px;
   }

   .hero h1 {
      font-size: 32px;
      margin-top: 8px;
   }

   .paragraph-text {
      font-size: 16px;
   }

   .logo img {
      height: 50px;
   }

   .info-section {
      gap: 15px;
   }

   .info-container {
      flex-direction: column;
      gap: 15px;
      margin: 0 !important;
   }

   .info-card {
      width: 100%;
      padding: 15px;
      height: auto;
      min-height: 120px;
   }

   .info-card i {
      font-size: 1.2rem;
   }

   .info-card p {
      font-size: 0.9rem;
   }

   .btn-register {
      padding: 8px 24px;
      font-size: 13px;
   }

   h2.section-title {
   font-size: 1.2rem;
   }

   .gradient-section {
      padding: 20px 12px;
   }

   .hex-box {
      width: 80px;
      height: 92px;
      padding: 16px;
   }

   .hex-box i {
      font-size: 1.3rem;
   }

   .d-flex.flex-column.gap-4 {
      gap: 1rem !important;
   }

   .d-flex.align-items-center.gap-3 {
      gap: 1rem !important;
   }
.d-flex.flex-column {
    align-items: center !important;
}
   h5.fw-bold {
      font-size: 18px;
      color: #119b49;
   }

   .impact-card {
      padding: 16px;
      margin-bottom: 15px;
   }

   .impact-card img {
      height: 200px;
      width: 100%;
   }

   .impact-card h5 {
      font-size: 20px;
      padding-top: 16px;
   }

   .impact-card p {
      font-size: 16px;
      line-height: 1.4;
   }

   .row.g-4 {
      --bs-gutter-x: 0.75rem;
      --bs-gutter-y: 0.75rem;
   }

   .process-card {
      padding: 20px 20px;
      margin-bottom: 15px;
      height: 220px;
   }

   .row.justify-content-center.mt-5 {
      gap: 30px
   }

   .step-number {
      width: 40px;
      height: 40px;
      font-size: 1rem;
      top: -20px;
      left: 15px;
   }

   .process-title {
      font-size: 20px;
      margin-top: 12px;
      margin-bottom: 10px;
   }

   .process-description {
      font-size: 16px;
      line-height: 1.5;
   }

   .industry-section {
      padding: 20px 0;
   }

   .industry-list button {
      padding: 8px 12px;
      font-size: 14px;
      margin-bottom: 6px;
   }

   .industry-img {
      margin: 15px 0;
   }

   .industry-img img {
      border-radius: 3px;
   }

   .industry-content h4 {
      font-size: 20px;
      margin-bottom: 8px;
   }

   .check-list li {
      font-size: 16px;
      margin-bottom: 6px;
   }

   .check-list li::before {
      margin-right: 6px;
      font-size: 0.9rem;
   }

   .impact-image {
      height: 200px;
   }

   .impact-overlay {
      padding: 1rem 0.75rem;
      flex-direction: column;
   }

   .impact-overlay h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
   }

   .impact-overlay p {
      font-size: 0.8rem;
   }

   .impact-icon {
      font-size: 1.8rem;
      margin-bottom: 0.3rem;
   }

   .outcome-section {
      padding: 20px 12px;
   }

   .outcome-card {
      padding: 1rem;
      min-height: auto;
      margin-bottom: 12px;
   }

   .outcome-card h5 {
      font-size: 20px;
      margin-bottom: 0.5rem;
   }

   .outcome-card p {
      font-size: 16px;
      line-height: 1.4;
   }

   .legacy-section {
      padding: 1.5rem 0;
   }

   .legacy-img {
      margin-bottom: 1.5rem;
   }

   .legacy-img img {
      max-height: 200px;
   }

   .legacy-content h3 {
      font-size: 1.1rem;
      margin-bottom: 0.75rem;
   }

   .legacy-content p {
      font-size: 0.85rem;
      text-align: left;
      align-items: center;
   }

   .legacy-point {
      margin-bottom: 0.75rem;
      gap: 16px;
      display: flex;
      flex-direction: row;
   }

   .legacy-icon {
      width: 80px;
      height: 80px;
      min-width: 45px;
      font-size: 1.2rem;
   }

   .legacy-icon img {
      max-height: 84px;
   }

   .qr-widget-btn {
      width: 45px;
      height: 45px;
      font-size: 20px;
      bottom: 15px;
      right: 15px;
   }

   .qr-widget-card {
      width: calc(100% - 30px);
      bottom: 70px;
      right: 15px;
      left: 15px;
      font-size: 14px;
   }

   .qr-header {
      padding: 10px 12px;
      font-size: 14px;
   }

   .qr-body {
      padding: 15px;
   }

   .qr-body img {
      width: 120px;
      height: 120px;
   }

   .qr-body p {
      font-size: 12px;
      margin-top: 8px;
   }
}

@media (max-width: 360px) {
   h2.section-title {
      font-size: 1.2rem;
   }

   .hero h1 {
      font-size: 1.2rem;
   }

   .paragraph-text {
      font-size: 11px;
   }

   .btn-register {
      padding: 8px 20px;
      font-size: 12px;
   }

   .process-title {
      font-size: 14px;
   }

   .process-description {
      font-size: 0.8rem;
   }

   .industry-list button {
      font-size: 11px;
      padding: 8px 10px;
   }

   .outcome-card {
      padding: 0.75rem;
   }

   .outcome-card h5 {
      font-size: 0.9rem;
   }

   .outcome-card p {
      font-size: 0.75rem;
   }
}


/* Philanthropy Section */
.testimonial-container {
   display: flex;
   justify-content: center;
   gap: 40px;
   flex-wrap: wrap;
   background: #fff;
}

.testimonial-card {
   position: relative;
}

.testimonial-bubble {
   border-radius: 50%;
   width: 300px;
   height: 300px;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 30px;
   margin-left: 60px;
   position: relative;
   background: linear-gradient(180deg, #009949 0%, #6EBD44 100%);
}

.testimonial-text {
   color: white;
   font-size: 14px;
   line-height: 1.6;
   text-align: left;
   position: relative;
   padding-left: 46px;
}

.quote-mark {
   font-size: 40px;
   font-weight: bold;
   line-height: 0.5;
   margin-bottom: 10px;
   display: block;
}

.profile-image {
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 120px;
   height: 120px;
   border-radius: 50%;
   border: 4px solid white;
   overflow: hidden;
   background-color: #ddd;
   z-index: 10;
}

.btn:hover {
   color: #fff;
   background-color: #198754;
   border-color: var(--bs-btn-hover-border-color);
}

.bg {
   display: flex;
   align-items: center;
}

.d-flex.align-items-center.gap-3.wow.animate__fadeInRight.move-2 {
   /*padding-left: 25px;*/
}

.bg-img {
   height: 250px;
}

.bg h5 {
   font-size: 18px;
}

.bg p {
   font-size: 14px;
}

.profile-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

@media (max-width: 768px) {
   .testimonial-container {
      gap: 60px;
   }
}


.event-head {
   position: relative;
   padding-left: 18px;
   /* space for the bar */
   height: 40px;
   align-items: center;
   display: flex;
   color: #179d4e;
}

.event-head::before {
   content: "";
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 5px;
   height: 100%;
   background: #119b49;
   border-radius: 4px;
}

.event-para {
   padding: 0px 15px 0px 15px;
   font-size: 17px;
}
/* End of stylesheet */