/* Use imported Euclid Circular A font throughout */
body,
html,
.hero-title,
.hero-desc,
.btn,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
     font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* Reset and base styles */
body,
html {
  height: 100%;
  background: #000;
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  outline: none;
}

/* Navbar */
/* Navbar Custom Styles */
/* For desktops and large screens */
.navbar-custom {
  background-color: rgb(236 231 231 /0.6);
  border-radius: 200px;
  padding: 5px;
  margin: 0 auto;
  max-width: 80%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  z-index: 10;
  transition: all 0.25s;
}

.nav-btn {
  background-color: #c74377;
  color: white;
  border-radius: 25px;
  padding: 0.8rem 1.8rem;
  font-weight: 500;
  transition: background 0.5s;
  font-size: 16px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: auto;
}

.nav-btn:hover {
  background: #fff;
  color: #181818;
  text-decoration: none;
}

/* Adjustments for the navbar brand (logo) */
.eds-logo img {
  max-height: 75px;
  width: auto;
  display: block;
  margin-right: 8px;
}


/* Hamburger icon color remains white */
.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-custom .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* Hero Section */

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 700px;
  overflow: hidden;
}

.bg-split {
  display: flex;
  height: 100%;
}

.bg-part {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.7;
  position: relative;
}


.bg-part video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.contact_img {

  height: 100vh;
  min-height: 700px;
}

.hero-title {
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  text-align: center;
  line-height: 80px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  font-family: 'Josefin Sans', sans-serif;
}

.hero-desc {
  color: #fff;
  text-align: center;
  max-width: 950px;
  margin: 1.25rem auto 2.5rem;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Josefin Sans', sans-serif;
}

.hero-btn {
  background-color: rgba(61, 61, 61, 0.6);
  color: #fff;
  border-radius: 25px;
  padding: 0.8rem 2.2rem;
  font-weight: 500;
  border: 2px solid #232323;
  transition: background 0.5s;
  font-size: 20px;
  text-decoration: none;
  display: block;
  width: fit-content;
  margin: auto;
}

.hero-btn:hover {
  background: #fff;
  color: #181818;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 26px;
  z-index: 99;
}

/* Seeing is Believing */

.seeing-container {
  max-width: 90%;
}

.section-seeing-believing {
  position: relative;
  background: #000;
  /* min-height: 700px; */
  overflow: hidden;
  padding-top: 0;
}

.seeing-heading-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  text-align: center;
  font-size: 200px;
  font-weight: 700;
  color: #fff;
  opacity: 0.33;
  line-height: 1.07;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 6px 36px #212;
}

.video-thumbnail-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  position: relative;
  z-index: 2;
  margin-left: 100px;
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  width: 92vw;
  max-width: 80%;
  border-radius: 2.5rem;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .32);
  background: #232323;
  margin-top: 150px;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  z-index: 3;
  cursor: pointer;
  padding: 0;
  width: 80px;
  height: 80px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-wrapper {
  border-radius: 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 14 / 8;
}

.video-poster {
  object-fit: cover;
  border-radius: 2.5rem;
  top: 18%;
}

.video-player {
  top: 18%;
}


@media (max-width: 1910px) {
  .seeing-heading-bg {
    font-size: 135px !important;
  }
  
}
@media (max-width: 992px) {

  .video-poster {
    top: 0%;
  }

  .video-player {
    top: 0%;
  }

  .video-thumbnail-container {
    min-height: auto;
    margin-top: 100px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
  }
}


/* Featured portfolio */
.section-featured-portfolio {
  background: #000;
  padding-top: 38px;
  padding-bottom: 20px;
  overflow: hidden;
}

