/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}



/*** Topbar End ***/


/*** Navbar Start ***/
.sticky-navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    z-index: 999;
    transition: all 0.3s ease;
    padding-left: 10px;
    padding-right: 10px;
}

/* On scroll: fixed at top, with background */
.sticky-navbar.scrolled {
    position: fixed;
    top: 0;
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sticky-navbar .nav-link {
    color: #000;
}

.sticky-navbar.scrolled .nav-link {
    color: #000 !important;
}



.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: #000;
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #f87219 !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 767px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .sticky-navbar {
        padding-left: 90px;
        padding-right: 90px;
        background: transparent;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



.carousel-item img {
  object-fit: cover;
  height: 100vh;
}

.carousel.fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

/*** Navbar End ***/


/*** Carousel Start ***/

#mobileVideo {
    display: none;
}

/* When screen width <= 767px */
@media (max-width: 767px) {
    #desktopVideo {
        display: none;
    }
    #mobileVideo {
        display: block;
    }
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .3), rgba(0, 0, 0, .3)), url(../img-used2/banner2.png ) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

/* .button-color {
    background-color: #2e2d2d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button-color:hover {
    background-color: #1a1a1a;
}

.service-img-wrapper {
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    height: 180px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-text {
    color: black;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.service-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.service-list li::before {
    content: "• ";
    color: #ff9d3f;
    font-weight: bold;
    margin-right: 5px;
}

.services .services-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    height: 100%;
}

.services .services-item:hover {
    transform: translateY(-5px);
}

@media (min-width: 992px) {
    .col-lg-5th {
        width: 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}


@media (max-width: 991px) {
    .col-lg-5th {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .col-lg-5th {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
} */



.gallery {
  overflow: hidden;
  height: 50vh;
  display: flex;
  position: relative;
}

