:root{
  --dsc-green: #198959;
  --dsc-lime: #8DE52E;
  --dsc-white: #ffffff;
  --dsc-text: #ffffff;
  --dsc-dark: #1f1f1f;
  --dsc-muted: rgba(255,255,255,0.78);

  --dsc-container: 1180px;
  --dsc-radius-xl: 26px;
  --dsc-radius-lg: 22px;
}


.dsc-container{
  width: min(100% - 40px, var(--dsc-container));
  margin-inline: auto;
}


.dsc-header{
  background: var(--dsc-green);
}



.dsc-logo{
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.dsc-logo__img{
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
}

.dsc-logo__text{
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
}

.dsc-logo__text--white{ color: #ffffff;  font-size: 25px;}
.dsc-logo__text--green{ color: #8DE52E; font-size: 25px; }


.dsc-plus{
  width: 28.82px;
  height: 28.82px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dsc-plus__img{
  width: 28.82px;
  height: 28.82px;
  object-fit: contain;
  display: block;
}

.dsc-plus__img_eng{
  width: 28.82px;
  height: 28.82px;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}


/* ✅ Mobile view: hide */
@media (max-width: 768px){
  .dsc-plus{ display: none !important; }
}


/* Optional: mobile slightly smaller */
@media (max-width: 768px){
  .dsc-logo__img{
    width: 40px;
    height: 40px;
  }
  .dsc-logo__text{
    font-size: 15px;
  }
}

.dsc-nav{
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}



.dsc-logo__mark{
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: rgba(255,255,255,0.14);
  position: relative;
}
.dsc-logo__mark::after{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 7px;
  background: rgba(141,229,46,0.75);
}

.dsc-logo__text{
  color: var(--dsc-lime);
  font-weight: 700;
  font-size: 22px;
}

.dsc-menu{
  display: flex;
  align-items: center;
  gap: 26px;
}

.dsc-menu__link{
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 0;
  position: relative;
}

.dsc-menu__link.is-active{
  color: #fff;
}
.dsc-menu__link.is-active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: rgba(255,255,255,0.65);
  border-radius: 2px;
}

.dsc-nav__right{
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Red plus button */
.dsc-plus{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ff2b2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.dsc-plus__icon{
  color: #fff;
  font-weight: 800;
  line-height: 1;
  font-size: 18px;
}

/* Burger */
.dsc-burger{
  display: none;
  width: 42px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
}
.dsc-burger__line{
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  opacity: 0.9;
}

/* Mobile menu */
.dsc-mobile{
  padding-bottom: 16px;
  display: grid;
  gap: 10px;
}
.dsc-mobile__link{
  text-decoration: none;
  color: #fff;
  font-weight: 650;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
}
.dsc-mobile__link.is-active{
  border-color: rgba(141,229,46,0.55);
}



/* ------------------ MOBILE RIGHT DRAWER ------------------ */

.dsc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
}

.dsc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 340px);
  background: #157a4f; /* slightly darker green for depth */
  border-left: 1px solid rgba(255,255,255,0.15);
  z-index: 1000;
  transform: translateX(110%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.dsc-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.dsc-drawer__title {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}

.dsc-drawer__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.dsc-drawer__nav {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.dsc-drawer__link {
  text-decoration: none;
  color: #fff;
  font-weight: 650;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.dsc-drawer__link.is-active {
  border-color: rgba(141,229,46,0.55);
  background: rgba(141,229,46,0.10);
}

/* Active state: show drawer */
.dsc-drawer.is-open {
  transform: translateX(0);
}

@media (min-width: 993px) {
  .dsc-overlay,
  .dsc-drawer {
    display: none !important;
  }
}



/* ===== Mobile burger icon (same like screenshot) ===== */
@media (max-width: 991px) {

  .dsc-nav__right{
    display:flex;
    align-items:center;
    gap:12px;
  }

  .dsc-burger{
    width:34px;
    height:34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-end;      
    background:transparent;
    border:0;
    padding:0;
    cursor:pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .dsc-burger__line{
    display:block;
    height:3px;               /* thickness */
    background:#ffffff;       /* white lines */
    border-radius:3px;
    margin:4px 0;             /* spacing between lines */
  }

  /* Same decreasing width look (like screenshot) */
  .dsc-burger__line:nth-child(1){ width:28px; }
  .dsc-burger__line:nth-child(2){ width:18px; }
  .dsc-burger__line:nth-child(3){ width:10px; }

}



.dsc-plus{
  background: transparent !important;
  padding: 0 !important;
}

.dsc-plus__img_eng{
  display:block;
  width: 28.88px;           /* apni size */
  height: 28.88px;
  border-radius: 50%;
  object-fit: cover;
  background: transparent !important;
}






/* Hero wrapper */
.dsc-hero{
  background: var(--dsc-green);
  overflow: hidden;
}

/* Background with diagonal cut like screenshot */
.dsc-hero__bg{
  position: relative;
  padding: 54px 0 60px;
}
.dsc-hero__bg::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 70%;
  background: var(--dsc-white);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 72%);
  z-index: 0;
}

/* Hero top content */
.dsc-hero__top{
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
}

.dsc-hero__title{
  margin: 0 0 14px;
  color: var(--dsc-text);
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: 0;
}

.dsc-hero__subtitle{
  margin: 0 0 26px;
  color: var(--dsc-muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
}
.dsc-hero{
  margin: -10px 0 26px;
  color: var(--dsc-muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
}
/* Buttons */
.dsc-hero__actions{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.dsc-btn{
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, opacity .15s ease;
}
.dsc-btn:active{ transform: translateY(1px); }

.dsc-btn--fill{
  background: var(--dsc-lime);
  color: #1b1b1b;
  border: 1px solid var(--dsc-lime);
}
.dsc-btn--outline{
  background: transparent;
  color: var(--dsc-lime);
  border: 1px solid var(--dsc-lime);
}

/* Bottom split row */
.dsc-hero__bottom{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  margin-top: 10px;
}

/* Video card */
.dsc-video{
  position: relative;
  border-radius: var(--dsc-radius-xl);
  overflow: hidden;
  background: rgba(0,0,0,0.15);
  box-shadow: 0 18px 35px rgba(0,0,0,0.18);
}

.dsc-video__img{
  width: 100%;

  height: 630px;
  display: block;
  /* aspect-ratio: 16 / 10; */
  object-fit: cover;
}

/* Play button */
.dsc-video__play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.75);
  display: grid;
  place-items: center;
}
.dsc-video__triangle{
  width: 0;
  height: 0;
  border-left: 14px solid var(--dsc-green);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

.dsc-what{
  padding: 10px 0;
  margin-top: 80px;
}

.dsc-what__title{
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--dsc-green);
}

.dsc-what__text{
  margin: 0 0 22px;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}

/* Steps */
.dsc-steps{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dsc-step{
  display: grid;
  gap: 8px;
  justify-items: center;
  min-width: 110px;
}

.dsc-step__icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(25,137,89,0.12);
  display: grid;
  place-items: center;
}
.dsc-step__icon img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.dsc-step__label{
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 500;
}

.dsc-steps__arrow{
  color: var(--dsc-green);
  font-weight: 800;
  font-size: 22px;
  margin-top: -20px;
}



@media (max-width: 1100px){
  .dsc-hero__title{ font-size: 52px; }
}

@media (max-width: 992px){
  .dsc-menu{ display: none; }
  .dsc-burger{ display: inline-flex; align-items: center; justify-content: center; }

  .dsc-hero__bottom{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dsc-hero__bg::after{
    height: 52%;
    clip-path: polygon(0 32%, 100% 0, 100% 100%, 0 100%);
  }

  .dsc-what{ padding-bottom: 10px; 
  margin-top: 160px;
        justify-content: center;
        text-align: center;
      }
}

@media (max-width: 640px){
  .dsc-container{ width: min(100% - 28px, var(--dsc-container)); }

  .dsc-hero__bg{ padding: 34px 0 46px; }

  .dsc-hero__top{
    padding-top: 8px;
    padding-bottom: 22px;
  }

  .dsc-hero__title{
    font-size: 26px;
    line-height: 1.15;
  }

  .dsc-hero__subtitle{
    font-size: 18px;
    line-height: 24px;
  }

  .dsc-hero__actions{
    width: 100%;
    gap: 12px;
  }

  .dsc-btn{
    width: 100%;
    padding: 14px 18px;
  }

  .dsc-steps{
    justify-content: center;
  }

  .dsc-step{ min-width: 95px; }
}



/* Slider */
.dsc-slider{
  position: relative;
  width: 100%;
  height: 630px;
  overflow: hidden;
  border-radius: var(--dsc-radius-xl);
}

.dsc-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

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

.dsc-slide.active{
  opacity: 1;
}

/* Responsive height adjust */
@media (max-width: 992px){
  .dsc-slider{
    height: 480px;
  }
}

@media (max-width: 640px){
  .dsc-slider{
    height: 320px;
  }
}










.dc-footer {
    background: #2E7D32;
    color: #dfe6df;
    padding: 70px 0 30px;
    font-size: 14px;
}

.dc-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 40px;
}

.dc-footer-col h4 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #ffffff;
}

.dc-footer-text {
    line-height: 1.6;
    color: #dfe6df;
}

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

.dc-footer-links li {
    margin-bottom: 8px;
    font-size: 16px;
}

.dc-footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color .2s ease;
}

.dc-footer-links a:hover {
    color: #ffffff;
}

.dc-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #fff;
    font-size: 16px;
}

.dc-footer-contact i {
    color: #9fd3a8;
    margin-top: 4px;
}

.dc-footer-contact a {
    color: #fff;
    text-decoration: none;
}

.dc-footer-contact a:hover {
    color: #ffffff;
}

.dc-footer-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 8px;
}

.dc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 18px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .dc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .dc-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dc-footer-contact li {
        justify-content: center;
    }
}


.dc-footer-brand {
   display: inline-flex;
  align-items: center;
  gap: 2px;
  text-decoration: none;
}

.dc-footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.dc-footer-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.dc-footer-title span {
    color: var(--green-light);
}

.dc-footer-text {
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}


@media (max-width: 768px) {
    .dc-footer-brand {
        justify-content: center;
    }

    .dc-footer-text {
        text-align: center;
    }
}



.dc-logo-text-2 {
    font-weight: 800;
    font-size: 25px;
    color: #fff;
    letter-spacing: -0.3px;
}

.dc-logo-text-2 span {
    color: var(--green-light);
}





/* =========================================
   DSC FLOAT QUICK ACTIONS (FLAG + WHATSAPP)
   Desktop: Only WhatsApp
   Mobile: Flag + WhatsApp
========================================= */

.dsc-float-stack{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none; 
}


.dsc-float-stack a{
  pointer-events: auto; 
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}


.dsc-float-stack a:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}


.dsc-float-stack .dsc-float-wa{
  background: #25D366;
  color: #fff;
  font-size: 26px;
}

.dsc-float-stack .dsc-float-lang{
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}


.dsc-float-stack .dsc-float-lang img{
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}



.dsc-float-stack .dsc-float-lang{
  display: none !important;
}


@media (max-width: 767.98px){
  .dsc-float-stack{
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .dsc-float-stack a{
    width: 48px;
    height: 48px;
  }

  .dsc-float-stack .dsc-float-wa{
    font-size: 24px;
  }

  .dsc-float-stack .dsc-float-lang{
    display: inline-flex !important;
  }
}

@media (max-width: 360px){
  .dsc-float-stack a{
    width: 44px;
    height: 44px;
  }
  .dsc-float-stack .dsc-float-wa{
    font-size: 22px;
  }
}