.content-wrapper {
  max-width: 80%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.featured-portfolio-heading {
  color: #fff;
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

.view-all-btn {
  background: #181818;
  color: #fff;
  border-radius: 2rem;
  font-size: 20px;
  font-weight: 500;
  padding: 0.56rem 1.5rem;
  transition: background 0.5s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  border: 2px solid #232323;
  white-space: nowrap;
}

.view-all-btn:hover,
.view-all-btn:focus {
  background: white;
  color: black;
  text-decoration: none;
}

.portfolio-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 12px;
  scrollbar-width: thin;
  margin-left: -8px;
  margin-right: -8px;
  margin-top: 50px;
}

.portfolio-slider::-webkit-scrollbar {
  height: 8px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
  background: #232323;
  border-radius: 12px;
}

.portfolio-card {
  flex: 0 0 470px;
  height: 470px;
  border-radius: 2.1rem;
  overflow: hidden;
  background: #141414;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s;
}

.portfolio-card img {
  height: 100%;
  object-fit: cover;
  border-radius: 2.1rem;
  display: block;
}

/* About Agency */
.about-agency-section {
  background: #000;
  padding: 0;
  margin: 0;
}

.about-agency-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 54px 0 38px 0;
    color: #fff;
}

.about-agency-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}

.about-agency-left {
  flex: 0 0 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-agency-title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 38px;
}

.about-agency-btn {
  display: inline-block;
  background: #181818;
  color: #fff;
  border-radius: 2rem;
  font-size: 20px;
  font-weight: 500;
  padding: 0.7rem 1.7rem;
  border: 2px solid #232323;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  transition: background 0.5s;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
}

.about-agency-btn:hover,
.about-agency-btn:focus {
  background: white;
  color: black;
}

.about-agency-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 1px;
}

.about-agency-text {
  font-size: 24px;
  opacity: 0.97;
  line-height: 1.66;
  margin-bottom: 16px;
  letter-spacing: 0;
  text-align: justify;
}

.about-agency-text:last-child {
  margin-bottom: 0;
}

.about-agency-stats {
    width: fit-content;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 52px;
    background-color: rgb(236 231 231 / 0.6);
    border-radius: 20px;
    padding: 10px 25px;
}

.about-stat {
  flex: 0 0 300px;
  text-align: left;
  padding-right: 36px;
  margin-right: 80px;
  border-right: 1px solid #232323;
}

.about-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}

.gradient-text {
  background: linear-gradient(to top, #ffffff 0%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.about-counter {
  color: #c74377;
}

.about-stat-num {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.about-stat-label {
  font-size: 24px;
  color: #fff;
  opacity: 0.85;
  letter-spacing: 0.01em;
}

/* Expert Solutions */
.expert-solutions-section {
  background: #000;
  padding: 50px 0 46px 0;
}

.solutions-container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 16px;
}

.solutions-grid {
    display: flex;
    flex-direction: column;
    gap: 44px;
    flex-wrap: wrap;
}

.solutions-left {
    margin: auto;
    justify-content: center;
    text-align:center;
}

.solutions-title {
  color: #fff;
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 15px;
  line-height: 1.15;
}

.solutions-sub {
  color: #ccc;
  font-size: 20px;
  margin-bottom: 35px;
  line-height: 1.45;
}

.solutions-btn {
  background: #181818;
  color: #fff;
  border-radius: 2rem;
  font-size: 20px;
  font-weight: 500;
  padding: 0.74rem 1.7rem;
  border: 2px solid #232323;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  transition: background 0.5s;
  white-space: nowrap;
  text-decoration: none;
}

.solutions-btn:hover,
.solutions-btn:focus {
  background: white;
  color: #000;
}

.solutions-right {
  flex: 1 1 0%;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.solutions-vertical-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 34px;
  overflow-y: auto;
  max-height: 1040px;
  padding-right: 8px;
  scroll-behavior: smooth;
}

.solutions-vertical-slider::-webkit-scrollbar {
  width: 8px;
}

.solutions-vertical-slider::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 4px;
}

.solution-card {
    width: 100%;
    min-height: 100%;
    background: #1a1a1a;
    border-radius: 2.2rem;
    box-shadow: 0 4px 36px rgba(0, 0, 0, 0.17);
    padding: 1.2rem 0 1.2rem 1.6rem;
    transition: transform 0.3s 
ease;
}
.solution-card:hover {
  transform: translateY(-4px);
}

