/* ST Planet gives you many reasons to plant start */

.main-heading {
  font-size: 2.6rem;
  line-height: 1.25;
  /* text-align: right;*/
}

.heading-with-globe {
  position: relative;
}

.globe-inline {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  /*border: 3px solid #166b47;*/

  background-image: url("../assets/home/world-map.svg");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: 0 0;

  animation: rotateMap 18s linear infinite;
}

/* animation */
@keyframes rotateMap {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -100% 0;
  }
}

/* Responsive fixes */
@media (max-width: 768px) {
  .main-heading {
    font-size: 2rem;
    text-align: center;
  }

  .globe-inline {
    width: 90px;
    height: 90px;
    margin-top: 10px;
  }
}
/* Marquee */
.marquee {
  position: relative;
  overflow: hidden;
  background: white;
  border-top: 1px solid #e9efe9;
  border-bottom: 1px solid #e9efe9;
  height: 70px;
  display: flex;
  align-items: center;
}

.marquee-inner {
  display: inline-flex;
  gap: 80px;
  white-space: nowrap;
  animation: marqueeScroll 18s linear infinite;
}

.marquee-inner span {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 6px;
  color: rgba(54, 70, 77, 0.18);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .marquee-inner span {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

/* Footer Fix */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column !important;
    gap: 40px;
    text-align: center;
  }

  .footer-logo-block {
    flex-direction: column !important;
    align-items: center !important;
  }

  .footer-social {
    justify-content: center !important;
  }
}

/* Hero Carousel Text */
@media (max-width: 480px) {
  .hero-title {
    font-size: 22px !important;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
  }
}


/* Impact BG responsive */
.impact-bg {
  background-image: url("../assets/home/impact-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

@media (max-width: 768px) {
  .impact-bg {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .impact-bg {
    padding: 40px 0 !important;
    background-position: top;
  }
}


@keyframes rotateY {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}


/* --- Colors & Typography (match figma look & feel) --- */
:root {
  --green-900: #0b5a3a;
  /* deep hero green */
  --green-700: #167a4b;
  --accent: #1f9a5b;
  --muted: #7b8f84;
  --soft-bg: #f6fbf7;
  --cta: #d6f3df;
  --rounded: 18px;
  --max-width: 1100px;
  --heading-font: 'Helvetica Neue', Arial, sans-serif;

}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'DM Sans', sans-serif;
  background: #ffffff;
  overflow-x: hidden !important;
}

/* --- Nav --- */
/* Background color */
.bg-green {
  background: #0A6847;
}

/* Logo size */
.logo-img {
  height: 60px;
}

/* Navbar links */
.navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  font-size: 16px;
  margin: 0 10px;
}

.navbar .nav-link:hover {
  opacity: 0.8;
}

/* Donate button style */
.donate-btn {
  background-color: #FFE57E;
  /* light yellow */
  border-radius: 40px;
  padding: 8px 20px;
  color: #000;
  /* green text */
  font-weight: 600;
}

.donate-icon {
  width: 22px;
  /* adjust size */
  height: auto;
}


/* --- Nav --- */
.btn-donate {
  background: #FFECAA;
  color: #0A6847;
  font-size: 16px;
  font-weight: 700;
  border-radius: 36px
}

.btn-donate:hover {
  background: #FFECAA;
  color: #0A6847;
  font-weight: 700;
  border-radius: 36px
}

/* --- Hero carousel full-bleed --- */
.hero-carousel .carousel-item {
  height: 72vh;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}

/* --- Marquee --- */
.marquee {
  background: white;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #e9efe9;
  border-bottom: 1px solid #e9efe9
}

.marquee p {
  display: inline-block;
  padding: 14px 0;
  font-weight: 700;
  color: rgba(20, 80, 55, 0.16);
  font-size: 48px;
  letter-spacing: 6px
}

/* --- Section headings --- */
.section-heading {
  font-size: clamp(20px, 3vw, 36px);
  color: #0A6847;
  font-weight: 800
}

.section-sub {
  color: var(--muted);
  margin-bottom: 22px
}

/* --- Cards for "What we do" and "How we use Tech" --- */
.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(8, 32, 20, 0.06);
  background: white
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover
}