.gallery .imgWrap {
  cursor: pointer;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: all 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.gallery .imgWrap .caption {
  position: absolute;
  inset: 0; /* top, right, bottom, left = 0 */
  background-color: rgba(238, 160, 59, 0.75);
  border-top: 3px solid #d64b31;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  opacity: 0;
  z-index: 2;
}


.gallery .imgWrap:hover .caption {
  opacity: 1;
}

.gallery .imgWrap:hover {
  flex-grow: 2.25;
}

.gallery .imgWrap:not(:hover) {
  flex-grow: 0.8;
}






@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.process-section {
  text-align: center;
  padding: 80px 20px;
  background: 
    linear-gradient(135deg, rgba(227, 242, 253, 0.9), rgba(252, 228, 236, 0.9)),
    url('../img-used2/glassbg.png') no-repeat center center / cover;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.process-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(4) { animation-delay: 0.6s; }
.process-step:nth-child(5) { animation-delay: 0.8s; }

.icon-glass {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #000;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  border: 2px solid #f36b07;
}

.icon-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #ff7a00, #ffae00);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.icon-glass:hover {
  transform: scale(1.1);
}

.process-step p {
  margin-top: 15px;
  font-weight: 600;
  color: #f36b07;
  font-size: 16px;
}

.process-description {
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.6;
  color: #333;
}

.highlight {
  background: linear-gradient(to right, #f36b07, #fbbd07);
  background-clip: text;
-webkit-background-clip: text;
color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.our-process-heading {
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #ff7a00, #ffae00);
  background-clip: text;
-webkit-background-clip: text;
color: transparent;
  color: transparent;
}

.step-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #f36b07;
  margin-top: 10px;
}


.tagline {
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(90deg, #ff7a00, #ffae00);
  background-clip: text;
-webkit-background-clip: text;
color: transparent;
  color: transparent;
  animation: fadeInUp 1s ease-out;
}

.glass-box {
  background: rgba(255, 255, 255, 0.15); /* semi-transparent white */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.glass-box:hover {
  transform: translateY(-5px);
}

.process-step a {
  text-decoration: none;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/*** Services End ***/



.offering-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.offering-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.offering-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.offering-card img {
  height: 60px;
  margin-bottom: 20px;
}

.offering-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.offering-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* Video start */



/* Video end */



/* Keyword Bar Start */

    .keyword-bar {
  background-color: #e18845;
  padding: 30px 20px;
  text-align: center;
}

.keyword-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.keyword-list li {
  display: inline-block;
}

.keyword-list a {
  color: #fff;
  text-decoration: none; /* ✅ Removes underline */
  font-size: 14px;        /* ✅ Smaller font size */
  transition: color 0.3s;
}

.keyword-list a:hover {
  color: #ffe082; /* ✅ Soft golden hover color */
}


/* Keyword Bar End */



/* Internation keyword bar start */

  .int-keyword-bar {
  background-color: #e18845;
  padding: 30px 20px;
  text-align: center;
}

.int-keyword-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.int-keyword-list li {
  display: inline-block;
}

.int-keyword-list a {
  color: #fff;
  text-decoration: none; /* ✅ Removes underline */
  font-size: 18px;        /* ✅ Smaller font size */
  transition: color 0.3s;
}

.int-keyword-list a:hover {
  color: #ffe082; /* ✅ Soft golden hover color */
}


/* Internation keyword bar start */





/* Client Start */

.client-slider {
  overflow: hidden;
  position: relative;
  padding: 120px 0; /* Increased top & bottom spacing */
  background: #ffffff;
}

.client-heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}

.client-track {
  display: flex;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.client-logo {
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}

.client-logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
  display: block;
}

.client-logo:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 576px) {
  .client-logo {
    height: 80px;
    padding: 0 15px;
  }

  .client-logo img {
    max-height: 60px;
  }
}

/*** Project Start ***/
/* .project-img {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.project-img img {
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.project-content {
    position: absolute;
    inset: 0; 
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    transition: opacity 0.4s ease 0.1s; 
}

.project-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 0 10px;
}


.project-item:hover .project-content {
    opacity: 1;
}


.project-item:hover img {
    transform: scale(1.05) translateY(-5px);
}

.project-item:hover .image-shadow {
    box-shadow: none;
}

@media (max-width: 576px) {
    .project-content h4 {
        font-size: 16px;
    }
} */


/* .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  position: relative;
  margin-bottom: 20px;
}

.stall-card {
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.stall-card:hover {
  transform: translateY(-4px);
}

.stall-img-wrapper {
  position: relative;
  overflow: hidden;
}

.stall-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.stall-card:hover .stall-img {
  transform: scale(1.05);
}

.stall-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.stall-card:hover .stall-overlay {
  opacity: 1;
}

.stall-overlay h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.row.g-4 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}


@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  .stall-img {
    height: 220px;
  }
} */


.modern-stalls-section {
  background: #f5f5f5;
}

.modern-section-title {
  font-size: 34px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.modern-stall-tile {
  position: relative;
  display: block;
  overflow: hidden;
}

.modern-stall-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.modern-stall-tile .tile-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  transition: bottom 0.4s ease;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.modern-stall-tile h5 {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.modern-stall-tile:hover img {
  transform: scale(1.08);
}

.modern-stall-tile:hover .tile-overlay {
  bottom: 0;
}

.modern-stall-tile:hover h5 {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .modern-stall-tile img {
    height: 200px;
  }

  .modern-section-title {
    font-size: 28px;
  }
}





/*** Project End ***/


/*** Blog Start ***/

.blog .blog-item {
    height: 100%;
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    background: rgba(246, 138, 10, .3);
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img::after {
    width: 100%;
    height: 100%;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-heading {
    position: relative;
    background: var(--bs-white);
}

.blog .blog-item .blog-heading a.h4 {
    position: relative;
    width: 100%;
    display: inline-flex;
    transition: 0.5s;
    z-index: 2;
}

.blog .blog-item .blog-heading::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-heading::after {
    width: 100%;
    background: #f87219;
}

.blog .blog-item:hover .blog-heading a.h4 {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-heading a.h4:hover {
    color: #ff9d3f;
}

.btn-primary2 {
    color: #fff;
    background-color: #ff9d3f;
    border-color: #ff9d3f;
}


/*** Blog End ***/


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgba(239, 239, 241, 0.8);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 15px solid var(--bs-white);
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/

.testimonial-item {
    background: #F5F5DC;

}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dad0c1;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    /* border-radius: 6px; Small rounding for a modern rectangle */
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.03);
}


/*** Testimonial End ***/


/*** Contact Start ***/
.contact-section-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    overflow: hidden
}

.contact-bg-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border: none;
}

.contact-form-box {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 500px;
    z-index: 2;
}

.contact-form {
    background: rgba(248, 114, 25, 0.15); /* transparent orange */
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 1);
    border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-form-box {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        padding: 1rem;
        margin: 0 auto;
        width: 100%;
        max-width: 90%;
    }

    .contact-form {
        background: rgba(248, 114, 25, 0.95);
        padding: 1.5rem;
    }
}


.map-top-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .2), transparent);
    z-index: 1;
}