.solution-img {
    width: 100%;
    height: 300px;
  object-fit: cover;
  border-radius: 1.8rem;
  margin-right: 2.2rem;
  flex-shrink: 0;
}

.solution-info {
  flex: 1;
  padding-right: 20px;
}

.solution-card-title {
  font-size: 34px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.solution-card-desc {
  font-size: 20px;
  color: #d5d5d5;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.solution-learn-btn {
  background: black;
  color: #fff;
  border: 2px solid #232323;
  border-radius: 1.3rem;
  padding: 0.62rem 1.3rem;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.1);
  transition: background 0.5s;
  text-decoration: none;
  width: fit-content;
}



.container h2 {
  /* color: #000; */
  font-size: 48px;
}

.testimonial-card {
  border-radius: 20px;
  text-align: left;
  position: relative;
}

.testimonial-card-one {
  background-color: #e2e0e0;
}

.testimonial-card-two {
  background-color: #b8b6b6;
}

.testimonial-card .quote-icon {
  font-size: 120px;
  color: #000;
  line-height: 1;
}

.testimonial-text {
  font-size: 20px;
  margin-top: 10px;
  color: #000;
  line-height: 1.6;
}

.text-start {
  color: #000;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
}

.carousel-indicators .active {
  background-color: #000;
}



/* Footer Call to Action & Main Footer */
.footer-cta-section {
  background: #000;
  padding-top: 54px;
  padding-bottom: 0;
}

.footer-cta-container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 16px;
  text-align: center;
}

.footer-cta-heading {
  font-size: 68px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.13;
}

.footer-cta-sub {
  color: #d1d1d1;
  font-size: 28px;
  margin-bottom: 34px;
}

.footer-cta-btn {
  background: #181818;
  color: #fff;
  border-radius: 2rem;
  font-size: 24px;
  font-weight: 500;
  padding: 0.95rem 3.8rem;
  border: 2px solid #232323;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11);
  transition: background 0.5s;
  text-decoration: none;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-cta-btn:hover,
.footer-cta-btn:focus {
  background: white;
  color: #000;
  text-decoration: none;
}

.main-footer {
  background-color: rgb(236 231 231 / 90%);
  border-radius: 2rem;
  max-width: 80%;
  margin: 38px auto 0;
  padding: 36px 38px 9px 38px;
  color: #fff;
  border-radius: 23px;
}

.footer-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 40px;
}

.footer-contact {
  font-size: 24px;
  margin-bottom: 13px;
}

.footer-contact div {
  margin-bottom: 8px;
  color: #fff;
  display: flex;
}

.footer-contact a {
  color: black !important;
  text-decoration: underline;
  font-size: 20px;
}

.footer-contact i {
  margin-right: 11px;
}

.footer-socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  font-size: 35px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.footer-socials a:nth-child(1) {
  color: #1877f3;
}

.footer-socials a:nth-child(2) {
  color: #f800b1;
}

.footer-socials a:nth-child(3) {
  color: #0077b5;
}

.footer-socials a:nth-child(4) {
  color: #fff;
  border-radius: 50%;
  padding: 3px;
}

.footer-links,
.footer-services {
  min-width: 160px;
  margin-bottom: 18px;
}

.footer-links-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #000 !important;
}

.footer-links ul,
.footer-services-cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-links {
  margin-top: 60px;
}

.footer-links ul li {
  margin-bottom: 13px;
}

.footer-links ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.2s;
  font-weight: 300;
}

.service-title {
    width: 100%;
    margin-left: 80px;
    text-align: center;
}

.footer-services-cols {
  display: flex;
  gap: 62px;
}

.footer-services-cols ul li {
  margin-bottom: 14px;
  color: #cecece;
  font-size: 24px;
}

.footer-copy {
  max-width: 100%;
  margin-top: 14px;
  color: #a2a2a2;
  font-size: 20px;
  padding-bottom: 11px;
  opacity: 0.86;
  text-align: center;
}

a.nav-link {
  color: white !important;
}

:root {
  --speed: 3s;
  --thickness: 1px;
  --length: 800px;
  --color: #fff;
  --glow: 10px;
}

