/* Custom CSS for Project Gallery Lightbox Integration */

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.project-gallery a {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.project-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.project-gallery a:hover img {
    transform: scale(1.05);
}

.gallery__icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 5px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-gallery a:hover .gallery__icon {
    opacity: 1;
}
/* Custom CSS for Project Gallery Lightbox Integration end */

/* css for slider which is removed  */
.slider__bg {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.slider__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  clip-path: ellipse(58% 87% at 103% 46%);
}

.slider__content {
  position: relative;
  z-index: 2;
}

.slider__shape {
  position: relative;
  z-index: 2;
}

/* CORE CSS changes */

:root {
  --bg-dark: #0b1220;
  --bg-mid: #111b2e;
  --bg-light: #f6f8fc;

  --primary: #4f6cff;

  --text-dark: #0f172a;
  --text-light: #ffffff;

  --radius: 14px;
}

/*Hero section css end */

.hero {
  background: linear-gradient(120deg, var(--bg-dark), var(--bg-mid));
  padding: 100px 0;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero__container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__content {
  flex: 1;
  max-width: 550px;
}

.hero__tag {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero__title {
  font-size: 48px;
  line-height: 1.2;
  margin: 15px 0;
  color: var(--text-light);
}

.hero__text {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
}

.hero__actions {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.btn-primary {
  background: var(--tg-theme-primary);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  border-radius: 50px;
}

/*HERO IMAGE*/

.hero__visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero__image-card {
  width: 100%;
  width: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: rotate(1deg);
  background: #fff;
}

.hero__image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/*HERO → SERVICES TRANSITION*/
/* .hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg-light));
} */
.hero {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .hero {
    padding: 60px 0;
  }

  .hero__container {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .hero__content {
    max-width: 100%;
    text-align: center;
  }

  .hero__visual {
    width: 100%;
  }

  .hero__image-card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero__title {
    font-size: 34px;
  }

}

/* Hero section css end */

.footer__bg {
    background-size: cover;
    background-position: center;
    padding: 195px 0 0;
    margin-top: -110px;
    background: linear-gradient(120deg, var(--bg-dark), var(--bg-mid));
}

/* Breadcrumb background overlay */
.breadcrumb__bg::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: linear-gradient(120deg, #080f1c, var(--bg-dark));

}

.choose__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}



/* Submenu indicator for navigation */

.tgmenu__main-menu li.menu-item-has-children > a::after {
    content: "▾";
    font-family: inherit;
    transform: none;
    margin-left: 3px;
    font-size: 12px;
}