/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/



/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 60%;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 1000;
  }
  
  .slide-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    cursor: pointer;
    padding: 10px 0;
    padding-left: 15px;
    width: 50px;
    transition: width 0.3s ease;
    white-space: nowrap;
  }
  
  .slide-button .text {
    opacity: 0;
    margin-left: 10px;
    transition: opacity 0.3s ease;
  }
  
  .enquire-btn {
    background-color: #7e3ff2;
    color: #ff6600;
    border-radius: 50px 0 0 50px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .whatsapp-btn {
    background-color: #30cd98;
    border-radius: 50px 0 0 50px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    color: #FFFFFF;
  }
  
  .bdms-floating-btn {
    background-color: #ff9500;
    border-radius: 50px 0 0 50px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .slide-button:hover {
    width: 160px;
  }
  
  .slide-button:hover .text {
    opacity: 1;
  }
  
  
  /* Enquire Button Popup Styles */

  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.popup {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  text-align: center;
}

.popup-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #333;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.2s ease;
}

.popup-content input:focus,
.popup-content textarea:focus {
  border-color: #7e3ff2;
  box-shadow: 0 0 5px rgba(126, 63, 242, 0.3);
}

.popup-content button {
  background-color: #7e3ff2;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.2s ease;
}

.popup-content button:hover {
  background-color: #682de6;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}

.close:hover {
  color: #333;
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}



/* Design upload form start */

  .upload-popup {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease-in-out;
}

.upload-popup-content {
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  text-align: center;
}

.upload-popup-content h2 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #222;
}

.upload-popup-content input[type="text"],
.upload-popup-content input[type="email"],
.upload-popup-content input[type="tel"],
.upload-popup-content input[type="file"] {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.upload-popup-content input[type="file"] {
  background-color: #f9f9f9;
}

.upload-popup-content button {
  background-color: #7e3ff2;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

.upload-popup-content button:hover {
  background-color: #5e2bc9;
}

.upload-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #888;
}

.upload-close:hover {
  color: #000;
}

.file-note {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: -5px;
}

.hidden-upload {
  display: none;
}


/* Design upload form end */

  

/* Calculator CSS */

/* Floating Button Panel & Popup Styling */
.bdms-floating-panel {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
  }
  

  
  .bdms-floating-btn:hover {
    background-color: #e39400;
  }
  
  .bdms-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }
  
  .bdms-popup-form {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    max-height: 95vh;
    overflow-y: auto;
  }
  
  .bdms-popup-close {
    text-align: right;
    font-size: 1.2rem;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
  }
  
  /* Form Style */
  .bdms-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .bdms-form-grid select,
  .bdms-form-grid input,
  .bdms-message-box {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #feecdf;
  }
  
  .bdms-message-box {
    grid-column: span 2;
    resize: vertical;
    min-height: 80px;
  }
  
  .bdms-table {
    background: #444;
    color: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-top: 10px;
    border-collapse: collapse;
  }
  
  .bdms-table th, .bdms-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #666;
  }
  
  .bdms-table th {
    background-color: #222;
  }
  
  .bdms-submit-btn {
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #f4a340;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 600px) {
    .bdms-form-grid {
      grid-template-columns: 1fr;
    }
  
    .bdms-message-box {
      grid-column: span 1;
    }
  }




  /* Basic Styles */
  /* #portfolio-flters li {
    cursor: pointer;
    padding: 5px 15px;
    border: 1px solid #ddd;
    margin: 5px;
    border-radius: 20px;
    transition: all 0.3s;
}

#portfolio-flters li.active, 
#portfolio-flters li:hover {
    background-color: #FF6600;
    color: #fff;
    border-color: #FF6600;
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-img img {
    transition: 0.5s;
}

.portfolio-img:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;  
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 1;
    pointer-events: none; 
    transition: opacity 0.3s ease;
  }

.category-name{
    color: white;
    font-size: 40px;
}

  .portfolio-img:hover .portfolio-overlay {
    opacity: 1;
    pointer-events: auto; 
  } */



/* ————— Filter Buttons ————— */

