@font-face {
  font-family: FontOne;
  /*src: url("/landing_ink/Assets/JosefinSans-Regular.ttf");*/
  src:url("/landing_ink/Assets/Inter-Regular.otf");
}

::selection {
            background-color: #1a1a1a;
            color: #f5f5f5; 
        }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fbfbfb;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #b7b7b7;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: FontOne;
  font-weight: 400;
}

html,
body {
  cursor: url('https://inkmedia.in/landing_ink/Assets/cursor_.png'), auto;
  overflow-x: hidden;
  background:#ffffff;
}

a {
  text-decoration: none;
  color: white;
}

p{
     /*font-family: "Josefin Sans";*/
     font-weight:300;
     line-height:2.3rem;
}


#main {
  /* width: 100%;
    min-height: 100vh; */
}


/*contact cta button*/
.contact_cta_div{
    background: #ffffffa1;
    border-top: 1px solid #0000003b;
    border-bottom: 1px solid #0000003b;
    border-left: 1px solid #0000003b;
    backdrop-filter: blur(10px);
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    padding: 5px 0px 0 7px;
    position: fixed;
    bottom: 30%;
    right: 0;
    z-index: 9;
}

.contact_cta_div .call_icon{
    font-size:35px;
}


/* popup */
.popup-form {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: end;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}

/* Popup content */
.popup-content {
  background-color: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: translateX(100%);
}

.popup-content h2 {
  color: #c90000;
  font-size: 50px;
  margin-bottom: 20px;
}

/* Close button */
.close {
  margin-right: 15px;
  font-size: 50px;
  padding: 0px 15px 5px 15px;
  border-radius: 40px;
  background: white;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

/* Basic form styling */
form label {
  margin-top: 10px;
  color: #000;
  display: block;
}

form input,
form textarea {
  border: none;
  background: transparent;
  width: -webkit-fill-available;
  padding: 12px 0;
  margin-top: 5px;
  font-size: 20px;
  border-bottom: 1px solid #000;
}

input:focus,
textarea:focus {
  border-bottom-color: red;
  outline: none;
}

form button {
  background-color: #c90000;
  color: #fff;
  padding: 10px 30px;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  font-size: 25px;
  border-radius: 50px;
}

form button:hover {
  background-color: #b10000;
}

/* loader */
#loader {
  height: 100%;
  width: 100%;
  background-color: #000;
  position: fixed;
  z-index: 9999;
  top: 0;
  transition: all ease 1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h1 {
  font-size: 4vw;
  color: transparent;
  background: linear-gradient(to right, pink, orangered);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  animation-name: load;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
  font-weight:bold;
}

#loader h1:nth-child(2) {
  animation-delay: 2s;
}
#loader h1:nth-child(3) {
  animation-delay: 3s;
}

@keyframes load {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
  }
}

/*.cursor {*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  mix-blend-mode: difference;*/
/*  background-color: #ffffff;*/
/*  border-radius: 50%;*/
/*  position: fixed;*/
/*  pointer-events: none;*/
/*  transform: translate(-50%, -50%);*/
/*  z-index: 99999;*/
/*  transition: background-color 0.2s ease, width 0.2s ease, height 0.2s ease;*/
/*}*/

#main:hover .cursor {
  mix-blend-mode: difference;
  background-color: #ffffff;
  width: 20px;
  height: 20px;
}

.testimonials_div {
    background: #fbfdff;
    padding: 0px 20px 80px 0px;
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: auto !important;
  bottom: auto !important;
  left: 25% !important;
}

.testimonials-section {
    width: 50%;
    display: flex;
    /* max-width: 800px; */
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 0;
    flex-direction: column;
    justify-content: center;
}