.runner-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.runner {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(-1 * var(--length));
  width: var(--thickness);
  height: var(--length);
  background: var(--color);
  border-radius: 999px;
  /* filter: drop-shadow(0 0 var(--glow) var(--color)); */
  animation: runY var(--speed) linear infinite;
  will-change: transform;
}

@keyframes runY {
  to {
    transform: translate(-50%, 0);
  }

  from {
    transform: translate(-50%, calc(100vh + var(--length)));
  }
}

/* 27-08-2025 css about us pages   */
.contact-header {
  background: #3b2a82;
  color: #fff;
  padding: 25px;
}

.contact-header h3 {
  margin: 0;
  font-weight: 700;
}

.form-control {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding-left: 0;
  box-shadow: none;
}

.form-control:focus {
  border-bottom: 1px solid #3b2a82;
  box-shadow: none;
}

.btn-send {
  background: #0d0d0d;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-send:hover {
  background: #3b2a82;
  color: #fff;
}



.nav-tabs .nav-link {
  color: black !important;
}

.nav-tabs .nav-link.active {
  background-color: #212529 !important;
  color: #fff !important;
}

.service-card {
  display: block;
  padding: 15px 20px;
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
  transform: scale(1.02);
}

.career-card {
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  margin-bottom: 20px;
  cursor: pointer;
}

.career-card:hover {
  border-color: #0d6efd;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
  transform: scale(1.02);
}

.card:hover {
  border-color: #0d6efd;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.5);
}


/* project  */


.overlay-for-projects-video {
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.4s ease;
}

.position-relative:hover .overlay-for-projects-video {
  opacity: 1;
}

video {
  object-fit: cover;
  height: 100%;
}


.custom-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.custom-card h4 {
  font-size: 1.3rem;
  color: #000;
}

.custom-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* Work Section*/
.video-wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.video-wrapper video {
  transition: transform 0.4s ease;
}

.video-wrapper:hover video {
  transform: scale(1.05);
}




/* Animations-description-section */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.feature-item.active {
  opacity: 1;
  transform: translateX(5px);
}

.feature-item h5 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-item .number {
  font-weight: 600;
  margin-right: 10px;
  color: white;
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #fff;
}

.image-wrapper img {
  max-height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.image-wrapper img:hover {
  transform: scale(1.05);
}


/* our partners */
.partners-section {
  background: #fff;
}

.partners-section h2 {
  font-size: 2rem;
}

/* Partner logos */
.partner-logo img {
  filter: grayscale(100%);
  transition: all 0.4s ease;
  max-height: 80px;
  object-fit: contain;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}


/* FAQ's - section */
.faq-section {
  padding: 80px 0;
}

.faq-section .section-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  color: #888;
  letter-spacing: 1px;
}

.faq-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

/* Accordion styling */
.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 0;
  border: none;
  background: transparent !important;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  font-size: 0.95rem;
  color: #555;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid #ddd;
}

/* Buttons */
.faq-buttons .btn {
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 14px;
}

.btn-black {
  background: #000;
  color: #fff;
}

.btn-black:hover {
  background: #222;
}

.btn-outline-black {
  border: none;
  color: #333;
}

.btn-outline-black:hover {
  color: #000;
  text-decoration: underline;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: #99a5b1;
}

/* animation video end  */

