body{
  overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

:root {
    --theme-color1: #217ff3;
    --theme-color-white: #ffffff;
}


.container {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  /* overflow: scroll; */
  background-attachment: scroll;
}

/* Black shade (between slide and triangle) */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%; /* adjust */
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 1.05),
    rgba(0, 0, 0, 0.60),
    rgba(0, 0, 0, 0.40),
    transparent
  );
  z-index: 1; /* sits above bg but below triangle */
}

/* Triangle overlay (fixed on top of everything except text) */
.container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 94%;
  background: url("images/banner-bg.jpg") no-repeat center;
  background-size: cover;
  pointer-events: none;
  z-index: 2; /* above shade */
}

/* Text above all */
.container #hero-title,
.container #hero-text {
  position: relative;
  z-index: 3;
}

/* ---------------- NAVBAR ---------------- */

.header {
    width: 90vw;
    height: auto;
    padding: 10px;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px;
    /* position: sticky; */
    color: white;
    /* top: 0; */
    z-index: 9999; /* stay above other sections */
    transition: all 0.3s ease;
}

.navbar img {
    max-width: 178px;
    height: auto;
    position: relative;
    z-index: 3;
}

.nav-content {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-content li {
    font-size: 19px;
    padding: 15px;
    z-index: 999;
    padding-bottom: 5px;
    
}

.underline-anim {
    text-decoration: none;
    color: var(--theme-color-white);
    position: relative;
}

.underline-anim::after {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -7px;
    width: 100%;
    height: 3px;
    background-color: var(--theme-color1);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.underline-anim:hover::after {
    transform: scaleX(1);
}

.underline-active{
    text-decoration: none;
    color: var(--theme-color-white);
    position: relative;
}

.underline-active::after{
    content: "";
    position: absolute;
    bottom: -7px;
    width: 100%;
    height: 3px;
    background-color: var(--theme-color1);
    left: 0%;
}

.contact{
    z-index: 3;
}

.contact-icon {
    font-size: 25px;
    background-color: var(--theme-color1);
    border-radius: 50%;
    padding: 10px;
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.info-btn {
    text-decoration: none;
    color: var(--theme-color-white);
    display: flex;
}

.info-btn div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    gap: 5px;
}



.info-btn:hover .contact-no {
    color: black;
    transition: all ease-in-out .2s;
}

/* Sticky navbar */
.navbar-sticky { 
  position: sticky;   /* make it stick to the top */
  top: 0;             /* stick at very top */
  left: 0;
  width: 100%; 
  background: #fff; 
  /* box-shadow: 0 2px 10px rgba(0,0,0,0.1);  */
  display: none;      /* hidden by default */
  justify-content: space-around; /* so content is aligned properly */
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;      /* keep above content */
  transition: all 0.8s ease-in-out; /* smooth transition */
  color: black;
}

.navbar-sticky.nav-active { 
  display: flex; 
}


.navbar-sticky .nav-content li{
    padding: 0px 15px;
}

.navbar-top.hidden { 
  display: none; 
}

.sticky-a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.652);
    font-size: 16px;
}

.a-hov:hover{
    color: black;
}
.navbar-sticky img{
    max-width: 170px;
}

/* ---------------- SLIDER ---------------- */

.slider {
    position: relative;
    width: 90%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: white;
    z-index: 3;
}

.slider-content {
    max-width: 80vw;
    z-index: 2;
}

.slider-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.slider-content p {
    font-size: 1.2rem;
}

.slider-content .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #0b63d6;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
}
#slider-title{
    width: 80vw;
}


.arrows{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    bottom: 10%;
}

.prev, .next{
    position: relative;
    border-radius: 50%;
    background-color: white;
    padding: 10px;
    cursor: pointer;
    opacity: 0.7;
    user-select: none;
    z-index: 3;
}

.prev:hover, .next:hover{
    opacity: 1;
}


#slider-text{
    margin-left: 65%;
}

#slider-title{
    font-size: 76px;
}

#slider-sub-title{
    font-size: 20px;
    border-bottom: 1px solid var(--theme-color1);
}


.slider-content h2, .slider-content a, 
.slider-content p {
  opacity: 0;
  transform: translateY(50px);  /* start below */
  animation: slideUp 0.8s ease forwards; /* animate in */
}

 .slider-content span{
    opacity: 0;
  transform: translateY(60px);  /* start below */
  animation: slideUp 0.8s ease forwards; /* animate in */
 }

.slider-content p {
  animation-delay: 0.3s; /* paragraph comes slightly after heading */
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);  /* move to normal position */
  }
}