.testimonials_div h1 {
    position:relative;
    border-bottom-right-radius: 100px;
    display: flex;
    color: white;
    background: crimson;
    width: 50%;
    line-height: 1.3em;
    height: 70vh;
    font-size: 4vw;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.swiper-container {
  width: 100%;
  padding: 20px;
}


.testimonial-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

span.comma {
    position: absolute;
    font-size: 12vw;
    top: 35%;
    left: 20%;
}

.testimonial-card:hover {
  transform: scale(1.02);
  background-color: #cbf5dd;
}

.testimonial-text {
  font-size: 28px;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: #555;
  font-size: 20px;
  margin-top: 10px;
}

/* Swiper pagination style */
.swiper-pagination {
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* nav */
/*nav.visible {*/
/*  opacity: 1;*/
/*}*/

nav {
  /*opacity: 0;*/
  transition: opacity 0.3s ease;
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: -webkit-fill-available;
  height: 15vh;
  padding: 0vw 3vw;
  /*mix-blend-mode: difference;*/
  z-index: 999;
}


#logo a img{
    width: 8%;
    background: #0000006e;
    padding: 8px;
    backdrop-filter: blur(10px);
    border-radius: 200px;
}

#logo img{
    width:90px;
    background: #0000006e;
    backdrop-filter: blur(10px);
    border-radius: 200px;
    padding: 8px;
}

.lft-nav {
  width: fit-content;
  font-size: 1.6vw;
  /* height: 6vh; */
  overflow: hidden;
  cursor: pointer;
}

.lft-nav h1 {
  color: #fff;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

/* .lft-nav:hover #logo{
    margin-top: -5.5vh;
} */

.rght-nav {
   /*padding-right: 32px;*/
  font-size: 0.9vw;
  /* height: 3vh; */
  /*overflow: hidden;*/
  cursor: pointer;
}

.rght-nav h2 {
    background: #0000006e;
    backdrop-filter: blur(10px);
    padding: 3px 10px 4px 10px;
    border-radius: 200px;
    width: max-content;
    color: #fff;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.mobile_mail_icon{
    display:none;
}

/* .rght-nav:hover #nav-contact{
    margin-top: -3vh;
} */


.fade-h1-div{
    /*animation:fadeout 2s forwards;*/
    /*animation-timeline:scroll();*/
    padding:50px 60px;
}


.part-1 {
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
}

.content-part-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}

.rotate-div {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 3vw;
  width: 200vw;
  height: 200vh;
  background-color: #000;
  scale: 1;
}

.row-div {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  width: calc(200vw / 5);
  height: 100%;
}

.img-div {
  width: 100%;
  /*height: calc(100% / 4);*/
  border-radius: 10px;
  overflow: hidden;
}

.img-div img {
  width: 100%;
}

#row-div-2 {
  margin-top: 13%;
}

#row-div-3 {
  margin-top: 10%;
}
#row-div-4 {
  margin-top: 8%;
}
#row-div-5 {
  margin-top: 5%;
}

.overlay-div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100vh;
  background-color: #00000000;
  font-size: 5vw;
  flex-direction: column;
}
.overlay-div h1,
.overlay-div p {
  opacity: 0;
}

.overlay-div h1{
    font-size:6.5vw;
    text-align:center;
}

.overlay-div p {
    margin-top:20px;
  font-size: 20px;
}

.scroll-down {
  backdrop-filter: blur(10px);
  background: #00000061;
  border-radius: 50px;
  padding: 10px 15px;
  position: absolute;
  bottom: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.7vh;
  color: #fff;
}

.scroll-down h3 {
  font-size: 1vw;
}

.scroll-p {
  width: 6vw;
  height: 2px;
  border-radius: 50px;
  background-color: #ffffff55;
}

.scrolling {
  width: 0vw;
  height: 2px;
  border-radius: 50px;
  background-color: #fff;
}

/* ----------part-2--------- */

.part-2 {
  width: 100%;
  /* height: 100vh; */
  background-color: #fff;
}

.rounded-div-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  margin-top: -100px;
}

.rounded-div {
  position: absolute;
  left: 50%;
  width: 150%;
  height: 600%;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  transform: translate(-50%);
}

.content-2 {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /*height: 50vh;*/
  padding:160px 0 120px 0;
  background-color: #fff;
  overflow: hidden;
}


.fade-h1-div {
    overflow: hidden;
    padding:80px 60px 30px;
}

.fade-h1-div h1 span {
    opacity: 0;
    display: inline-block; 
    transform: translateY(20px); 
}

.fade-h1-div h1{
    font-size:4vw;
    /*text-align:center;*/
    line-height: 5.5vw;
}

.about_div{
    padding:30px 80px;
}

.about_div p{
    font-size:24px;
    /*text-align:center;*/
}

.fade-animation {
    opacity: 0; 
    transform: translateY(50px);
}

.text-area {
  position: absolute;
  opacity: 0.2;
  left: 5%;
  width: 100%;
  font-weight: 800;
}

