@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');

* {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

html, body {
  color: #212529;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  padding: 0;
}

html,
body {
  overflow-x: hidden;
}

@media screen and (min-width: 2500px) {
  /* For large monitors and 4K screens */
  h5.display-5 {
    font-size: 3.5rem !important;
  }

  .overview-text p {
    font-size: 1.5rem !important;
    line-height: 1.8;
  }
  .overview-text1 p {
    font-size: 2.2rem !important;
    line-height: 1.8;
  }
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  height: 45px;
  width: auto;
}

.navbar-nav .nav-link {
  color: rgb(5, 5, 5);
  /* default link color */
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #FFD700;
  /* hover color, golden yellow */
}

.navbar-nav .nav-link.active {
  color: #f16805;
  /* active link color — matches your gradient */
  font-weight: 500;
}

.navbar-toggler {
  border: none !important;
  /* removes border */
  outline: none !important;
  /* removes outline */
  box-shadow: none !important;
  /* removes Bootstrap's focus shadow */
}

.nav-link {
  font-weight: 400 !important;
  /* normal weight */
}



/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: start;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 38px;
  }

  .navbar-nav .nav-link {
    padding: 8px 12px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .d-flex>div {
    flex: 1 1 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .responsive-title {
    white-space: normal;
    /* allows line break */
    font-size: 1.1rem;
    /* slightly smaller for mobile balance */
    line-height: 1.3;
    /* improves readability */
  }
}

 #graphic-carousel img {
      width: 100%;
      height: 350px;
      object-fit: contain;
      border-radius: 10px;
      transition: opacity 1s ease-in-out;
    }

.responsive-title {
  white-space: nowrap;
}

.text-orange {
  color: #ff6600;
}

@media (min-width: 992px) {
  .custom-navbar .navbar-brand {
    margin-left: 70px;
    /* move logo slightly right */
  }

  .custom-navbar .navbar-nav {
    margin-right: 80px;
    /* space from right edge */
  }

  .custom-navbar .nav-link {
    margin-left: 25px;
    /* spacing between links */
    font-size: 1rem;
    font-weight: 500;
  }

  .custom-navbar img {
    width: 180px;
    /* control logo size */
    height: auto;
  }
}

/* Buttons */
.btn-orange {
  background-color: #ff6600;
  border: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e65c00;
  transform: scale(1.05);
}

.btn-orange-outline {
  border: 2px solid #ff6600;
  color: #ff6600;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-orange-outline:hover {
  background-color: #ff6600;
  color: #fff;
  transform: scale(1.05);
}

/* Title adjustments */
.card-title {
  line-height: 1.2;
}

/* Responsive text scaling */
@media (max-width: 768px) {
  .card-title {
    font-size: 2rem;
  }

  .card-text {
    font-size: 1rem;
  }

  .btn {
    padding: 8px 16px;
    font-size: 0.95rem;
  }
}

#mainNavbar {
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  background-color: transparent;
  /* Transparent initially */
}

/* When scrolled */
.navbar-scrolled {
  background-color: #FFE8BF !important;
  /* bright orange */

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Optional: adjust link colors when background is orange */
.navbar-scrolled .nav-link {
  color: #000000 !important;
}
.navbar.navbar-scrolled .nav-link.active {
  color: #f16805 !important;
}

/* Add some space to scroll */
section {
  height: 1200px;
  background: linear-gradient(rgb(0, 0, 0), #020202);
}

.my-custom-icon {
  color: #ea5408;
  /* orange */
  width: 40px;
  height: 40px;
}

#about {
  background-color: #FFE8BF;
}

#about svg {
  transition: transform 0.3s ease;
}

#about svg:hover {
  transform: scale(1.1);
}

/* === Animation Keyframes === */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s, transform 0.5s;
}

.fade-up.visible {
  animation: fadeUp 0.8s ease forwards;
}