.service-card-body {
  padding: 18px
}

.service-card:hover {
  transform: translateY(-8px) scale(1.01);
  transition: all .35s ease
}

.service-zoom {
  transition: transform .35s ease
}

.service-zoom:hover {
  transform: scale(1.06)
}

/* small leaf decoration near headings */
.leaf-deco {
  width: 64px;
  opacity: 0.85;
  margin-right: 12px
}

/* --- Support Our Work hero --- */
.donation-hero {
  min-height: 95vh;
  background:
    linear-gradient(to right, rgba(3, 62, 40, 0.95) 34%, rgba(1, 60, 32, 0.7) 40%, rgba(1, 60, 32, 0) 70%),
    url("../assets/home/your-image.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Dashed rounded box */
.hero-box {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  backdrop-filter: blur(1px);
}

/* Donate button */
.donate-btn {
  background: #FFECAA;
  border-radius: 30px;
  font-weight: 600;
  color: #0A6847;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
}

.donate-btn:hover {
  background: #FFECAA;
  transform: translateY(-2px);
}

/* Responsive fixes */
@media (max-width: 767px) {
  .donation-hero {
    min-height: 70vh;
    background-size: contain;
    /* make image smaller */
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #013c20;
    /* fallback background */
    padding: 50px 0;
  }

  .hero-box {
    padding: 25px !important;
  }
}

/* MAIN FOOTER */
.st-footer {
  background: #01180D;
  /* Dark green from screenshot */
  padding: 60px 0 40px;
  font-family: "Poppins", sans-serif;
  color: #d4d6d5;
}

.footer-inner {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* TITLES */
.footer-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
  color: #d4d6d5;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* LOGO & ORG INFO */
.footer-logo-block {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.footer-logo {
  width: 90px;
}

.footer-org-info,
.footer-contact {
  font-size: 14px;
  line-height: 1.5;
}
.footer-address span {
  display: block;      /* 2 fixed lines */
  white-space: nowrap; /* line ke andar break nahi hoga */
}
.footer-address span,
.footer-contact-lines span {
  display: block;      /* har span apni line */
  white-space: nowrap; /* line ke andar break nahi */
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.footer-social a {
  color: #d4d6d5;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffffff;
}

/* DIVIDER */
.footer-divider {
  border-top: 1px solid #37594f;
  margin: 25px 0;
}

/* NOTES */
.footer-note {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.7;
}


/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .footer-inner {
    flex-direction: column;
    gap: 50px;
  }

  .footer-logo-block {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-social {
    flex-direction: column;
    gap: 12px;
  }

  .footer-logo {
    width: 70px;
  }


}
@media (max-width: 768px) {
  .footer-right {
    text-align: center;
  }

  .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;   /* icons + text center */
  }

  .footer-social a {
    justify-content: center;
  }
}

/* responsive tweaks */
@media (max-width:768px) {
  .hero-carousel .carousel-item {
    height: 56vh
  }

  .marquee p {
    font-size: 28px
  }
}

/* minor utility */
.rounded-soft {
  border-radius: 14px
}


@keyframes spin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.contact-section {
  border-radius: 25px;
  padding: 220px 20px 60px;
  position: relative;
  overflow: hidden;

  /* MAIN Background = Gradient + Top Leaf Image */
  background:
    url("../assets/home/leaves-top.png") top center no-repeat,
    linear-gradient(to bottom, #FBFCFE 0%, #FBFCFE 60%, #FBFCFE 100%);
  background-size: contain, cover;
  /* keeps leaf image proper */
}

.form-box {
  background: #fff;
  border: 2px solid #bcd5c0;
  border-radius: 15px;
  padding: 20px;
}

.form-control,
.form-select {
  height: 50px;
  border-radius: 10px;
}

.submit-btn {
  background: #0c6b42;
  color: #fff;
  border-radius: 10px;
  padding: 12px 30px;
  border: none;
  width: 100%;
}

@media (min-width: 992px) {
  .submit-btn {
    width: auto;
  }
}


/*About Us start css start*/

 
/* Typography */
.who-title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f6b4a;
}

.lead-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.who-we-are-section p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
}

/* Force equal height */
.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image */
.who-image-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.who-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom text */
.who-bottom-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #7a7a7a;
  max-width: 95%;
}

/* Responsive */
@media (max-width: 991px) {
  .who-title {
    font-size: 2.2rem;
  }
}
 
/* Equal height for WHO WE ARE section */
/*.who-section {
  display: flex;
  align-items: stretch;
}

.who,
.who-img-wrapper {
  display: flex;
  flex-direction: column;
}

.who-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
}*/

/* Disable equal-height on mobile */
/*@media (max-width: 991px) {
  .who-section {
    display: block;
  }

  .who-img-wrapper img {
    height: auto;
  }
}*/

/* HERO */
/*.aboutus_hero {
  padding: 48px 0 36px;
  position: relative;
}

.aboutus_hero .aboutus_hero-title {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  
  line-height: 0.95;
  font-weight: 800;
  color: #dfe7ef;

  margin: 0 0 24px;
}*/

/* WHO WE ARE */
/*.who h3 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.who p {
  color: #4a5a5a;
  margin-bottom: .9rem;
}*/

/* Mission / Vision */
.info-card {
  background: #f4f7fb;
  border-radius: 14px;
  padding: 39px;
  min-height: 130px;
}

.info-card h5 {
  font-weight: 700;
  margin-bottom: .6rem;
}

/* WHY SUPPORT */
.why-section h4 {
  font-weight: 700;
}

.feature-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: #253237;
  margin-bottom: .6rem;
}

.rounded-lg {
  border-radius: 16px;
  overflow: hidden;
}

  /*FORM SECTION start*/
   
.interest-section,
.st-form-section{
  background:#EFF2F6;
}

.st-form-section{
  padding:70px 0;
}

/* DOTTED LINE */
.st-divider{
  max-width:1140px;
  margin:0 auto 25px;
  border-top:1px dashed #d6dde4;
}

/* HEADING */
.st-form-heading{
  font-size:22px;
  font-weight:400;
  color:#5f6f76;
  margin-bottom:40px;
}

/* LABEL */
.st-label{
  font-size:12px;
  color:#7a8891;
}

/* INPUT */
.st-input{
  height:44px;
  font-size:14px;
  border-radius:6px;
}

/* MOBILE */
.st-mobile-wrap{
  display:flex;
}

.st-flag{
  width:36px;
  height:44px;
  border:1px solid #d1d5db;
  border-right:none;
  background:#f9fafb;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px 0 0 6px;
}

.st-flag img{width:22px}

.st-country-select{
  border:1px solid #d1d5db;
  border-left:none;
  border-right:none;
  background:#f9fafb;
}

.st-mobile-input{
  border-radius:0 6px 6px 0;
}

/* WHATSAPP */
.st-whatsapp{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#4b5563;
  margin-top:6px;
}

.st-whatsapp img{width:14px}

/* TEXTAREA */
.st-textarea-lg{
  min-height:120px;
  font-size:14px;
  border-radius:6px;
}

/* TEXTAREA HEADER (LABEL + 160 CHARS SAME LINE) */
.st-textarea-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:6px;
}

