@font-face {
    font-family: "kohinoor-regular";
    src: url("KohinoorDevanagari-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "kohinoor-medium";
    src: url("KohinoorDevanagari-Medium.woff") format("woff");
    font-weight: medium;
    font-style: italic;
}
@font-face {
    font-family: "kohinoor-semibold";
    src: url("KohinoorDevanagari-Semibold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
}
html {
  scroll-behavior: smooth;
}
:root {
    --text-color: #535353;;
} 
a {
    text-decoration: none;
}
p, h1, h2, h3, h4{
    margin: 0;
    font-weight: normal;
}
body {
    font-family: "kohinoor-regular";
    margin: 0;
}
*, ::after, ::before {
    box-sizing: border-box;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#mainHeader {
    z-index: 1;
    position: fixed;
    top: -100px; /* hidden initially */
    left: 0;
    right: 0;
    background: #fff;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 95px;
    transition: top 0.3s ease-in-out;
    z-index: 999;
    box-shadow: 0 3px 5px rgba(0,0,0,.1);
  }
  #mainHeader .fixheaderlogo{
    color: #535353;
    font-size: 24px;
    line-height: 24px;
  }
    #mainHeader .fixheaderlogo span{
    font-family: "kohinoor-medium";
    }
  #mainHeader .backto{
    color: #535353;
    font-size: 14px;
    line-height: 20px;
  }
  #mainHeader .backto:hover{
text-decoration: underline;
  }
  #mainHeader .backto img{
    width: 18px;
  }
  #mainHeader.show {
    top: 0; /* slide down when active */
    padding: 10px 95px;
  }
  #mainHeader .rightside{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #535353;
    gap: 50px;
  }
  #mainHeader .showlanguageheader a{
    color: #535353;
    font-size: 15px;
    line-height: 20px;
  }
  #mainHeader .showlanguageheader a:hover{
    color: #111;
  }
  #mainHeader .showlanguageheader a:first-child{
    padding: 0 8px 0 0;
  }
  /* #mainHeader .showlanguageheader a:last-child{
    border-left: 1px solid #535353;
    padding: 0 0 0 10px;
  } */
  .carousel {
    width: 90%;
    margin: 40px auto;
  }

  .carousel .slick-slide {
    position: relative;
    outline: none;
  }



  .carousel .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 1;
  }

  .carousel video.slide-video {
    width: 100%;
    height: auto;
    display: none;
    border-radius: 10px;
    z-index: 2;
    pointer-events: auto;
    position: relative;
  }
  #mainHeader .showlanguageheader a:last-child::before{
    content: '';
    height: 16px;
    width: 2px;
    background: #535353;
    display: inline-block;
    margin: 0 8px 0 0;
    vertical-align: middle;
  }