.text-area-hover {
  position: absolute;
  left: 5%;
  opacity: 1;
}

.text-area h1,
.text-area-hover h1 {
  font-size: 4vw;
}

.text-area h2,
.text-area-hover h2 {
  /* margin-left: 5vw; */
  font-size: 4vw;
}

.text-area-hover h1 {
  width: 0%;
  text-wrap: nowrap;
  overflow: hidden;
}

.text-area-hover h2 {
  width: 0%;
  text-wrap: nowrap;
  overflow: hidden;
}

/* button */

.btn_div {
    margin-top:1%;
  display: flex;
  justify-content: center;
  /*transition: transform 0.5s ease, scale 0.5s ease;*/
  z-index: 99;
}

.btn_ {
  padding: 8px 30px 8px 30px;
  font-size: 20px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  background-color: white;
  transition: all 0.3s ease;
  /*will-change: transform, opacity;*/
}

.btn_:hover {
  color: #fff;
  background: #000;
  border:1px solid #fff;
}


/* services section */

/* ===== Layout ===== */
.services {
  padding: 70px 80px;
}

.services__container {
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flex wrap as requested */
  gap: 18px;
}

/* 4 cards in one row on desktop */
.service-card {
  flex: 1 1 calc(25% - 18px);
    min-width: 240px;
    position: relative;
    overflow: hidden;
    padding: 22px 20px;
    border-radius: 15px;
    background: linear-gradient(180deg, rgb(0 0 0), #980009);
    /*backdrop-filter: blur(10px);*/
    transform-style: preserve-3d;
    color: white;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-card {
    flex-basis: calc(50% - 18px);
  }
}
@media (max-width: 560px) {
  .service-card {
    flex-basis: 100%;
  }
  
  .services {
    padding: 40px 40px;
}
}

/* ===== Content ===== */
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 14px;

  transform: translateZ(35px); /* pop forward on tilt */
}
.service-card__icon .material-icons-outlined {
  font-size: 26px;
}

.service-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  transform: translateZ(28px);
}

.service-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
  transform: translateZ(18px);
}

/* ===== Parallax Icon Layer ===== */
.service-card__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.service-card__picon {
  position: absolute;
  opacity: 0.18;
  font-size: 56px;
  filter: blur(0.2px);
  transform: translate3d(0, 0, 0);
  transition: transform 120ms ease-out;
  animation: floaty 5.5s ease-in-out infinite;
}

/* individual placement */
.service-card__picon:nth-child(1) {
  top: 14px;
  right: 14px;
  animation-delay: 0s;
}
.service-card__picon:nth-child(2) {
  bottom: 18px;
  left: 16px;
  font-size: 64px;
  animation-delay: 0.6s;
}
.service-card__picon:nth-child(3) {
  top: 44%;
  left: 62%;
  font-size: 48px;
  animation-delay: 1.1s;
}

@keyframes floaty {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

/* ensure content sits above parallax layer */
.service-card > *:not(.service-card__parallax) {
  position: relative;
  z-index: 1;
}


/*#contactBtn {*/
/*  transition: opacity 0.4s ease;*/
/*  will-change: opacity;*/
/*}*/


/* Sticky fixed corner position */
/*.btn_div.sticky {*/
/*  position: fixed;*/
/*  bottom: 30px;*/
/*  right: 30px;*/
/*  left: auto;*/
/*  justify-content: flex-end;*/
/*  transform: scale(1.1);*/
/*  transition: all 0.4s ease;*/
/*}*/

/*.btn_div.unstick {*/
/*  position: relative;*/
/*  transform: none;*/
/*  justify-content: center;*/
/*}*/

/*.btn_placeholder {*/
/*  height: 0;*/
/*  transition: height 0.3s ease;*/
/*}*/



.content_section {
    margin-top: 4%;
    position: relative;
    display: flex;
    height: 60vh;
    padding: 150px 80px;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.background_video {
    position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  will-change: transform;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.8); 
    z-index: 2;
}

.content_wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
}

.content_wrapper h1 {
    font-size: 2.5vw;
    margin-bottom: 2%;
}

.content_wrapper p {
    font-size: 24px;
}


.part-7 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #1a1a1a;
}

