:root{
  --topbar-height: 115px;
  --sidebar-width: 288px;
  --brand-yellow: #E3AE25;
  --brand-green: #215C46;
  --brand-green-dark: #14543d;
  --text-dark: #171717;
  --text-muted: #676767;
  --bg-light: #f5f5f5;
  --card-border: #ddb553;
}

*{
  box-sizing: border-box;
}

html, body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  overflow: hidden;
}

a{
  text-decoration: none;
}

/* =========================
   FIXED TOP HEADER
========================= */
.sgc-top-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-height);
  background: #ffffff;
  z-index: 1045;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sgc-header-logo img{
  width: 115px;
  height: auto;
  display: block;
}

.sgc-header-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E3AE25;
  color: #215C46;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 7px;
  transition: 0.3s ease;
}

.sgc-header-btn:hover{
  background: #d29f14;
  color: #103828;
}

/* =========================
   FIXED LEFT SIDEBAR
========================= */
.sgc-sidebar{
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - var(--topbar-height));
  background: var(--brand-yellow);
  z-index: 999;
  padding: 32px 22px;
  overflow-y: auto;
}

.sgc-menu{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sgc-menu a{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #215C46;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.sgc-menu a img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.sgc-menu a.active,
.sgc-menu a:hover{
  background: #f7f7f4;
  color: #15533f;
}

/* =========================
   RIGHT SCROLLABLE AREA
========================= */
.sgc-content-wrap{
  position: fixed;
  top: var(--topbar-height);
  left: var(--sidebar-width);
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: #f8f7f3;
}

/* =========================
   HERO
========================= */
.sgc-hero{
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 40px 84px;
  background:url('../images/banner-bg.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.sgc-hero::after{
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: var(--brand-yellow);
  clip-path: polygon(80% 0, 100% 0, 100% 120%, 0 50%);
  z-index: 1;
}

.sgc-hero-content{
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #fff;
}

.sgc-hero-content h1{
  margin: 0 0 8px;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.sgc-hero-subtitle{
  color: #E3AE25;
  font-size: 24px;
  font-weight: 500;
  margin: 12px 0;
}

.sgc-hero-text{
  font-size: 20px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 50px;
  font-weight: 400;
}

.sgc-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E3AE25;
  color: #215C46;
  font-size: 18px;
  font-weight: 500;
  padding: 11px 30px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.sgc-hero-btn:hover{
  background: #d49f11;
  color: #103828;
}

.sgc-hero-badge{
  position: absolute;
  right: 200px;
  top: 50%;
  transform: translateY(-50%);
  width: 236px;
  height: 236px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
  padding: 16px;
}

.sgc-hero-badge-inner{
  text-align: center;
}

.sgc-hero-badge-inner img{
    width: 254px;
    margin-bottom: 8px;
    margin-right: 10px;
}

.sgc-hero-badge-inner h3{
  margin: 0;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  color: #111;
}

.sgc-hero-badge-inner p{
  margin: 3px 0 0;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 600;
  color: #111;
}

/* =========================
   SECTIONS
========================= */
.sgc-section{
  padding: 60px 0;
  position: relative;
  background: #fff;
}

.about-heading{
  font-size: 36px;
  font-weight: 700;
  color: var(--brand-green);
  margin-bottom: 30px;
}

.about-heading small{
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-green);
}

.about-subtitle{
  color: #E3AE25;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 18px;
}

.about-text{
  font-size: 16px;
  line-height: 1.65;
  color: #364153;
  margin-bottom: 14px;
  max-width: 100%;
}

.about-logo-box{
  background: #fff;
  border: 1.5px solid #ddb553;
  border-radius: 24px;
  min-height: 222px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  margin-top: 18px;
  margin-left: 50px;
}

.about-logo-inner{
  text-align: center;
}

.about-logo-inner img{
  width: 310px;
}

.about-logo-inner h4{
  margin: 0;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
  color: #000;
}

.about-logo-inner p{
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.about-fruit{
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 100px;
  opacity: 0.16;
  pointer-events: none;
}

.about_second_section{
  padding-top: 50px;
}
.list_common{
  padding: 0 0 0 28px;
  margin: 0;
}
.list_common li{margin:4px 0;}
/* =========================
   APPLICATION OPEN STRIP
========================= */
.sgc-application-strip{
  position: relative;
  padding: 58px 20px 62px;
  text-align: center;
  overflow: hidden;
  background: url('../images/call_to_action.jpg') center center / cover no-repeat;
}

.sgc-application-strip::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 73, 56, 0.12);
  pointer-events: none;
}

.sgc-application-strip-inner{
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.sgc-app-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.sgc-app-icon img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.sgc-application-strip h2{
  margin: 0 0 11px;
  color: #ffffff;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0;
}

.sgc-application-strip p{
  margin: 0 0 36px;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}

.sgc-app-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 192px;
  min-height: 44px;
  padding: 16px 30px;
  background: var(--brand-yellow);
  color: var(--brand-green);
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sgc-app-btn:hover{
  background: #cf9d14;
  color: #114130;
}


/* =========================
   CHALLENGE IN NUMBERS
========================= */
.sgc-numbers-section{
  padding: 56px 38px 68px;
  background: #fff;
}

.sgc-section-head{
  margin-bottom: 42px;
}

.sgc-section-head h2{
  margin: 0 0 8px;
  color: #215C46;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.sgc-section-head p{
  margin: 0;
  color: #4A5565;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.sgc-number-card{
  background: #fff;
  border: 1.5px solid #E3AE25;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.10);
  text-align: center;
  min-height: 246px;
  padding: 28px 22px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.sgc-number-card:hover{
  transform: translateY(-3px);
}

.sgc-number-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.sgc-number-icon img{
  width: 72px;
  height: 72px;
  object-fit: contain;
  display: block;
}

.sgc-number-card h3{
  margin: 0 0 10px;
  color: #215C46;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
}

.sgc-number-card p{
  margin: 0;
  color: #4A5565;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}
.pagemenu_section{
  background: #EC7D44;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.pagemenu_section ul{text-align: center;margin: 0;padding: 10px 0;}
.pagemenu_section ul li{
  display: inline-flex;
  margin: 0 20px;
}
.pagemenu_section ul li a{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.pagemenu_section ul li a:hover{font-weight: 500;color: #215C46;}
.pagemenu_section ul li a:after{
  content: '';
  width: 0%;
  height: 4px;
  background: #215C46;
  position: absolute;
  left: 0;
  bottom: -20px;
  transition: width 0.2s ease-in-out;
}
.pagemenu_section ul li a:hover:after{
  width: 100%;
}
/* =========================
   CHALLENGE CATEGORIES + THEMES
========================= */
.sgc-categories-section{
  padding: 64px 38px 64px;
  background: #F5F5F5;
}

.sgc-cat-title{
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 30px;
}

.sgc-cat-title.green{
  color: #215C46;
}

.sgc-cat-title.yellow{
  color: #d9a71b;
}

.sgc-cat-left{
  padding-right: 14px;
}

.sgc-cat-image-grid{
  margin-bottom: 16px;
}

.sgc-cat-image-grid img{
  width: 100%;
  height: 245px;
  object-fit: cover;
  display: block;
}

.sgc-cat-text p{
  margin: 0 0 14px;
  color: #364153;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.sgc-cat-subtitle{
  color: #E3AE25;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  margin: 26px 0 14px;
}

/* =========================
   ACCORDION
========================= */
.sgc-theme-wrap{
  padding-left: 12px;
}

.sgc-theme-accordion{
  --bs-accordion-border-width: 0;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-bg: transparent;
  --bs-accordion-inner-border-radius: 0;
}

.sgc-acc-item{
  border: none;
  background: transparent;
  margin-bottom: 8px;
}

.sgc-acc-item .accordion-button{
  background: #fff;
  color: #1f6a50;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.45;
  padding: 16px 24px 16px 24px;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  border-radius: 0 !important;
  box-shadow: none;
}

.sgc-acc-item .accordion-button span{
  padding-right: 26px;
}

.sgc-acc-item .accordion-button:not(.collapsed){
  background: #fff;
  color: #215C46;
  box-shadow: none;
}

.sgc-acc-item .accordion-button::after{
  background-image: none;
  content: "+";
  font-size: 34px;
  font-weight: 300;
  color: #d9a71b;
  line-height: 1;
  width: auto;
  height: auto;
  transform: none;
  margin-left: auto;
}

.sgc-acc-item .accordion-button:not(.collapsed)::after{
  content: "−";
  transform: none;
}

.sgc-acc-item.active .accordion-button{

}

.sgc-acc-item.active .accordion-button::before{
  content: "";
  position: absolute;
  right: 12px;
  top: 13px;
  width: 16px;
  height: 3px;
  background: #d9a71b;
  border-radius: 10px;
}

.sgc-acc-item.active .accordion-button::after{
  content: "";
  font-size: 0;
  width: 0;
  height: 0;
  margin-left: auto;
}

.sgc-acc-item .accordion-body{
  background: #ffffff;
  padding: 2px 24px 22px 24px;
  color: #5d6475;
  font-size: 13px;
  line-height: 1.62;
}

.sgc-acc-item .accordion-body p{
  margin: 0 0 12px;
}

.sgc-theme-highlight{
  color: #2c6b58;
  font-style: italic;
}

.sgc-acc-item .accordion-body h4{
  color: #EC7D44;
  font-size: 14px;
  font-weight: 600;
  margin: 14px 0 8px;
}

.sgc-acc-item .accordion-body ul{
  margin: 0 0 12px 0;
  padding-left: 18px;
}

.sgc-acc-item .accordion-body ul li{
  margin-bottom: 7px;
  color: #5d6475;
  font-size: 13px;
  line-height: 1.58;
}

.sgc-theme-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d9a71b;
  color: #1f6a50;
  min-width: 90px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sgc-theme-btn:hover{
  background: #cb990f;
  color: #164837;
}

/* =========================
   ELIGIBILITY CRITERIA
========================= */
.sgc-eligibility-section{
  padding: 60px 38px 60px;
  background: #ffffff;
}

.sgc-eligibility-head{
  margin-bottom: 34px;
}

.sgc-eligibility-head h2{
  margin: 0 0 6px;
  color: #215C46;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.sgc-eligibility-head p{
  margin: 0;
  color: #E3AE25;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 400;
}

.sgc-eligibility-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 0;
  margin: 0 auto;
  max-width: 980px;
}

.sgc-eligibility-item{
  position: relative;
  text-align: center;
  padding: 8px 26px 18px;
}

.sgc-eligibility-item::after{
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 1px;
  height: 92px;
  background: rgba(31, 106, 80, 0.16);
}
.sgc-eligibility-item.no-border::after{
  display: none;
}
.sgc-eligibility-item:nth-child(5n)::after{
  display: none;
}

.sgc-eligibility-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.sgc-eligibility-icon img{
  width: 40px;
  object-fit: contain;
  display: block;
}

.sgc-eligibility-item h4{
  margin: 0;
  color: #364153;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.sgc-eligibility-note{
  text-align: center;
  margin-top: 42px;
}

.sgc-eligibility-note p{
  margin: 0;
  color: #2b6d57;
  font-size: 16px;
  line-height: 1.65;
  font-style: italic;
  font-weight: 400;
}

.how_to_apply{
  padding: 80px 0;
  min-height: 400px;
  background: url(../images/how-to-apply-bg.jpg) center center no-repeat;
  background-size: cover;
}
.how_to_apply h2,.steps-section h2{
  font-size: 36px;
  color: #215C46;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
.step_box{
  border: 2px solid #EC7D44;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #EC7D44;
  margin-bottom: 20px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.apply_card_content ul{padding: 0;
    margin: 0 0 0 22px;}
.apply_card_content h4{margin-bottom: 20px;}
.apply_card_content h4,.apply_card_content p{
  color: #215C46;
  font-size: 18px;
  font-weight: 700;
}
.apply_card_content p{
  font-weight: 500;
  margin: 0;
}
.apply_card_content p.small_text{
  font-size: 14px;
  color: #7C7C7C;
}
.orange_color{
  color: #EC7D44;
}
.step1_line{
  position: relative;
}
/*.step1_line:after{
  content: '';
  width: 90%;
  height: 2px;
  background: #EC7D44;
  position: absolute;
  top: 50px;
  left: 3%;
  z-index: 1;
}
.step1_line:before{
  content: '';
  width: 100px;
  height: 300px;
  border-right: 2px solid #EC7D44;
  border-top: 2px solid #EC7D44;
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 1;
  border-radius: 0 50px 0;
}*/
.apply_card{
  padding: 0 40px;
}
.step2_line{
  margin-top: 48px;
  padding-left: 100px;
}
.step3_line{
  margin-top: 28px;
}
.linedraw{
  background: url(../images/line_draw.png) center 150px no-repeat;
  max-width: 1240px;
}
.step4_line{    margin-top: -12px;}
.apply_card_content{
    padding-right: 50px;
}
.start_application_btn{
  background: #E3AE25;
  border-radius: 10px;
  padding: 14px 20px;
  color: #215C46;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-top: 70px;
}
/* =========================
   PROCESS SECTION
========================= */
.sgc-process-section{
  padding: 60px 0;
  background: #fff;
}

.sgc-process-head{
  margin-bottom: 18px;
}

.sgc-process-head h2,.commaon_heading{
  margin: 0;
  color: #215C46;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 40px;
}

.sgc-process-card{
  background: #1f6a50;
  border-radius: 10px;
  min-height: 64px;
  padding: 12px 18px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 134px;
}

.sgc-process-no{
  color: #E3AE25;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 6px;
}

.sgc-process-card h4{
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}

/* =========================
   TIMELINE SECTION
========================= */
.sgc-timeline-section{
  position: relative;
  padding: 60px 0;
  background: #f7f6f2 url(../images/timeline-bg.png) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.sgc-timeline-bg{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(247,246,242,0.82), rgba(247,246,242,0.82)),
    url('timeline-bg.jpg') center center / cover no-repeat;
  pointer-events: none;
}

.sgc-timeline-head{
  position: relative;
  z-index: 2;
  margin-bottom: 0px;
}

.sgc-timeline-head h2{
  margin: 0;
  color: #215C46;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}

.sgc-timeline-wrap{
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 96px 0 88px;
}

.sgc-timeline-line{
  position: absolute;
  left: 60px;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  background: #E3AE25;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sgc-timeline-line span{
  display: block;
  width: 100%;
  height: 0;
  border-top: 4px dashed #1f6a50;
}

.sgc-timeline-items{
  position: relative;
  min-height: 235px;
}

.sgc-timeline-item{
  position: absolute;
  width: 200px;
  text-align: center;
}

.sgc-timeline-icon{
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #1f6a50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.sgc-timeline-icon img{
  height: 32px;
  object-fit: contain;
  display: block;
}

.sgc-timeline-content h4{
  margin: 0 0 8px;
  color: #215C46;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 500;
}

.sgc-timeline-content p{
  margin: 0;
  color: #215C46;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

/* top items */
.sgc-timeline-item.top .sgc-timeline-content{
  margin-bottom: 12px;
}

/* bottom items */
.sgc-timeline-item.bottom .sgc-timeline-content{
  margin-top: 12px;
}

/* positions */
.sgc-timeline-item.item-1{ left: 3%; top: -26px; }
.sgc-timeline-item.item-2{ left: 17%; top:75px; }
.sgc-timeline-item.item-3{ left: 32%; top: -25px; }
.sgc-timeline-item.item-4{ left: 48%; top: 73px; }
.sgc-timeline-item.item-5{ left: 65%; top: -25px; }
.sgc-timeline-item.item-6{ left: 89%; top: 74px; transform: translateX(-50%); }


.winner_section{
  padding: 100px 0;
  background: #fff;
}
.winner_icons{
  width: 114px;
  height: 114px;
  margin:0 auto;
  border-radius: 100%;
  background: #E3AE25;
  display: flex;
  align-items: center;
  justify-content: center;
}
.winner_box p{
  font-size: 20px;
  color: #215C46;
  font-weight: 500;
  margin: 13px 0 0;
}
.winner_box {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
}
.border_left_right{
  border-left: 1px solid #DFDFDF;
  border-right: 1px solid #DFDFDF;
}
.border_right{
  border-right: 1px solid #DFDFDF;
}

/* =========================
   FOOTER
========================= */
.sgc-footer{
  background: #215C46;
  padding: 70px 0;
}

.sgc-footer-top{
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
}

.sgc-footer-col h3{
  margin: 0 0 16px;
  color: #E3AE25;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.sgc-footer-contact,
.sgc-footer-links{
  margin: 0;
  padding: 0;
  list-style: none;
}

.sgc-footer-contact li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.sgc-footer-contact li:last-child{
  margin-bottom: 0;
}

.sgc-footer-icon{
  width: 16px;
  min-width: 16px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sgc-footer-icon img{
  height: 19px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.sgc-footer-links li{
  margin-bottom: 8px;
}

.sgc-footer-links li:last-child{
  margin-bottom: 0;
}

.sgc-footer-links a{
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  transition: all 0.3s ease;
}

.sgc-footer-links a:hover{
  color: #d9a71b;
}

.sgc-footer-social{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sgc-footer-social a{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #E3AE25;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sgc-footer-social a:hover{
  background: #c8950f;
}

.sgc-footer-social a img{
  width: 20px;
  object-fit: contain;
  display: block;
}

.sgc-footer-newsletter label{
  display: block;
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 400;
}

.sgc-footer-form{
  display: flex;
  align-items: center;
  gap: 8px;
}

.sgc-footer-form input{
  width: 100%;
  max-width: 182px;
  height: 42px;
  border: none;
  outline: none;
  background: #ffffff;
  border-radius: 4px;
  padding: 0 12px;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 400;
}

.sgc-footer-form input::placeholder{
  color: #a0a0a0;
}

.sgc-footer-form button{
  height: 42px;
  border: none;
  outline: none;
  background: #E3AE25;
  color: #215C46;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sgc-footer-form button:hover{
  background: #c8950f;
}

.sgc-footer-bottom{
  text-align: center;
  padding-top: 22px;
}

.sgc-footer-bottom p{
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.application_form{
  padding: 50px 0;
}

/* =========================
   APPLICATION FORMS PAGE
========================= */
.sgc-appforms-page{
  position: relative;
  padding: 50px 34px 26px;
  background: #f7f6f2;
  overflow: hidden;
}

.sgc-appforms-bg-shape{
  position: absolute;
  opacity: 0.07;
  pointer-events: none;
  background: url('icon.svg') center center / contain no-repeat;
}

.sgc-appforms-bg-shape.shape-one{
  left: -10px;
  top: 0;
  width: 130px;
  height: 230px;
}

.sgc-appforms-bg-shape.shape-two{
  left: 250px;
  bottom: 110px;
  width: 120px;
  height: 120px;
}

.sgc-appforms-bg-shape.shape-three{
  right: 20px;
  top: 0;
  width: 170px;
  height: 140px;
}

.sgc-appforms-top{
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.sgc-appforms-top h1{
  margin: 0;
  color: #000;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.sgc-lang-switch{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sgc-lang-switch a{
  min-width: 78px;
  height: 34px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #1f6a50;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sgc-lang-switch a.active{
  background: #1f6a50;
  color: #ffffff;
}

/* =========================
   LEFT MENU
========================= */
.sgc-app-side-menu{
  position: relative;
  z-index: 2;
}

.sgc-app-menu-item{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #ffffff;
  color: #215C46;
  border-radius: 10px;
  padding: 12px 16px;
  min-height: 56px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.sgc-app-menu-item:last-child{
  margin-bottom: 0;
}

.sgc-app-menu-item.active{
  background: #1f6a50;
  color: #f0b521;
}
.sgc-app-menu-item.active .sgc-app-menu-no,.sgc-app-menu-item.active .sgc-app-menu-text{
  font-weight: 700;
}
.sgc-app-menu-item:hover{
  transform: translateX(2px);
}

.sgc-app-menu-no{
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  flex: 0 0 32px;
}

.sgc-app-menu-text{
  font-size: 18px;
  line-height: 1.1;
  font-weight: 400;
  padding-top: 1px;
}

/* =========================
   RIGHT CARD
========================= */
.sgc-app-content-card{
  position: relative;
  z-index: 2;
  background: #fcfcfb;
  border-radius: 18px;
  padding: 26px 34px 34px;
  min-height: 444px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.sgc-app-content-card h2{
  margin: 0 0 18px;
  color: #215C46;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.sgc-app-readmore-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E3AE25;
  color: #215C46;
  min-width: 103px;
  height: 40px;
  border-radius: 9px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sgc-app-readmore-btn:hover{
  background: #ca9812;
  color: #164837;
}

.sgc-app-divider{
  height: 1px;
  background: rgba(31, 106, 80, 0.22);
  margin: 18px 0 12px;
}

.sgc-app-content-text p{
  margin: 0 0 18px;
  color: #485362;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.sgc-app-content-text p strong{
  font-weight: 700;
}

.sgc-app-note{
  color: #EC7D44  !important;
  font-style: italic;
}

.sgc-app-content-space{
  min-height: 160px;
}

.inner-banner{ 
  min-height: 260px;
  display: flex;
  align-items: center;
}
.inner-banner h1{
  font-size: 46px;
  font-weight: 700;
  color: #fff;
}
.inner-banner.resource_banner{
  background: url(../images/resource_CENTRE.png) center center no-repeat;
}
.inner-banner.faq_banner{
  background: url(../images/faq_banner.png) center center no-repeat;
}
.inner-banner.media_banner{
  background: url(../images/media_banner.png) center center no-repeat;
}
.inner-banner.partner_banner{
  background: url(../images/partner_banner.png) center center no-repeat;
}

.resource_section{
  background: url(../images/resource_pattern.png) center top no-repeat;
  background-size: cover;
  padding: 60px 0 120px;
}

.download_box{
  background: #215C46;
  padding: 8px;
}
.download_box img{
  width: 100%;
  height: auto;
}
.download_box .download-btn{
  background: #E3AE25;
  padding: 10px 20px;
  display: inline-block;
  color: #215C46;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0;
}
.resource_Card h3{
  font-size: 18px;
  color: #000;
  font-weight: 500;
  min-height: 50px;
}
.q-number1 {
  color: #EC7D44;
  font-weight: 500;
  margin-right: 8px;
}
.faq-section .faq-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-section .faq-category h4 {
    font-weight: 600;
    color: #1f7a5a;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.faq-section .faq-category .icon {
    width: 22px;
    height: 22px;
    background: transparent;
    color: #EC7D44;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    border: 2px solid #EC7D44;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Button */
.faq-section .accordion-button {
    background: #fff;
    border-radius: 10px !important;
    font-weight: 600;
    font-size: 15px;
    padding: 16px;
}
.faq-section .accordion-button:hover{
  color: #000;
}
.faq-section .accordion-button::after {
    filter: invert(35%) sepia(15%) saturate(500%) hue-rotate(120deg);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #f5fbf8;
    color: #1f7a5a;
    box-shadow: none;
}

.faq-section .q-number {
    color: #f26c4f;
    font-weight: 700;
    margin-right: 8px;
}

.faq-section .accordion-body {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    padding-top: 0;
}
/* SECTION */
.section-title {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
}

/* MEDIA CARD */
.media-card {

    position: relative;
    cursor: pointer;
}
.media-card-parent{
    background: #1f5c4d;
    padding: 15px;
    min-height: 470px;
}

.media-card img {
    width: 100%;
    display: block;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff7a2f;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-icon img{
  width: 26px;
}
/* VIDEO CARD */
.video-card {
    position: relative;
    cursor: pointer;
}

.video-card img {
    width: 100%;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff7a2f;
    color: #fff;
    font-size: 26px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MODAL FIX */
.modal-content img {
    width: 100%;
}
.video-section{padding-bottom: 120px;}
.partner_section{
  padding: 60px 20px;
}
.partner_section h2{
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
}
.partner_section h3{
  font-weight: 500;
  color: #1f7a5a;
  margin-bottom: 15px;
  font-size: 22px;
}
/* Hamburger button */
#nav-icon3 {
  width: 30px;
  height: 18px;
  position: absolute;
  right: 120px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  display: none;
}

#nav-icon3 span{
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000000;
  border-radius: 0px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 8px;
}

#nav-icon3 span:nth-child(4) {
  top: 16px;
}

#nav-icon3.open span:nth-child(1) {
  top: 16px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.how_to_apply_mobile,.mobile_show{display: none;}
.steps-section{
    background: url(../images/how-to-apply-bg.jpg) center center no-repeat;
    background-size: cover;
}

.steps-wrapper {
    position: relative;
  }
  .steps-card .steps-box {
    border: 2px solid #ec7d44;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ec7d44;
    margin-bottom: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
  }
  .steps-card .content {
    color: #215c46;
  }
  .steps-card .content h4 {
    font-size: 18px;
    font-weight: 700;
  }
  .steps-card .content a {
    color: #ec7d44;
  }
  .steps-card .content ul{margin: 0;}
  .steps-wrapper .steps-row {
    padding: 0 25px 30px 75px;
    min-height: 300px;
    position: relative;
  }
  .steps-wrapper .steps-row:nth-child(even) .row {
    flex-direction: row-reverse;
  }
  .steps-wrapper .steps-row:first-child > .row > div:first-child::after {
    content: "";
    width: 100%;
    height: 1px;
    border-top: 2px solid #ec7d44;
    position: absolute;
    top: 50px;
    left: 60px;
  }
  .steps-wrapper .steps-row::after {
    content: "";
    width: calc(50% + 70px);
    height: 100%;
    position: absolute;
    right: 0;
    top: 50px;
    border: 2px solid #ec7d44;
    border-left-width: 0;
    border-radius: 0 58px 58px 0;
    pointer-events: none;
  }
  .steps-wrapper .steps-row:nth-child(even)::after {
    right: auto;
    left: 0;
    height: calc(100% + 3.5px);
    border-left-width: 2px;
    border-right-width: 0;
    border-radius: 58px 0 0 58px;
    top: 48px;
  }
  .steps-wrapper .steps-row:last-child::after {
    display: none;
  }
  .steps-wrapper .steps-row > .row {
    margin: 0 -60px;
  }
  .steps-wrapper .steps-row .row > div {
    padding: 0 60px;
    position: relative;
  }
  #about,
    #Challenge_Categories,
    #EligibilityCriteria,
    #How_to_Apply,
    #Process,
    #Timelines,
    #Winners,
    #How_to_Apply2 {
        scroll-margin-top: 70px;
    }