.auto-cont{
  max-width: 1340px;
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.main-content{
    display: flex;
    justify-content: space-between;
    max-width: 90vw;
    overflow-x: hidden;
}

.imgs {
  position: relative;
  display: inline-block;
  margin: 0px 30px;
}

.imgs figure {
  position: absolute;
  margin: 0;
  /* transition: transform 0.5s ease, opacity 0.5s ease; */
}

.imgs .img-1 {
  top: 0;
  left: 0;
  z-index: 1;
}


.img-1 img{
    max-width: 400px;
}

.img-2 img{
    max-width: 300px;
    border: 10px solid white;
}

.imgs .img-2 {
    top: 66px;
    left: 3in;
  z-index: 2;
}



/* White shade overlay */
.overlay-anim::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /*don’t block mouse events*/ 
  opacity: 0;
} 

/* Animation */
.overlay-anim:hover::after {
    background: rgba(255, 255, 255, 0.3); 
    animation: slideDown 0.8s forwards ease-in-out;
}

@keyframes slideDown {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
    height: 0%;
  }
}



.info{
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 53%;
    position: relative;
    padding-bottom: 99px;
}

  .heading {
        font-size: 1.41rem;
    font-weight: 600;
    line-height: 1.4; /* better spacing between lines */
    /* width: 70%; */
  }

  

  #animate-text {
    display: inline-block;
    white-space: pre-wrap; /* preserve spaces and line breaks */
  }

  .char {
    display: inline-block;
    color: #aaa;         /* start gray */
    opacity: 0.2;
    transform: translateY(10px);
    animation: fadeInUp 1s forwards;
    animation-timeline: view();
    animation-range: entry 0% cover 50%;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      color: #111;
      transform: translateY(0);
    }
  }

  #abt-us{
    color: var(--theme-color1);
    font-weight: 100;
    font-size: 14px;
  }

  .info p{
    padding: 20px 10px;
    line-height: 30px;
    color: rgb(106, 106, 106);
  }

  .bc{
    display: flex;
    gap: 6px;
  }

  .bc img{
        width: 100px;
    height: 90px;
  }

  .bc-text h2{
    padding-left: 6px;
  }

  .bc-text p{
    width: 76%;
  }

  

  .card{
    background-color: #f4f5f8;
    width: 25%;
    /* height:200px; */
    padding: 30px 30px;
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    flex-direction: column;
    border-top: 6px solid var(--theme-color1);
  }
  .card h2{
    padding-bottom: 10px;
  }

  .card button{
    /* outline: none; */
    border: none;
    background-color: transparent;
    color: rgb(106, 106, 106);
    width: 50%;
    cursor: pointer;
    padding-top: 10px;
  }

  .card button:hover{
    color: black;
    font-weight: bold;
  }

  .card:hover{
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s ease-in-out;
  }

  .dm{
    position: absolute;
    bottom: 105px;
  }

  .dm-btn{
    padding: 20px 15px;
    background-color: var(--theme-color1);
    color: var(--theme-color-white);
    border: none;
    font-weight: bolder;
    width: 250px;
  }

  .services-cont{
    
    
    padding-top: 30px;
    background: #f9f9f9;
  }

.heading-2{
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 1.41rem;
}

.heading-2 .scroll-text{
    width: 621px;
    text-align: center;
}