.our-work-txt {
  position: absolute;
  mix-blend-mode: difference;
  width: 60vw;
  height: 0vh;
  z-index: 9;
}

#our {
  /*position: absolute;*/
  top: 0;
  left: 35%;
  transform: translate(-20%, -50%);
  color: #fff;
  font-size: 5vw;
}

#work {
  position: absolute;
  bottom: 0;
  right: 30%;
  transform: translate(20%, 50%);
  color: #fff;
  font-size: 5vw;
}

.our-work-txt-div {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60vw;
  height: 0vh;
  background-color: #fff;
}

.scroll-work {
  width: 100%;
  height: 60vh;
  background-color: #919191;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  margin-top: 173.5%;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.scroll-img img {
  width: 100%;
}

#demo {
  position: absolute;
  bottom: -10%;
  padding: 0.7vw 2vw;
  background-color: #d1d1d1;
  font-size: 0.8vw;
  border: none;
  border-radius: 50px;
  cursor:pointer;
}

#demo a {
  color: #000;
}


.cards_section{
    gap: 80px;
    display: flex;
    padding: 100px 40px;
    background: #000;
    flex-direction: row;
    justify-content: center;
}

.block_div {
    display: flex;
    flex-direction:column;
    justify-content: space-between;
    padding: 50px;
    background: #6d6d6d;
    height: 40vh;
    border-radius:10px;
    width:500px;
    /*width: -webkit-fill-available;*/
    transition:all ease 0.5s;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.block_div img{
    align-self:center;
    margin-top:40px;
    transform: translateZ(20px);
}

.block_div h1{
    text-align:center;
    color:#fff;
    transform: translateZ(20px);
}

.block_div:hover{
    transform: scale(1.01);
}

.block_div:hover a{
    opacity:1;
}

.block_div a{
    text-align:center;
    transform: translateZ(10px);
    padding: 50px 0 0 0;
    opacity:0;
    /*color:#980009;*/
    color:#fff;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.block_div a span {
    opacity: 0;
    transform: translateY(5px);
    margin-left: 4px;
    background: #980009;
    padding: 7px 5px 3px 5px;
    border-radius: 50px;
    color: white;
    font-weight: bold;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.block_div a:hover span {
    opacity: 1; 
    transform: translateY(0);
}

.block_div a:hover {
    transform: scale(1.02);
}




.blogs_section {
    background: #f9f9f9;
    padding: 100px 50px 30px;
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.blogs_section h1 {
    font-size: 3vw;
    text-align: center;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 60px;
}

.blog_box_div {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.blog_box {
    width: 40%;
    height: 40vh;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.blog_box:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.2);
}

.blog_content {
    width: 100%;
    /*background: rgba(255, 255, 255, 0.95);*/
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}

/* Title Styling */
.blog_title {
    font-size: 1.5vw;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
    text-align: left;
    margin: 0;
    padding: 0;
    transform: translateY(50px); 
}

/* Hide excerpt and button by default */
.blog_excerpt, .read_more {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-size: 1vw;
    color: #aeaeae;
    margin-top: 5px;
}

.read_more {
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition:all 0.3s ease-in-out;
}

.read_more:hover{
    color:#980009;
}


.blog_box:hover .blog_title {
    transform: translateY(0); 
    color: #fff;
}

.blog_box:hover .blog_content{
    backdrop-filter:blur(5px);
}

.blog_box:hover .blog_excerpt, 
.blog_box:hover .read_more {
    opacity: 1;
    transform: translateY(0);
}

.blogs_btn{
    margin-top: 40px;
    padding: 8px 20px 8px;
    font-size: 20px;
    color: #000;
    border: 1px solid #000;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.blogs_btn:hover {
    color: #fff;
    background: #000;
}



/*footer*/
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 80px 40px 15px 40px;
  text-align: left;
}

.footer-content {
  text-align: center;
}

.footer h1 {
  font-size: 46px;
  margin-bottom: 10px;
  color: white;
}

.footer p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.footer a {
  font-size: 3vh;
  /*color: #980009;*/
  color:#b9b9b9;
  text-decoration: none;
  font-weight:bold;
  transition: 0.2s ease-in-out;
}

.footer a:hover {
  color: #980009;
  /*border-bottom: 1px solid #980009;*/
}

.footer-links {
  border-top: 1px solid;
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
}

.footer-links p {
  font-size: 14px;
}

.footer-links a {
  font-size: 14px;
  color: white;
  text-decoration: none;
  margin-right: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer_contact_links {
  display: flex;
  padding: 40px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}



/*media query*/

@media only screen and (max-width:600px){
    
    #logo a img {
    width: 22%;
}

#logo img {
    width: 70px;
}
    
    .mail_desktop{
        display:none;
    }
    
    .mobile_mail_icon{
    display:block;
}

.img-div {
    height: calc(100% / 4);
}

.rght-nav {
    padding-right: 0px;
}
    
    .rotate-div {
    height: 100vh;
    align-items: center !important;
}

.contact_cta_div {
    padding: 5px 0 5px 7px !important;
}

.contact_cta_div .call_icon {
    font-size: 25px;
}

    .rght-nav h2 {
    padding: 4px 10px 0 10px;
}
.btn_div {
    margin: 6% 0 !important;
}
.fade-h1-div {
    padding: 80px 40px 30px !important;
}

.scroll-down h3 {
    font-size: 3.5vw;
}
.scroll-p {
    width: 30vw;
}
#logo a, #nav-contact a{
    font-size:2vh;
}
.content-2 {
    height: 15vh;
    padding:100px 0 60px 0;
}
.text-area h2, .text-area-hover h2 {
    font-size: 6vw;
}
.text-area h1, .text-area-hover h1 {
    font-size: 5vw;
}
.testimonial-author {
    font-size: 10px;
}
.testimonial-text {
    font-size: 18px;
}
#demo {
    padding: 1.5vw 4vw;
    font-size: 3.5vw;
}
.our-work-txt-div {
    width: 85vw;
}
.our-work-txt {
    width: 90vw;
}
.scroll-img {
    margin-top: 85.5%;
}
.footer_contact_links {
    flex-direction: column;
    align-items: center;
    padding: 10px;
}
.footer-links {
    justify-content: center;
}
.popup-content {
    padding: 35px 25px;
}
.close {
    margin-right: 10px;
}
.popup-content h2 {
    font-size: 40px;
}
form input, form textarea {
    font-size: 15px;
}
.popup-form {
    padding: 5px;
}
form button {
    padding: 8px 30px;
    font-size: 20px;
}
.footer-links{
    gap: 20px;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

.logo {
    width: 90px;
}
.content {
    padding: 20px;
}
.logo:nth-child(1) {top: 22% !important; left: 10% !important;}
.logo:nth-child(5) {top: 30% !important; left: 35% !important;}
.logo:nth-child(2) {top: 15% !important; left: 45% !important;}
.logo:nth-child(3) {top: 33% !important; left: 65% !important;}
.logo:nth-child(9) {top: 33% !important; left: 8% !important;}
.logo:nth-child(4) {top: 69% !important; left: 47% !important;}
.logo:nth-child(8) {top: 64% !important; left: 65% !important;}
.logo:nth-child(6) {top: 70% !important; left: 10% !important;}
.logo:nth-child(10) {top: 77% !important; left: 40% !important;}
.logo:nth-child(13) {
    top: 75% !important;
    left: 73% !important;
}
.logo:nth-child(14) {
    top: 65% !important;
    left: 29% !important;
}
.logo:nth-child(18) {
    top: 23% !important;
    left: 43% !important;
}
.logo:nth-child(23) {
    top: 16% !important;
    left: 74% !important;
}
.logo:nth-child(22) {
    top: 92% !important;
    left: 16% !important;
}


.disclaimer-content, {
    width: 90vw !important;
}

.modal-content {
    overflow-y: scroll;
    width: 90vw !important;
    height: 80vh !important;
    
}


.about_div{
    padding:0px 40px;
}

.about_div p{
    text-align:justify;
    font-size:14px;
    line-height:1.3rem;
}


.testimonials_heading {
    padding: 80px 40px 0 !important;
}

.testimonial-container {
    padding: 20px 40px !important;
}

.overlay-div h1 {
    font-size: 7.5vw;
}

.content_section {
    padding: 150px 40px;
}
.content_section h1{
    font-size:7.5vw;
    text-align:left;
    margin-bottom:25px;
}

.content_section p {
    font-size: 16px;
    text-align: justify;
    line-height:1.3rem;
}
.testimonials_div h1 {
    font-size: 7.5vw;
}
#our {
    transform: translate(8%, -50%);
}
.cards_section {
    flex-direction: column;
}