.fade-side {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* 🔹 When visible */
.fade-side.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 🔹 Slide in from LEFT version */
.fade-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateY(-80px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-right.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 🖼️ Make image responsive + zoom effect */
.image-container {
  /* hides overflow when zooming */
  display: inline-block;
  border-radius: 12px;
  /* optional, for soft edges */
}

.zoom-image {
  width: 100%;
  height: auto;
  transition: transform 1.2s ease, filter 0.8s ease;
}

.zoom-image:hover {
  transform: scale(1.08);
  /* zoom level */
  filter: brightness(1.05);
}

/* 📱 Responsive heading sizes */
@media (max-width: 768px) {
  h5.display-5 {
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding: 0 10px;
  }
}

@media (min-width: 769px) {
  h5.display-5 {
    font-size: 2.5rem;
  }
}

.circle-shape {
  width: 100px;
  height: 100px;

  border-radius: 50%;
  display: flex;
  /* 🔹 enables flexbox */
  justify-content: center;
  /* 🔹 centers horizontally */
  align-items: center;
  /* 🔹 centers vertically */
  background-color: #EA5408;
  /* optional */
  margin: 20px auto;
  /* centers the whole circle on the page */
}


.clients img {
  width: 100%;
  height: auto;
  object-fit: contain;
  padding: 10px;
}

@media (max-width: 767px) {
  .row {
    justify-content: center;
    text-align: center;
  }

  .clients img {
    max-width: 100%;
    margin: 5px auto;
  }
}



@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

/* about us code */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.svg-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border-radius: 15px;
}

@media (max-width: 767px) {
  .mission-section {
    text-align: center;
  }

  .card {
    margin-bottom: 1rem;
  }

  .animated-svg {
    width: 180px;
    height: 180px;
  }
}

.circle-shape-about {
  width: 100px;
  /* control circle size */
  height: 100px;
  border-radius: 50%;
  /* makes it perfectly round */
  overflow: hidden;
  /* hide image corners */

}

.circle-shape-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures image fills circle */
  display: block;
}

.tech-logo {
  max-width: 100px;
  height: 100px;
  transition: transform 0.3s ease, filter 0.3s ease;
 
}

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

@media (max-width: 992px) {
  .tech-logo {
    max-width: 100px;
  }
}


@media (max-width: 768px) {
  .tech-logo {
    max-width: 80px;
  }
}
@media (max-width: 480px) {
  .tech-logo {
    max-width: 170px;  
    padding: 8px;
  }
}


@media (max-width: 480px) {
  .tech-logo {
    max-width: 120px;
  }
}


@media (max-width: 1600px) {
  .tech-logo {
    max-width: 180px;
  }
}


@media (max-width: 2560px) {
  .tech-logo {
    max-width: 320px;
  }
}

/* .tech-logo {
  max-width: 80px;
  height: auto;
  margin: auto;
  transition: transform 0.3s ease;
}
.tech-logo:hover {
  transform: scale(1.1);
} */
/* .owl-carousel .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
} */



 marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      background-color: #fff;
     
    }

    marquee img {
      height: vw; /* Responsive size based on screen width */
      max-height: 250px; /* Limit for smaller screens */
     
      transition: transf15orm 0.3s ease;
    }

    marquee img:hover {
      transform: scale(1.1);
    }

    /* For very large (4K) screens */
    @media screen and (min-width: 2560px) {
      marquee img {
        height: 20vw; /* Increase image size on 4K */
        max-height: 300px;
      }
    }

    /* For mobile */
    @media screen and (max-width: 768px) {
      marquee img {
        height: 40vw;
        margin: 0 5vw;
      }
    }

    .marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #fff;
  position: relative;
 
}

.marquee-content {
  display: inline-flex;
  animation: scroll-left 25s linear infinite;
}

.marquee-content img {
  height: 12vw;
  max-height: 200px;
 
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.marquee-content img:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (min-width: 2560px) {
  .marquee-content img {
    height: 12vw;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .marquee-content img {
    height: 35vw;
    margin: 0 5vw;
  }
}

/* Keyframes for continuous scroll */
@keyframes scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


/* solution page code */
.solution {
  margin-top: 90px;
  
}
.solution1 {
  margin-top: 150px;
  
}
/* industries code */

.retail svg {
  height: 400px;
  width: 400px;
}

/* case studies */
.card-hover {
  transition: all 0.3s ease-in-out;
}

.card-hover:hover {
  border: 1px solid #FDE6BD;
  box-shadow: 0 0 20px rgba(243, 87, 8, 0.3);
  transform: translateY(-8px);
}
@media (max-width: 767px) {
  .card {
    margin: 0 auto; /* centers cards horizontally */
  }
}

form {
  background-color: #ffffff;
  border-radius: 12px;
}

form .form-control:focus {
  border-color: #bc1615;
  box-shadow: 0 0 5px rgba(188, 22, 21, 0.4);
}

@media (max-width: 991px) {
  .case {
    width: 100% !important; /* Take full width on tablets */
    max-width: 22rem;        /* Don’t stretch too wide */
    height: auto !important; /* Let height adjust */
  }

  .case .case-title p,
  .case .case-title span {
    font-size: 1.4rem !important; /* Slightly smaller title text */
  }

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


 .go-back-btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 12px;
    border-radius: 50%;
    background: #E65C00;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 999;
    display: none; /* hidden initially */
    box-shadow: 0 4px 10px rgba(29, 29, 29, 0.296);
    transition: opacity 0.3s ease;
}

.go-back-btn:hover {
    background: #e31e04;
}