.services-section .service-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.services-section .service-block .inner-box {
  max-width: 360px;   /* Prevent full row width */
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.services-section .service-block .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Image Box */
.services-section .service-block .image-box {
  position: relative;
  overflow: hidden;
  height: 220px; /* fixed height for consistency */
}

.services-section .service-block .image-box img {
  height: 100%;
  width: auto; /* no full width stretching */
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: transform 0.4s ease;
}

.services-section .service-block .inner-box:hover .image-box img {
  transform: scale(1.05);
}

/* Icon Box */
.services-section .service-block .icon-box {
  position: absolute;
  bottom: -25px;
  left: 20px;
  background: #007bff;
  color: #fff;
  font-size: 28px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Content Box */
.services-section .service-block .content-box {
  padding: 50px 25px 30px;
  text-align: left;
}

.services-section .service-block .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.services-section .service-block .title a {
  color: inherit;
  text-decoration: none;
}

.services-section .service-block .text {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6em;
}

/* Read More Link */
.services-section .service-block .read-more {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  /* color: #007bff; */
  text-decoration: none;
  transition: color 0.3s ease;
    color: rgb(106, 106, 106);

}

.services-section .service-block .read-more i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.services-section .service-block .read-more:hover {
  color: black;
}

.services-section .service-block .read-more:hover i {
  transform: translateX(3px);
}

.auto-container{
      display: flex;
    justify-content: center;
    padding: 80px 10px 0px;
  background-image: url(images/service-bg-1.png);
  background-repeat: no-repeat;
}

.auto-container .row{
    display: flex;
  flex-wrap: wrap;
  gap: 30px; /* space between cards */
  justify-content: center;
  width: 92%;
}

.cta-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 20px 25px;
      max-width: 700px;
      margin: 50px auto;
      font-family: Arial, sans-serif;
    }

    .cta-text {
      font-size: 16px;
      color: #555;
    }

    .cta-text a {
      margin-left: 8px;
      text-decoration: none;
      color: blue;
      font-weight: 500;
    }

    .cta-text a:hover {
      text-decoration: underline;
    }

    .cta-btn {
      background: #1e88ff;
      color: #fff;
      font-size: 14px;
      font-weight: bold;
      padding: 12px 25px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.3s;
    }

    .cta-btn:hover {
      background: #006fe6;
    }

    

.great-ideas{
    background-color: #343248;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.left{
    padding: 0 109px;
    background-image: url(images/pattern-3.png);
    background-size: cover;
    width: 36%;
    padding-top: 87px;
    padding-bottom: 40px;
}

.left .scroll-text{
    filter: invert();
    padding-top: 10px;
    font-size: 46px;
}

.heading-3{
  padding-bottom: 10px;
}

.innvo h2{
  width: 67%;
}

.right img{
    width: 100%;
}

.right{
    width: 60%;
}

.innvo{
    display: flex;
    width: 70%;
    color: white;
    align-items: center;
    padding-bottom: 21px;
}

.left #abt-us{
  color: #8b8b8c;
  
}

.left p{
  color: #8b8b8c;
  line-height: 30px;
  padding-bottom: 10px;
}


.l-items li {
  list-style: none;
  padding: 10px 0;
  color: #cccccc;
}

.excellent{
  padding: 91px 29px;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  background-image: url(images/about1-bg.jpg);
}
.ex-left{
  width: 434px;
}

.ex-left p{
  color: rgb(106, 106, 106);
  line-height: 30px;
  padding-bottom: 25px;
}

.imgs-set{
  display: flex;
  gap: 10px; 
  /* margin-left: -105px;
  padding-right: 70px; */
  width: 61%;
}

.innvo-2{
  display: flex;
  align-items: center;
  gap: 10px;
}

.innvo-2 img{
  width: 70px;
}

.ex-right{
  display: flex;
  width: 50%;
  gap: 40px;
  position: relative;
}

.ex-left .scroll-text{
  padding-bottom: 21px;
  font-size: 44px;
}


.cli-con{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* padding: 20px 10px; */
  width: 30%;
}

.client h3{
  padding-bottom: 10px;
  line-height: 30px;
}

.client p{
  padding-bottom: 10px;
  line-height: 30px;
  color: rgb(106, 106, 106);
}

.bor{
  width: 100%;
  border: 3px solid black;
  margin-top: 15px;
  margin-bottom: 22px; 
}

#top-img{
  position: absolute;
    bottom: -129px;
    right: 90px;
}

.img-on-img img{
  width: 100px;
}

.faq img{
  width: 50%;
  background-image: url(images/banner-bg.jpg);
  position: relative;
  z-index: 3;
}

.footer{
  margin: 0;
  padding: 0;
}

.faq{
  display: flex;
  padding-top: 100px;
  padding-left: 0;

  /* justify-content: space-between; */
  gap: 20px;
}

.faq-text{
  width: 50%;
  background-color: #f4f5f8;
  padding: 8% 5%;
}

.faq-text .scroll-text{
  width: 392px;
  padding-bottom: 50px;
}

 .faq-container {
      max-width: 600px;
      /* margin: auto; */
    }

    .faq-item {
      background: #fff;
      margin-bottom: 12px;
      border-radius: 4px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0,0,0,0.08);
      border: 1px solid #e6e6e6;
      transition: all 0.3s ease;
    }

    .faq-question {
      padding: 18px 20px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #111;
    }

    .faq-question:hover {
      background: #f2f4f7;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      color: #555;
      font-size: 15px;
      line-height: 1.6;
      transition: all 0.3s ease;
    }

    .faq-item.active .faq-answer {
      max-height: 200px; /* adjust if answers are longer */
      padding: 15px 20px;
    }

    .faq-icon {
      transition: transform 0.3s ease;
      font-size: 20px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(90deg);
    }

    .final-footer{
      text-align: center;
      background-color: black;
      color: #7f7f7f;;
      padding: 30px 0px;
    }

    .final-footer a{
      text-decoration: none;
      color: #7f7f7f;;
    }

    .final-footer a:hover{
      text-decoration: underline;
      color: #7f7f7f;;
    }