.blogs_section h1 {
    font-size: 7.5vw;
    line-height: 3rem;
}
.blog_box_div {
    margin-top: 8%;
    flex-direction: column;
}

.blog_excerpt, .read_more {
    font-size: 2vw;
    line-height: 1.5;
}

.blog_box {
    width: -webkit-fill-available !important;
}

.blog_title {
    font-size: 4vw;
    line-height: 1.5;
}

.timeline_part_1, .timeline_part_2, .timeline_part_3, .timeline_part_4, .timeline_part_5, .timeline_part_6, .timeline_part_7, .timeline_part_8 {
    width: 90% !important;
}

.timeline_part_1 h1, .timeline_part_2 h1, .timeline_part_3 h1, .timeline_part_4 h1, .timeline_part_5 h1, .timeline_part_6 h1, .timeline_part_7 h1, .timeline_part_8 h1 {
    font-size: 8vw !important;
}

.timeline-section p {
    font-size: 4.5vw !important;
    line-height: 1.5 !important;
}

.number_h3 {
    border-radius: 200px;
    padding: 10px 10px 10px 10px !important;
    font-size: 7vw !important;
}

.footer h1 {
    font-size: 7.5vw;
}
}



/*clients section*/
.logo-section {
     background:#ffffff;
      position: relative;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 1000px;
    }

    .content {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      text-align: center;
      z-index: 10;
    }

    .title {
      font-size: 5vh;
      color: #980009;
      margin-bottom: 1rem;
    }

    .content p {
      font-size: 2vh;
      max-width: 600px;
      line-height:1.5rem;
      margin: 0 auto;
    }

    .logo-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }

    .logo {
      position: absolute;
      opacity: 0; 
      filter: blur(10px);
      transform: scale(1.5); 
    }


    .logo:nth-child(1) { top: 20%; left: 20%; }
    .logo:nth-child(2) { top: 19%; left: 62%; }
    .logo:nth-child(3) { top: 40%; left: 80%; }
    .logo:nth-child(4) { top: 60%; left: 50%; }
    .logo:nth-child(5) { top: 30%; left: 50%; }
    .logo:nth-child(6) { top: 70%; left: 30%; }
    .logo:nth-child(7) { top: 80%; left: 10%; }
    .logo:nth-child(8) { top: 60%; left: 80%; }
    .logo:nth-child(9) { top: 40%; left: 10%; }
    .logo:nth-child(10) { top: 75%; left: 60%; }
    .logo:nth-child(11) { top: 88%; left: 68%; }
    .logo:nth-child(12) { top: 85%; left: 35%; }
    .logo:nth-child(13) { top: 75%; left: 83%; }
    .logo:nth-child(14) { top: 60%; left: 20%; }
    .logo:nth-child(15) { top: 27%; left: 74%; }
    .logo:nth-child(16) { top: 8%; left: 50%; }
    .logo:nth-child(17) { top: 63%; left: 6%; }
    .logo:nth-child(18) { top: 23%; left: 35%; }
    .logo:nth-child(19) { top: 28%; left: 6%; }
    .logo:nth-child(20) { top: 12%; left: 10%; }
    .logo:nth-child(21) { top: 8%; left: 30%; }
    .logo:nth-child(22) { top: 50%; left: 4%; }
    .logo:nth-child(23) { top: 12%; left: 80%; }