@media (max-width: 1440px) {
  .hero-title {
    font-size: 45px;
    line-height: 50px;
  }

  .hero-desc {
    font-size: 18px;
  }

  .hero-btn {
    font-size: 18px;
  }

  .featured-portfolio-heading {
    font-size: 40px;
  }

  .view-all-btn {
    font-size: 18px;
  }

  .about-agency-title {
    font-size: 40px;
  }

  .about-agency-btn {
    font-size: 18px;
  }

  .about-agency-text {
    font-size: 18px;
  }

  .solutions-title {
    font-size: 40px;
  }

  .solutions-sub {
    font-size: 18px;
  }

  .solution-card-desc {
    font-size: 15px;
  }

  .solution-card-title {
    font-size: 30px;
  }

  .solution-learn-btn {
    font-size: 18px;
  }

  .solutions-btn {
    font-size: 18px;
  }

  .solution-img {
    width: 200px;
    height: 200px;
  }

  .solution-card {
    min-height: 220px;
  }

  .testimonial-text {
    font-size: 18px;
    margin-top: -30px
  }

  .footer-cta-heading {
    font-size: 55px;
  }

  .footer-cta-sub {
    font-size: 20px;
  }

  .footer-cta-btn {
    font-size: 18px;
  }

  .footer-cta-btn {
    font-size: 24px;
  }

  .footer-links ul li a {
    font-size: 18px;
  }

  .footer-contact a {
    font-size: 18px;
  }

  .footer-copy {
    font-size: 18px;
  }

  .seeing-heading-bg {
    font-size: 120px;
  }
}