#portfolio-flters {
  list-style: none;
  padding: 0;
  margin: 40px 0 20px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

#portfolio-flters li {
  font-size: 17px;
  font-weight: 500;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  padding: 8px 14px;
  transition: color 0.3s ease;
}

#portfolio-flters li::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: 0;
  background-color: #333;
  transition: width 0.3s ease;
}

#portfolio-flters li:hover::after,
#portfolio-flters li.active::after {
  width: 100%;
}

#portfolio-flters li.active,
#portfolio-flters li:hover {
  transform: scale(1.05);
}

/* ————— Gallery Items (reuse your existing styles) ————— */
.portfolio-img {
  height: 250px;
  position: relative;
  overflow: hidden;
  border: 1px solid #000000;
  /* border-radius: 8px; */
}
.portfolio-img img {
  height: 100%;
  width: 100%;
  transition: transform .5s;
  pointer-events: none; /* This allows the image to be clicked even when overlay is on top */
}
.portfolio-img:hover img {
  transform: scale(1.1);
}
.portfolio-overlay {
  position: absolute; top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
  z-index: 2; /* Overlay appears above the image */
    pointer-events: auto; /* Ensures the overlay can be clicked */
}
.portfolio-img:hover .portfolio-overlay {
  opacity: 1;
}
.category-name {
  color: #fff;
  font-size: 1.5rem;
}

.modal.fade .modal-dialog {
    transform: tracliate(0, -50px);
    transition: transform 0.3s ease-out;
  }
  .modal.show .modal-dialog {
    transform: translate(0, 0);
  }




  /* Why choose us */

  .card:hover {
    transform: scale(1.03);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .bg-color-why-choose-us{
    background-color: #ff9d3f;
  }


/* About us Page  */

.hero-section {
      position: relative;
      height: 50vh;
      overflow: hidden;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;

    }

    .hero-section video {
      position: absolute;
      top: 0;
      left: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
      z-index: -2; /* Behind everything */
    }


    .hero-section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.3); /* dark overlay for readability */
      z-index: -1;
    }

    .hero-heading {
      font-size: 3rem;
      font-weight: 600;
      margin-bottom: 70px;
      z-index: 1;
      color: white;
    }

    .marquee-wrapper {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
    }

    .marquee-content {
      display: inline-flex;
      animation: scroll-marquee 20s linear infinite;
      font-size: 1.2rem;
      font-weight: 500;
      padding: 10px 0;
      gap: 30px;
    }

    .marquee-content span {
      position: relative;
    }

    .marquee-content span::after {
      content: '|';
      margin-left: 10px;
      color: #ccc;
    }

    /* Remove | from the very last item using nth-of-type */
    .marquee-content span:last-of-type::after {
      content: '';
    }

    @keyframes scroll-marquee {
      0% {
        transform: translateX(-50%);
      }
      100% {
        transform: translateX(0%);
      }
    }


    .vision-section {
  position: relative;
  height: 50vh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(1);
}

.vision-overlay {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.vision-title {
  color: white;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 50px;
  border-bottom: 2px solid white;
  display: inline-block;
}

.vision-text {
  font-size: 1.25rem;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  font-weight: 300;
}




/* About us Page  */


/* Digital engagement start */

  #digital-engagement {
    font-family: 'Segoe UI', sans-serif;
  }
  .ratio iframe {
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  h4 {
    font-weight: 600;
    margin-bottom: 10px;
  }
  ul {
    padding-left: 20px;
  }
/* Digital engagement end */


/* Startup Popup Start */

.startup-popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.startup-popup-glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0,0,0,0.3);
  color: #fff;
  position: relative;
  animation: fadeIn 0.4s ease;
}

.startup-popup-header {
  text-align: center;
  margin-bottom: 20px;
}

.startup-popup-header img {
  width: 60px;
  margin-bottom: 10px;
}

.startup-popup-header h2 {
  font-size: 20px;
  margin: 5px 0;
  color: #fff;
}

.startup-popup-header p {
  color: #ff4444;
  font-weight: bold;
  margin: 0;
}

.startup-popup-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.startup-popup-form input {
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.startup-popup-form input::placeholder {
  color: #eee;
}

.startup-popup-form button {
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  background: #f8b400;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
}
.startup-popup-form button:hover {
  background: #e09e00;
}


.startup-close-btn {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Startup Popup Start */