/*privacy modal*/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgb(0 0 0 / 25%);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    perspective: 6000px;
    line-height: 1.15;
}

.modal-content {
    width: 60vw;
    /*backdrop-filter: blur(20px);*/
    background: #ffffffa3;
    padding: 50px;
    border-radius: 10px;
  transform-style: preserve-3d;
  transform-origin: center;
  backface-visibility: hidden;
  transform: scale(0);
}

.close_modal {
    position: absolute;
    top: 0;
    right: 20px;
    font-size: 55px;
    cursor: pointer;
}


/*disclaimer model*/
.disclaimer-content {
  width: 40vw;
  /*backdrop-filter: blur(20px);*/
  background: #ffffffa3;
  padding: 50px;
  border-radius: 10px;
  transform-style: preserve-3d;
  transform-origin: center;
  backface-visibility: hidden;
  transform: scale(0);
}

.modal p{
    line-height:1.5em;
}


.close-disclaimer {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 55px;
  cursor: pointer;
}

.our-process-header{
    height:80vh;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
}
.our-process-header h1{
    font-size:5vw;
    color:#0e78b6;
}

.our-process-header h2{
    font-size:2vw;
    margin:20px 0;
}

.timeline-section{
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
    background:#1a1a1a;
    padding:50px;
    flex-direction: column;
    perspective: 1500px;
  overflow: hidden;
  position: relative;
}

