/* * main * */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9fafb;
  color: #111827;
}

.btn {
  background-color: #007bff;
  color: white;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #0056b3;
}

.bg-open { background-color: #ba2851ce; }


/* Responsive Design */
@media (max-width: 768px) {
}

/* hero */

.section {
  background-color: #ffffff;
  padding: 1rem 1rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Tablet and up */
@media (min-width: 768px) {
  .section-container {
    grid-template-columns: repeat(2, 1fr);
    padding: 4rem 2rem;
    gap: 4rem;
  }
}

.content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #1f2937;
  line-height: 1.3;
}

/* Medium screens */
@media (min-width: 640px) {
  .content h1 {
    font-size: 2.5rem;
  }
}

/* Large screens */
@media (min-width: 1024px) {
  .content h1 {
    font-size: 3rem;
  }
}

.highlight {
  color: #F7931E;
}

.content p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.7;
}

/* Slightly larger text on medium+ screens */
@media (min-width: 768px) {
  .content p {
    font-size: 1.125rem;
  }
}

.button-group {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Row layout for wider screens */
@media (min-width: 480px) {
  .button-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.btn-orange,
.btn-green {
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.btn-orange {
  background-color: #e47e09;
  color: white;
}

.btn-orange:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.btn-green {
  border: 2px solid #45970a;
  color: #45970a;
  background-color: transparent;
}

.btn-green:hover {
  background-color: #45970a;
  color: white;
  transform: scale(1.05);
}

.image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  position: relative;
  width: 100%;
  max-width: 400px;
  transition: transform 0.5s ease; 
}

/* Adjust image size for tablets */
@media (min-width: 768px) {
  .image-container img {
    max-width: 500px;
    position: absolute;
    right: -30px;
  }
}

.image-container img:hover {
  transform: scale(1.05);
}








.csr-section {
  position: relative;
  background: #ffffff;
  padding: 60px 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* Background decorative shapes */
.blur-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
}

.shape1 {
  background: #F7931E;
  width: 180px;
  height: 180px;
  top: 10px;
  left: -60px;
}

.shape2 {
  background: #92278F;
  width: 220px;
  height: 220px;
  bottom: 60px;
  right: -50px;
}

.shape3 {
  background: #00afef4f;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
}

/* Glass Card */
.glass-card {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  max-width: 960px;
  width: 100%;
  background: rgb(216 206 218 / 7%);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.glass-image {
  flex: 1;
  min-height: 280px;
}

.glass-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.glass-content {
  flex: 1;
  padding: 40px;
  background: rgba(255, 255, 255, 0.08);
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #F7931E;
  margin-bottom: 20px;
}

.glass-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Medium Screens (Tablet) */
@media (max-width: 992px) {
  .glass-card {
    flex-direction: column;
  }

  .glass-content {
    padding: 30px;
  }

  .glass-content h2 {
    font-size: 1.75rem;
  }

  .glass-content p {
    font-size: 0.95rem;
  }

  .shape1,
  .shape2 {
    transform: scale(0.8);
  }
  .shape3 {
    transform: scale(0.8);
  }
}

/* Small Screens (Mobile) */
@media (max-width: 600px) {
  .csr-section {
    padding: 40px 15px;
  }

  .glass-content {
    padding: 25px 20px;
  }

  .glass-content h2 {
    font-size: 1.5rem;
  }

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

  .glass-image {
    min-height: 200px;
  }

  .shape1,
  .shape2 {
    transform: scale(0.6);
  }
  .shape3 {
    transform: scale(0.6);
  }
}






















/* Impact Section */

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

.counter-box {
  width: 190px;
  background-color: #d1fae5;
  padding: 20px 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}


.number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #059669;
}

.label {
  font-size: 0.9rem;
  color: #555;
  margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .row {
    gap: 60px;
  }

}

 /* Partnership Section Styling */
.partnership-section {
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

/* Header Styling */
.section-header h3 {
  color: #0f172a;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-header p {
  color: #475569;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.2s;
}

/* Steps Animation */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  padding: 1rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

.step-1 {
  animation-delay: 0.4s;
}

.step-2 {
  animation-delay: 0.6s;
}

.step-3 {
  animation-delay: 0.8s;
}

.step:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Icon Styling */
.step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.step-icon:hover {
  transform: scale(1.15) rotate(10deg);
}

.step-1 .step-icon {
  background: linear-gradient(135deg, #8DC63F, #A7E453);
}
.step-2 .step-icon {
  background: linear-gradient(135deg, #00AEEF, #26D1FF);
}
.step-3 .step-icon {
  background: linear-gradient(135deg, #6406804c, #640680);
}

.step h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.step p {
  color: #6b7280;
  font-size: 0.95rem;
  padding: 0 1rem;
}

/* Button */
.consult-button {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1s;
}

.btn-consult {
  background: #e47e09;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-consult:hover {
  background: #e47e09;
  transform: scale(1.05);
}

/* Keyframes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Layout */
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
  }

  .step {
    width: 30%;
  }
}

/* Calculator Section */
.calculator-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #f9fafb, #eef2ff);
}

.calculator-header h2 {
  font-size: 2.2rem;
  background: linear-gradient(to right, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 0.5rem;
}

.calculator-header p {
  text-align: center;
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.calculator-box {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem 1rem;
  text-align: center;
}

.calculator-box .icon {
  font-size: 2rem;
  color: #6366f1;
  background: #eef2ff;
  border-radius: 50%;
  padding: 1rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.calculator-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.calculator-box .description {
  color: #374151;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.calculator-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.calculator-column h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #111827;
}

.calculator-column ul {
  list-style: none;
  padding: 0;
  color: #374151;
  font-size: 0.95rem;
}

.calculator-column ul li {
  margin-bottom: 0.5rem;
}

.launch-button {
  background: linear-gradient(to right, #3b82f6, #9333ea);
  color: white;
  padding: 0.85rem 2rem;
  font-weight: bold;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
  display: inline-block;
  text-align: center;
}

.launch-button:hover {
  transform: scale(1.05);
}

.calculator-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.card {
  flex: 1;
  padding: 2rem 1rem;
  border-radius: 1.25rem;
  color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 1rem 0 0.5rem;
}

.card p {
  font-size: 0.95rem;
  opacity: 0.95;
}

.icon-circle {
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: 50%;
  display: inline-block;
  font-size: 1.5rem;
}

.card.blue {
  background: linear-gradient(to right, #3b82f6, #60a5fa);
}

.card.green {
  background: linear-gradient(to right, #10b981, #34d399);
}

.card.purple {
  background: linear-gradient(to right, #8b5cf6, #a78bfa);
}

/* ============= MEDIA QUERIES ============= */
@media (min-width: 768px) {
  .calculator-header h2 {
    font-size: 2.5rem;
  }

  .calculator-details {
    flex-direction: row;
    justify-content: space-between;
  }

  .calculator-column {
    flex: 1;
    padding: 0 1rem;
  }

  .calculator-cards {
    flex-direction: row;
  }
}

@media (max-width: 480px) {
  .calculator-header h2 {
    font-size: 1.75rem;
  }

  .calculator-box h3 {
    font-size: 1.3rem;
  }

  .launch-button {
    width: 100%;
  }
}



/* testimonial */

.author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.avatar {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .slide {
    padding: 1.5rem 1rem;
  }

  .avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}


.carousel {
	/* width: 650px; */
	margin: 0 auto;
	padding-bottom: 10px;
}
.carousel .carousel-item {
	color: #999;
	font-size: 14px;
	text-align: center;
	overflow: hidden;
	min-height: 340px;
}
.carousel .carousel-item a {
	color: #eb7245;
}
.carousel .img-box {
	width: 145px;
	height: 145px;
	margin: 0 auto;
	border-radius: 50%;
}
.carousel .img-box img {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 50%;
}
.carousel .testimonial {	
	/* padding: 100px 80 80px; */
}
.carousel .overview {	
	text-align: center;
	padding-bottom: 5px;
}
.carousel .overview b {
	color: #333;
	font-size: 15px;
	text-transform: uppercase;
	display: block;	
	padding-bottom: 5px;
}
.carousel .star-rating i {
	font-size: 18px;
	color: #ffdc12;
}
.carousel-control-prev, .carousel-control-next {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #000000;
	text-shadow: none;
	top: 4px;
}
.carousel-control-prev i, .carousel-control-next i {
	font-size: 20px;
	margin-right: 2px;
}
.carousel-control-prev {
	left: auto;
	right: 40px;
}
.carousel-control-next i {
	margin-right: -2px;
}
.carousel .carousel-indicators {
	bottom: 15px;
}

.avatar {
  width: 100px; 
  height: 100px; 
  border-radius: 50%; 
  object-fit: cover; 
}

/* Basic Styling */
.programs-section {
  padding: 60px 0;
  background-color: white;
}

.header {
  text-align: center;
  margin-bottom: 40px;
}

.header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.header p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}

.program-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.program-image img {
  width: 100%;
  height: 15pc;
  object-fit: cover;
  max-height: 300px;
}


.program-info h3 {
  font-size: 15px;
  color: #333;
  text-align: center;
}

.program-info {
  /* border: 1px solid #ddd; */
  padding: 15px;
  max-width: 1500px;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sdg-tag {
  background-color: #28a746b7; /* green */
  color: white;
  padding: 5px 8px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 10px;
}


.program-info p {
  color: #666;
    font-size: 15px;
    margin-top: 10px;
    text-align: left;
    padding-left: 3px;
    padding-right: 0px;
}

.program-info span {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #999;
}

/* Responsive Design */
@media (min-width: 768px) {
  .program-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .program-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Footer */

.footer {
  background-color:darkslategray;
  color: rgb(255, 255, 255);
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: white;
}

.footer-logo img {
  /* height: 50px; */
  margin-bottom: 15px;
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.social-icons a {
  margin-right: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
}

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






@media (min-width: 1024px) {

  .glass-card {
    flex-direction: row;
  }

  .section-container {
    padding: 6rem 2rem;
  }

  .step {
    flex-direction: row;
  }

  .consult-button {
    margin-top: 3rem;
  }

  .btn-consult {
    font-size: 1.1rem;
  }
}