.st-char-inline{
  font-size:11px;
  color:#9aa4ab;
}

/* CONSENT */
.st-consent{
  max-width:900px;
  margin:auto;
  font-size:12px;
  color:#4b5563;
}

.st-consent label{
  display:block;
  margin-bottom:8px;
}

/* CAPTCHA */
.st-captcha{
  max-width:350px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  border:1px solid #d1d5db;
  padding:12px;
  border-radius:6px;
  background:#fff;
}

/* BUTTON */
.st-submit-btn{
  background:#0A6847;
  color:#ffffff;
  border:none;
  padding:12px 40px;
  border-radius:25px;
  font-size:14px;
  box-shadow: 0 6px 18px rgba(10, 104, 71, 0.35); /* 🔹 light outer shadow */
  transition: all .3s ease;
}
.st-submit-btn:hover{
  box-shadow: 0 8px 22px rgba(10, 104, 71, 0.45);
  transform: translateY(-1px);
}


/*FORM SECTION end*/
/*AREA OF INTEREST START*/
.interest-heading{
  margin-bottom:55px;    
}

.interest-heading small{
  display:block;
  margin-top:6px;
  font-size:14px;
  color:#6c757d;
}

@media(max-width:576px){
  .interest-heading{
    margin-bottom:65px;
  }
}
/* Main heading */
.interest-section h3.text-center{
  font-size:26px;        
  font-weight:400;     
  color:#637176;         
  line-height:1.45;
  margin-bottom:50px;    
}