.timeline-section > div {
    transform-style: preserve-3d;
    transform-origin: center;
}


.timeline-section h2{
    color:#fff;
    text-align:center;
    font-size:2.5vw;
}


.timeline-section p{
    font-size:1.5vw;
    line-height:2rem;
}

.timeline_part_1, .timeline_part_3, .timeline_part_5, .timeline_part_7 {
    /*left: 10%;*/
    color: #fff;
}

.timeline_part_2, .timeline_part_4, .timeline_part_6, .timeline_part_8{
    /*right: 10%;*/
    color: #fff;
}

.timeline_part_1 h1, .timeline_part_2 h1,.timeline_part_3 h1, .timeline_part_4 h1, .timeline_part_5 h1, .timeline_part_6 h1, .timeline_part_7 h1, .timeline_part_8 h1{
    font-size:3.5vw;
    margin-bottom:15px;
}


.timeline_part_1, .timeline_part_2,
.timeline_part_3, .timeline_part_4,
.timeline_part_5, .timeline_part_6,
.timeline_part_7, .timeline_part_8 {
  transform-style: preserve-3d;
  transform: translateZ(-200px) scale(0.8);
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  translate: -50% -50%;
  width: 60%;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
}



.number_h3 {
    border-radius: 100px;
    padding: 10px 10px 10px 10px;
    margin-bottom: 30px;
    background: #0e78b6;
    font-size: 4vw;
    color: #fff;
}


.timeline-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none; 
}

.timeline-section {
  position: relative; 
  z-index: 1;
}


/* ===== Timeline Dots ===== */
.timeline-dots{
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  pointer-events: none; /* dots are just indicators */
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-dots .dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  transform: scale(1);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
  opacity: 0.9;
}

.timeline-dots .dot.is-active{
  background: #0e78b6;
  transform: scale(1.25);
  opacity: 1;
}

.timeline-dots .dot.is-done{
  background: rgba(14,120,182,0.55);
}

/* ===== Skip Button ===== */
.timeline-skip{
  position: absolute;
  bottom: 22px;
  right: 22px;
  z-index: 7;
  cursor: pointer;

  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  color: #fff;

  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.timeline-skip:hover{
  transform: scale(1.03);
  background: rgba(0,0,0,0.55);
  border-color: rgba(255,255,255,0.55);
}

@media (max-width: 600px){
  .timeline-dots{
    right: 14px;
    gap: 10px;
  }
  .timeline-skip{
        bottom: 30px;
        right: 10px;
        padding: 9px 12px;
  }
}



/*testimonials new section*/
.testimonials_heading{
    display: flex;
    padding: 80px 0 0;
    justify-content: center;
    font-weight: bold;
}

.testimonial-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
        margin: 80px auto;
        padding: 20px;
        gap: 40px;
        align-items: center;
      }
      .image-area {
        position: relative;
        width: 100%;
        height: 320px;
        perspective: 1000px;
      }
      .testimonial-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
        will-change: transform, opacity;
      }
      .text-area_ h3 {
        font-size: 24px;
        font-weight: bold;
        margin: 0;
      }
      .text-area_ p.designation {
        font-size: 14px;
        color: #555;
        margin: 5px 0 20px 0;
      }
      
      .text-area_ p.quote {
        font-size: 18px;
        text-align:justify;
        color: #333;
        margin-bottom: 20px;
        line-height:1.4em;
      }
      .buttons {
        display: flex;
        gap: 10px;
      }
      .buttons button {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        border: none;
        background: #e5e7eb;
        cursor: pointer;
        font-size: 18px;
        transition: transform 0.2s;
      }
      .buttons button:hover {
        scale:1.04;
      }

      @media (max-width: 768px) {
        .testimonial-container {
          grid-template-columns: 1fr;
          gap: 20px;
        }
      }