@media (max-width: 1300px) {
  .navbar-custom {
    max-width: 95%;
    padding: 1rem 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-custom {
    max-width: 100%;
    border-radius: 0;
    padding: 1rem 0.5rem;
    margin: 0;
    position: static;
    left: unset;
    transform: none;
    width: 100%;
  }

  .navbar .container {
    max-width: 100%;
    padding: 0 8px;
  }

  .navbar-collapse {
    background-color: rgba(30, 30, 30, 0.92);
    border-radius: 1rem;
    margin-top: 0.5rem;
    padding: 1rem 1.2rem;
    width: 100%;
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: stretch !important;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
  }

  .nav-btn {
    width: 100%;
    margin: 0.5rem 0 0 0;
  }
}

/* Optional: place Book Now inside collapse on mobile */
@media (max-width: 991.98px) {
  .nav-btn-outside {
    display: none;
  }

  .nav-btn-mobile {
    display: block;
    width: 40%;
    margin: 0.7rem 0 0 0;
  }
}

@media (min-width: 992px) {
  .nav-btn-outside {
    display: block;
  }

  .nav-btn-mobile {
    display: none;
  }
}

@media (max-width: 1260px) {
  .about-agency-container {
    max-width: 90%;
    padding: 40px 0 30px 0;
  }

  .about-agency-top {
    flex-direction: column;
    gap: 24px;
  }

  .about-agency-left {
    flex: none;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .about-agency-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .about-agency-btn {
    font-size: 18px;
    padding: 0.6rem 1.4rem;
  }

  .about-agency-right {
    width: 100%;
  }

  .about-agency-text {
    text-align: center;
  }

  .about-agency-stats {
    flex-direction: row;
    align-items: center;
    padding-top: 20px;
    margin-top: 32px;
    justify-content: center;
  }

  .about-stat {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0 0px 0;
    border-right: 1px solid #232323;
  }

  .about-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-stat-num {
    font-size: 60px;
  }

  .about-stat-label {
    font-size: 20px;
  }
}

@media (max-width: 950px) {
  .about-agency-stats {
    flex-direction: column;
  }

  .about-stat {
    margin-bottom: -115px;
    border-right: none;
  }
}

@media (max-width: 576px) {

  .video-thumbnail-container {
    margin-top: 60px;
    padding: 0 10px;
    margin: auto;
    margin-top: 60px;
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .video-poster,
  .video-player {
    top: 0;
    border-radius: 20px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  .seeing-container {
    max-width: 100%;
  }

}

@media (max-width: 600px) {
  .about-stat {
    flex: none;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0px 0 0px 0;
    border-bottom: 1px solid #232323;
    padding-bottom: 24px;
  }

  .about-agency-container {
    padding: 30px 0 20px 0;
  }

  .about-agency-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .about-agency-btn {
    font-size: 16px;
    padding: 0.5rem 1.2rem;
  }

  .about-agency-text {
    font-size: 18px;
  }

  .about-agency-stats {
    margin-top: 20px;
    padding-top: 16px;
  }

  .about-stat-num {
    font-size: 40px;
  }

  .about-stat-label {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .solutions-grid {
    flex-direction: column;
    gap: 28px;
  }

  .solutions-left {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 28px;
    align-items: flex-start;
  }

  .solutions-right {
    width: 100%;
  }

  .solutions-vertical-slider {
    max-height: 710px;
    gap: 22px;
    padding-right: 6px;
  }

  .solution-card {
    max-width: 100%;
    min-height: 160px;
    padding: 1rem;
    border-radius: 1.8rem;
  }

  .solution-img {
    width: 120px;
    height: 105px;
    margin-right: 1.2rem;
    border-radius: 1rem;
  }

  .solution-card-title {
    font-size: 1.3rem;
  }

  .solution-card-desc {
    font-size: 1rem;
  }

  .solutions-title {
    font-size: 1.8rem;
  }

  .solutions-sub {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .solutions-grid {
    flex-direction: column;
    gap: 16px;
  }

  .solutions-left {
    margin-bottom: 20px;
    max-width: 100%;
  }

  .solutions-vertical-slider {
    max-height: 320px;
    gap: 10px;
    padding-right: 4px;
  }

  .solution-card {
    min-height: 200px;
    padding: 0.65rem 0.7rem;
    border-radius: 1.2rem;
    margin-bottom: 15px;
  }

  .solution-img {
    width: 72px;
    height: 64px;
    margin-right: 10px;
    border-radius: 0.8rem;
  }

  .solution-card-title {
    font-size: 1.05rem;
  }

  .solution-card-desc {
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
  }

  .solutions-title {
    font-size: 1.2rem;
  }

  .solutions-sub {
    font-size: 0.9rem;
  }

  .solutions-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.9rem;
  }

}

@media (max-width: 400px) {
  .solutions-vertical-slider {
    overflow-y: visible;
    max-height: none;
    display: block;
  }

}

@media (min-width: 1101px) and (max-width: 1400px) {
  .solutions-container {
    max-width: 90%;
  }

  .solutions-grid {
    gap: 32px;
  }

  .solutions-left {
    flex: 0 0 50%;
    max-width: 30%;
  }

  .solutions-right {
    flex: 1 1 50%;
    max-width: 70%;
  }

  .solutions-vertical-slider {
    max-height: 800px;
    padding-right: 10px;
  }

  .solution-img {
    width: 180px;
    height: 180px;
    margin-right: 1.6rem;
    border-radius: 1.5rem;
  }

  .solutions-btn {
    font-size: 1.2rem;
    padding: 0.7rem 1.5rem;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
    line-height: 58px;
  }

  .hero-desc {
    font-size: 18px;
    max-width: 700px;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 32px;
    line-height: 45px;
  }

  .hero-desc {
    font-size: 16px;
    max-width: 90vw;
  }

  .bg-split {
    flex-direction: column;
  }

  .bg-part {
    min-height: 20vh;
    height: 20%;
    flex: unset;
    width: 100%;
  }
  
  .hero-section{
    height: 100vh;
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 400px;
    height: 80vh;
  }

  .hero-title {
    font-size: 22px;
    line-height: 32px;
    padding: 0 12px;
  }

  .hero-desc {
    font-size: 14px;
    padding: 0 10px;
  }

  .hero-btn {
    font-size: 16px;
    padding: 0.6rem 1.2rem;
  }

  .bg-split {
    flex-direction: column;
  }

  .bg-part {
    min-height: 70px;
    height: 20%;
    background-size: cover;
    width: 100%;
    flex: unset;
  }

  .overlay {
    padding: 12px 4px;
  }

  .whatsapp-float img {
    width: 38px;
    height: 38px;
  }

  .portfolio-card {
    flex: 0 0 210px;
    height: 220px;
  }

  .featured-portfolio-heading {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .portfolio-card {
    flex: 0 0 250px;
    height: 250px;
  }
}

@media (max-width: 992px) {
  .solutions-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }

  .view-all-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
  }
}


@media (max-width: 992px) {
  .footer-cta-heading {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  .footer-cta-sub {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .footer-cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
  }

  .footer-content {
    flex-direction: row;
  }

  .footer-brand {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .footer-links,
  .footer-services {
    flex: none;
    width: 40%;
  }

  .footer-services-cols {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-services-cols ul {
    min-width: 160px;
    width: 48%;
  }

  .footer-copy {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
  }

  .career-card {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media (max-width: 576px) {
  .footer-cta-heading {
    font-size: 1.4rem;
  }

  .footer-cta-sub {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .footer-cta-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    width: 100%;
  }

  .footer-content {
    gap: 20px;
  }

  .footer-services-cols ul {
    width: 100%;
    gap: 12px;
  }

  .footer-links ul li,
  .footer-services-cols ul li {
    font-size: 0.9rem;
    width: 230px;
  }

  .footer-copy {
    font-size: 0.85rem;
  }

  .footer-contact {
    font-size: 18px;
  }

  .footer-contact a {
    font-size: 16px;
  }

  .footer-links ul li a {
    font-size: 16px;
  }

  .nav-btn-mobile {
    width: 70%;
  }

  .solution-learn-btn {
    font-size: 12px;
  }
}


@media (max-width: 1024px) {
  .footer-cta-heading {
    font-size: 40px;
    line-height: 1.2;
  }

  .hero-title {
    font-size: 35px;
    line-height: 40px;
  }

  .testimonial-text {
    font-size: 18px;
  }

  .hero-btn {
    font-size: 0.9rem;
  }

  .solution-learn-btn {
    font-size: 15px;
  }

  .footer-cta-btn {
    font-size: 18px;
    padding: 5px 40px;
  }

  .seeing-heading-bg {
    font-size: 90px !important;
  }

  .featured-portfolio-heading {
    font-size: 1.8rem;
  }

  .testimonial-card .quote-icon {
    margin-bottom: -45px;
  }

  .portfolio-card {
    flex: 0 0 350px;
    height: 350px;
  }
}

@media (max-width: 1300px) and (min-width: 1030px) {

  .footer-links,
  .footer-brand {
    flex: 1 1 45%;

  }
}

@media (max-width: 1029px) {
  .footer-content {
    gap: 45px;
    justify-content: space-around;

  }
}

@media (max-width: 600px) {
  .solution-learn-btn {
    font-size: 12px;
  }

  .portfolio-card {
    flex: 0 0 250px;
    height: 250px;
  }

  .about-stat:last-child {
    margin-bottom: 0px;
  }

  .service-links {
    margin-top: 0;
  }
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.3s ease;
}

.overlay-part {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.overlay-part:hover{
  cursor: pointer;
}



.text {
  font-size: 24px;
  font-weight: bold;
}

a.nav-link {
  color: black !important;
}


/* New css added by sudhanshu 19-09-2025  Start */

.video-title {
  position: absolute;
  bottom: 40px;
  left: 20px;
  z-index: 2;
  color: #fff5f5;
  font-size: 24px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.video-modal video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}


@media (max-width:767px) {
  .service-title {
  width: auto;
  text-align: center;
}
}

img.portfolio-play-icon {
    width: 40px;
    height: 40px;
}
/* New css added by sudhanshu 19-09-2025 End */


.our-client {
  text-align: center;
  padding: 40px 0;
}

h2.our-client-heading {
    margin-bottom: 20px;
}

.our-client-logos {
  position: relative;
  overflow: hidden;
}

.logo-track {
  display: flex;
  flex-direction: column;
  animation: scroll-horizontal 20s linear infinite;
}

.logo-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 20px 0;
}

.logo-row img {
    height: 170px;
    display: block;
    border-radius: 20px;
}

.our-client-img {
    width: 31%;
    height: auto;
    transition: transform 0.3s 
    ease;
}

@keyframes scroll-horizontal {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

img {
    height: -webkit-fill-available;
}

@media (max-width: 992px) {
  .seeing-heading-bg {
    font-size: 64px !important;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .seeing-heading-bg {
    font-size: 36px !important;
  }
}

@media (max-width: 400px) {
    .seeing-heading-bg {
        font-size: 33px;
    }
}