/* Sub text */
.interest-section h3.text-center small{
  display:block;
  margin-top:4px;
  font-size:26px;        
  font-weight:400;
  color:#637176;        
}

/* Mobile */
@media(max-width:576px){
  .interest-section h3.text-center{
    font-size:18px;
    margin-bottom:55px;
  }

  .interest-section h3.text-center small{
    font-size:12.5px;
  }
}

.interest-section{
  background:#EFF2F6;
  padding:60px 20px 0px 20px;
}

.interest-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.interest-card{
  position:relative;
  background:#ffffff;
  border-radius:18px;
  padding:32px 32px;          
  min-height:170px;           
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  border:2px solid transparent;
  transition:.3s ease;
}

.interest-card:hover{
  box-shadow:0 12px 35px rgba(0,0,0,.1);
}

/* TEXT */
.interest-left{
  font-size:18px;            
  font-weight:400;          
  color:#2b2b2b;
  max-width:60%;
}

/* IMAGE */
.interest-right img{
  width:115px;
  height:auto;
}

/* CHECK ICON */
.check-box{
  position:absolute;
  top:20px;
  right:20px;
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid #0d6efd;
  color:#fff;
  font-size:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.3s;
}

.interest-card:hover .check-box{
  opacity:1;
}

.interest-card.active{
  border-color:#0d6efd;
}

.interest-card.active .check-box{
  background:#0d6efd;
  opacity:1;
}

/* RESPONSIVE */
@media(max-width:992px){
  .interest-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .interest-grid{
    grid-template-columns:1fr;
  }
}



  /* Adjust spacing between left text and image */
  @media (min-width: 768px) {
    .left-text {
      padding-right: 50px !important;  /* Similar to the design gap */
    }
    .image-col {
      padding-left: 0 !important;
    }
  }


  /* =====================================
   WHY SUPPORT US – FINAL (DESIGN MATCH)
   ===================================== */

/* HERO */
.wsu-hero {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

.wsu-hero-img {
  position: absolute;
  inset: 0;
}

.wsu-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.wsu-hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wsu-hero-title {
  color: #ffffff;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
}

/* MAIN SECTION */
.wsu-main {
  background: #ffffff;
  padding: 90px 0;
}

/* CONTENT – CENTER BUT LEFT START */
.wsu-content,
.wsu-cta {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.wsu-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #5f6f6a;
  margin-bottom: 28px;
}

/* CTA */
.wsu-cta {
  margin-top: 80px;
}

.wsu-cta-title {
  font-size: 2.9rem;
  font-weight: 800;
  color: #0A6847;
  line-height: 1.25;
  margin-bottom: 45px;
  text-align: left;
}

/* ICON + BUTTON */
.wsu-cta-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.wsu-cta-row img {
  max-width: 180px;
}

/* BUTTON */
.wsu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9ACB3B;
  color: #0A6847;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(10, 104, 71, 0.45);
  transition: all 0.3s ease;
}

.wsu-btn:hover {
  background: #88B832;
  color: #ffffff;
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {
  .wsu-hero {
    height: 45vh;
  }

  .wsu-hero-title {
    font-size: 2.2rem;
  }

  .wsu-cta-title {
    font-size: 2rem;
        text-align: center;
    margin-left: auto;
    margin-right: auto;

  }

  .wsu-cta-row {
      flex-direction: column;
  align-items: center;
  text-align: center;

  }

  .wsu-cta-row img {
    max-width: 140px;
  }
}