.DownAnimatedIcon {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -5%);
    bottom: 5%;
}
.circle {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.arrow {
    width: 20px;
    height: 20px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(310deg);
    animation: moveDown 2s infinite;
}
@keyframes moveDown {
    0%, 100% {
      transform: translateY(0) rotate(315deg);
    }
    50% {
      transform: translateY(15px) rotate(315deg);
    }
  }
.section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}
.overlay-video {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-color: black;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
    z-index: -100;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.text-layer{
    text-align: center;
}
.text-layer .banner-heading{
    color: #fff;
    font-size: 50px;
    line-height: 68px;
    margin: 35px 0 0 0;
    font-family: "kohinoor-semibold";
}
  
.slidersection {
    display: flex;
    align-items: center;
    padding: 135px 0 135px 95px;
}
  
.left-content {
    width: 50%;
    color: var(--text-color);
}
  
.left-content .content-heading {
    font-size: 38px;
    line-height: 44px;
    margin: 0 0 30px 0;
    font-family: "kohinoor-semibold";
}
  
.left-content .content-des {
    font-size: 30px;
    line-height: 44px;
    padding: 0 30% 0 0;
}
  
.right-slider {
    position: relative;
    width: 50%;
    overflow: hidden;
}
  
.slider-track {
    display: flex;
    width: calc(200%); /* Double width for smooth looping */
    animation: slideLeft 15s linear infinite;
}
  
  .slider-track img {
    width: 15%;
    margin: 0 15px;
  }
  
  /* Keyframes for continuous right-to-left sliding */
  @keyframes slideLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  

.quotesection{
    padding: 0 95px;
    color: var(--text-color);
}
.quotesection .inner{
    background: #F5F5F5;
    border-radius: 23px;
    padding: 115px 0 115px 60px;
    background-image: url(https://d6pjf7je9ssq.cloudfront.net/samvaad-asset/3graphic.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 60%;
}
.quotesection .inner .quote-heading .quotesub{
    font-size: 30px;
    line-height: 36px;
    font-weight: normal;
    margin: 0 0 10px 0;
    display: inline-block;
    font-family: "kohinoor-regular";
}
.quotesection .inner .quote-heading{
    font-size: 38px;
    line-height: 44px;
    font-family: "kohinoor-semibold";
}
.centersection{
    padding: 130px 95px 380px;
    text-align: center;
    background-image: url(https://d6pjf7je9ssq.cloudfront.net/samvaad-asset/4graphic.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    color: var(--text-color);
}
.center-content{
    font-size: 30px;
    line-height: 38px;
    margin: 0 0 20px 0;
}
.bottom-content{
    font-size: 38px;
    line-height: 46px;
    font-family: "kohinoor-semibold";
}
.threesection{
    padding: 140px 95px;
}
.heading-three-section{
    color: var(--text-color);
    text-align: center;
    font-size: 38px;
    line-height: 46px;
    margin: 0 0 55px 0;
    font-family: "kohinoor-semibold";
}
.threesection .sectioninner{
    display: flex;
    justify-content: space-between;
    gap: 80px;
    width: 85%;
    margin: 0 auto;
}
.threesection .sectioninner .endeavours{
    border: 1px solid #CBCBCB;
    border-radius: 6px;
    width: 100%;
}
.threesection .sectioninner .endeavours img{
    width: 100%;
}
.threesection .sectioninner .endeavours .details{
    padding: 25px 48px;
    color: var(--text-color);
}
.threesection .sectioninner .endeavours .details .heading{
    font-size: 25px;
    line-height: 38px;
    margin: 0 0 15px 0;
    display: block;
    font-family: "kohinoor-semibold";
}
.threesection .sectioninner .endeavours .details .content{
    font-size: 22px;
    line-height: 36px;
}
.changesection{
    padding: 0 95px 140px;
    text-align: center;
    color: var(--text-color);
}
.changesection .heading-change-section{
    font-size: 38px;
    line-height: 46px;
    margin: 0 0 15px 0;
    font-family: "kohinoor-semibold";
}
.changesection .subheading-change{
    font-size: 25px;
    line-height: 36px;
}




.before-after {
    position: relative;
    width: 100%;
    max-width: 1440px;
    min-height: 70vh;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin: 50px auto 0;
    border-radius: 6px;
}
  
.before-after .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
  
.before-after .img.front-img {
    z-index: 1;
    clip-path: polygon(0 0, 50.5% 0, 50.5% 100%, 0% 100%);
}
  
.slider {
    -webkit-appearance: none;
    -moz-appearance: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
        margin: 0;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 7px;
    min-height: 70vh;
    cursor: pointer;
    background-color: white;
}  
/*.slider::-moz-range-thumb {*/
/*    -moz-appearance: none;*/
/*    width: 5px;*/
/*    min-height: 71vh;*/
/*    cursor: pointer;*/
/*    background-color: red;*/
/*}*/
/*.arrow-slider:before{*/
/*    content: '';*/
/*    border-left: 3px solid #fff;*/
/*    border-bottom: 3px solid #FFF;*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    transform: rotate(45deg);*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    left: 48%;*/
/*    border-radius: 2px;*/
/*}*/
/*.arrow-slider:after{*/
/*    content: '';*/
/*    border-right: 3px solid #fff;*/
/*    border-top: 3px solid #FFF;*/
/*    width: 14px;*/
/*    height: 14px;*/
/*    transform: rotate(45deg);*/
/*    cursor: pointer;*/
/*    position: absolute;*/
/*    left: 50%;*/
/*    border-radius: 2px;*/
/*}*/
.footer{
    padding: 0px 95px 380px;
    text-align: center;
    background-image: url(https://d6pjf7je9ssq.cloudfront.net/samvaad-asset/footer.svg);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;
    color: var(--text-color);
}
  .footer ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0 0 0;
  }
  .footer ul li img{
    height: 42px;
  }


  :root { --bg: rgba(0,0,0,.85); --card:#fff; --txt:#111; --muted:#666; --radius:16px; }
/* Modal gate: checked = show */
#langGate { position: fixed; opacity: 0; pointer-events: none; }
#langGate:checked ~ .overlay { opacity: 1; pointer-events: auto; }
#langGate:checked ~ .overlay .modal { transform: translateY(0); opacity: 1; }

    #langGate:not(:checked) + .popup { display: none; }
    .lang-chosen #langGate + .popup { display: none; }
    .lang-chosen #langGate:checked + .popup { display: none; }

/* Overlay */
.overlay {
  position: fixed; inset: 0; display: grid; place-items: center;
  background: var(--bg); transition: opacity .25s ease;
  opacity: 0; pointer-events: none; z-index: 9999;
}
/* Modal card */
.modal {
  width: min(92vw, 420px); background: var(--card); color: var(--txt);
  border-radius: var(--radius); padding: 24px; box-shadow: 0 10px 30px rgba(0,0,0,.2);
  transform: translateY(12px); opacity: 0; transition: all .25s ease;
}
.modal h2 {
  margin: 0 0 20px; font-size: 18px; line-height: 26px; text-align: center;
}
.btns { display: flex; gap: 10px; justify-content: space-between; }
.btn {
  display: inline-block; text-align: center; padding: 10px 14px; border-radius: 3px;
  text-decoration: none; font-size: 18px; border: 1px solid #ddd; width: 50%;
}
.btn.primary { background: #111; color: #fff; border-color: #111; }
.btn.secondary { background: #f6f6f6; color: #111; }



.showlanguage{
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}
.showlanguage a{
    color: #fff;
    font-size: 20px;
    line-height: 26px;
    padding: 0 10px 0 0;
    text-shadow: 2px 2px #000;
}

.showlanguage a:last-child::before{
    content: '';
    height: 16px;
    width: 2px;
    background: #fff;
    display: inline-block;
    margin: 0 8px 0 0;
    vertical-align: middle;
  }
.showlanguage a.active{
    font-family: "kohinoor-semibold";
}

.saarsamvaad-talk{
    padding: 0 0 100px;
    text-align: center;
}
.saarsamvaad-talk .saarsamvaad-talk-heading{
    font-size: 38px;
    line-height: 46px;
    margin: 0 0 15px 0;
    font-family: "kohinoor-semibold";
    color: var(--text-color);
}
.carousel{
    width:100% !important;
    margin:0px auto;
  }
  .slick-slider{
    padding: 0 0 30px 0;
  }
  .slick-slide{
    margin:20px;
    position: relative;
  overflow: hidden;
  }
  .slick-slide img{
    width:100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.4s ease;
  }
  /* .slick-slide:hover img {
    transform: scale(1.05);
  } */
  .carousel .slick-dots li button:before {
    font-size:20px;
    color:#535353;
  }
  .slick-prev{
    bottom: -20px;
    top: inherit !important;
    left: 50% !important;
  }
  .slick-next{
    top: inherit !important;
    right: 47% !important;
    bottom: -20px;
  }
  .slick-prev::before, .slick-next::before{
    content: '' !important;
    width: 20px;
    height: 20px;
    border: 2px solid #BEBEBE;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    display: block;
  }
  .slick-prev::before{
    transform: rotate(225deg);
  }
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
  }
  
  /* Show overlay on hover */
  .slick-slide:hover .overlay {
    opacity: 1;
  }
  .overlay img {
    color: white;
    width: 36px;
    border-radius: 0;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
 
  }
  
  .overlay:hover img {
    transform: scale(1.1);
    opacity: 1;
  }
  #mainHeader .showlanguageheader a.active{
    font-family: "kohinoor-semibold";
  }
@media(max-width: 1350px){
    #mainHeader.show {
        padding: 10px 75px;
    }
    .slidersection {
        padding: 85px 0 85px 75px;
    }
    .left-content .content-des {
        padding: 0 10% 0 0;
        font-size: 24px;
        line-height: 38px;
    }
    .slider-track img {
        width: 20%;
    }
    .quotesection {
        padding: 0 75px;
    }
    .centersection {
        padding: 100px 75px 280px;
    }
    .threesection {
        padding: 100px 75px;
    }
    .threesection .sectioninner{
        gap: 60px;
        width: 100%;
    }
    .threesection .sectioninner .endeavours .details {
        padding: 25px 28px;
    }
    .threesection .sectioninner .endeavours .details .heading {
        font-size: 22px;
        line-height: 28px;
    }
    .threesection .sectioninner .endeavours .details .content {
        font-size: 19px;
        line-height: 30px;
    }
    .changesection {
        padding: 0 75px 100px;
    }
    .quotesection .inner .quote-heading{
        width: 65%;
    }
    .threesection .sectioninner .endeavours .details .content br{
        display: none;
    }
    .footer {
        padding: 0px 75px 250px;
    }
    .saarsamvaad-talk {
        padding: 0 75px 100px;
    }
    .slick-prev {
        left: 48% !important;
    }
  }
  @media (max-width: 1200px){
    .slick-prev {
        left: 47% !important;
    }
  }
  @media (max-width: 1024px){
    #mainHeader.show {
        padding: 10px 35px;
    }
        .slidersection {
            padding: 55px 0 55px 35px;
        }
        .left-content .content-heading {
            font-size: 32px;
            line-height: 34px;
            margin: 0 0 25px 0;
        }
        .left-content .content-des {
            padding: 0 8% 0 0;
            font-size: 22px;
            line-height: 32px;
        }
        .quotesection {
            padding: 0 35px;
        }
        .quotesection .inner {
            padding: 85px 0 85px 30px;
        }
        .quotesection .inner .quote-heading {
            font-size: 32px;
            line-height: 36px;
        }
        .centersection {
            padding: 70px 35px 190px;
        }
        .center-content {
            font-size: 24px;
            line-height: 36px;
        }
        .bottom-content {
            font-size: 34px;
            line-height: 40px;
        }
        .threesection {
            padding: 70px 35px;
        }
        .heading-three-section {
            font-size: 32px;
            line-height: 38px;
            margin: 0 0 35px 0;
        }
        .threesection .sectioninner {
            gap: 30px;
        }
        .threesection .sectioninner .endeavours .details {
            padding: 20px 25px;
        }
        .threesection .sectioninner .endeavours .details .heading {
            font-size: 20px;
            line-height: 24px;
        }
        .threesection .sectioninner .endeavours .details .content {
            font-size: 17px;
            line-height: 26px;
        }
        .changesection {
            padding: 0 35px 70px;
        }
        .changesection .heading-change-section {
            font-size: 32px;
            line-height: 38px;
        }
        .changesection .subheading-change {
            font-size: 22px;
            line-height: 30px;
        }
        .before-after {
            margin: 30px auto 0;
        }
        .footer {
            padding: 0px 35px 190px;
        }   
        .saarsamvaad-talk {
            padding: 0 35px 80px;
        } 
        .slick-prev {
            left: 46% !important;
        }
        .slick-next {
            right: 46% !important;
        }
        .slick-prev::before, .slick-next::before{
            width: 17px;
            height: 17px;
        }
  }
  @media (max-width: 768px){
    .text-layer .banner-heading {
        font-size: 40px;
        line-height: 58px;
        margin: 25px 0 0 0;
    }
    .slidersection {
        padding: 55px 35px;
        flex-wrap: wrap;
    }
    .left-content, .right-slider {
        width: 100%;
    }
    .left-content .content-heading {
        font-size: 28px;
        line-height: 30px;
        margin: 0 0 15px 0;
    }
    .left-content .content-des {
        padding: 0;
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 20px 0;
    }
    .slider-track img {
        width: 15%;
    }
    .quotesection .inner {
        padding: 50px 0 50px 30px;
    }
    .quotesection .inner .quote-heading {
        font-size: 28px;
        line-height: 35px;
        width: 60%;
    }
    .quotesection .inner .quote-heading .quotesub {
        font-size: 20px;
        line-height: 26px;
    }
    .centersection {
        padding: 50px 35px 160px;
    }
    .center-content {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 10px 0;
    }
    .bottom-content {
        font-size: 28px;
        line-height: 32px;
    }
    .threesection {
        padding: 50px 35px;
    }
    .heading-three-section {
        font-size: 28px;
        line-height: 32px;
    }
    .threesection .sectioninner .endeavours .details {
        padding: 15px;
    }
    .threesection .sectioninner .endeavours .details .heading {
        font-size: 16px;
        line-height: 20px;
        margin: 0 0 8px 0;
    }
    .threesection .sectioninner .endeavours .details .content {
        font-size: 15px;
        line-height: 22px;
    }
    .changesection .heading-change-section {
        font-size: 28px;
        line-height: 32px;
    }
    .changesection .subheading-change {
        font-size: 20px;
        line-height: 26px;
    }
    .before-after{
        min-height: 50vh;
    }
    .slider::-webkit-slider-thumb {
        min-height: 50vh;
    }  
    .slider::-moz-range-thumb {
        min-height: 50vh;
    }
    .footer {
        padding: 0px 35px 140px;
    }
    .footer ul li img {
        height: 32px;
    }
    .saarsamvaad-talk {
        padding: 0 35px 30px;
    }
  }
  @media (max-width: 767px){
          #mainHeader.show {
        padding: 7px 15px;
    }
    #mainHeader .showlanguageheader a {
    font-size: 13px;
    line-height: 15px;
}
      .slick-slide {
    margin: 20px 0;
      }
      .slick-slider {
    padding: 0 0 5px 0;
}
          .saarsamvaad-talk .saarsamvaad-talk-heading {
        font-size: 22px;
        line-height: 26px;
        margin: 0 ;
    }
      .showlanguage a{
          font-size: 14px;
          line-height: 20px;
              text-shadow: 1px 1px #000;
      }
    .text-layer img{
        width: 130px;
    }
    .text-layer .banner-heading {
        font-size: 30px;
        line-height: 38px;
        margin: 15px 0 0 0;
    }
    .slidersection {
        padding: 35px 15px;
    }
    .left-content .content-heading {
        font-size: 22px;
        line-height: 26px;
        margin: 0 0 10px 0;
    }
    .left-content .content-des {
        font-size: 16px;
        line-height: 24px;
        margin: 0 0 15px 0;
    }
    .quotesection {
        padding: 0 15px;
    }
    .quotesection .inner {
        padding: 20px 15px 90px;
        background-position: center bottom;
    background-size: 100%;
    }
    .quotesection .inner .quote-heading {
        font-size: 22px;
        line-height: 30px;
        width: 100%;
        text-align: center;
    }
    .quotesection .inner .quote-heading .quotesub {
        font-size: 18px;
        line-height: 22px;
        margin: 0;
    }
    .centersection {
        padding: 35px 15px 110px;
        background-size: 180%;
    }
    .center-content {
        font-size: 18px;
        line-height: 26px;
    }
    .bottom-content {
        font-size: 20px;
        line-height: 28px;
    }
    .threesection {
        padding: 35px 15px;
    }
    .heading-three-section {
        font-size: 22px;
        line-height: 26px;
        margin: 0 0 25px 0;
    }
    .threesection .sectioninner {
        gap: 20px;
        flex-wrap: wrap;
    }
    .changesection {
        padding: 0px 15px 35px;
    }
    .changesection .heading-change-section {
        font-size: 22px;
        line-height: 26px;
        margin: 0 0 10px 0;
    }
    .changesection .subheading-change {
        font-size: 16px;
        line-height: 22px;
    }
    .before-after {
        min-height: 30vh;
        margin: 20px auto 0;
    }
    .slider::-webkit-slider-thumb {
        min-height: 30vh;
    }  
    .slider::-moz-range-thumb {
        min-height: 30vh;
    }
    .footer {
        padding: 0px 15px 80px;
    }
    .footer ul li img {
        height: 24px;
    }
    .footer ul {
        margin: 15px 0 0 0;
    }
    .footer .footer-heading{
        font-size: 22px;
        line-height: 26px;
    }
    .saarsamvaad-talk {
        padding: 0 15px 30px;
    }
    .slick-next {
        right: 42% !important;
    }
    .slick-prev {
        left: 42% !important;
    }
    #mainHeader .backto{
        display: none;
    }
  }