body {
    background-color: white;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000;
    --sky: #42CEFF;
    --mid-night: #2c3e50;
}

.section_padding {
    padding-top: 80px;

}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* navbar */
 .navbar {
  background-color: var(--black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar-toggler{
color: white;
}
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(252, 250, 250, 0.5);
  z-index: 1050;
}

.navbar-brand img {
  height: 70px;
  width: 100%;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}


.sidebar {
  width: 280px;
  height: 100vh;
  background:var(--black);
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.nav-item .nav-link {
  color: #fbf7f7 !important;
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px !important;
  transition: all 0.3s ease;
  position: relative;
}

.sidebar.show {
  transform: translateX(0);
}

.dropdown-menu a {
  border: 1px solid transparent;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: white;
}

.dropdown-menu a:hover {
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #f5f5f8;
}

.nav-item .dropdown-menu{
  background-color: #000;
}


.menu-item {
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.menu-item:hover {
  border: 2px solid white;
}

.menu-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}

.submenu li {
  padding: 8px 12px;
  margin-left: 10px;
  border-radius: 5px;
  color: white;
}

.submenu li:hover {
  background: #eef2ff;
}

.nav-btn {
 
  color: white;
  border: 2px solid white;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: white;
  color: var(--black);
  border: 2px solid white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta {
  background: #0d6efd;
  text-align: center;
}

.cta a {
  color: #fff;
  font-weight: 600;
}

.cta:hover {
  background: #084298;
} 

/* nav end */

/* Fullscreen Loader */

/* loader start */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Dot Loader */
.dot-loader {
  text-align: center;
}

.dot-loader img {
  width: 70px;
  height: 70px;
}

/* Dots animation */
.dots {
  margin-top: 10px;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #007bff;
  border-radius: 50%;
  margin: 0 3px;
  animation: jump 0.6s infinite alternate;
}

.dots span:nth-child(2) { animation-delay: 0.2s; }
.dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes jump {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

        /* loader end */

/*case-banner start  */
.case-content{
    background: rgba(0, 0, 0, 0.5);
     position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  
}
.case-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  flex-direction: column;
}
.case-content p{
  font-size: 22px; 
  margin-top: 30px;
  color: #fff;
    position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 100%;
  
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

@media (max-width:489px) {

  .case-content h1
   {
    font-size: 32px;
    
  }

  .case-content p {
    font-size: 16px;
  }
}
/* case-banner end */
/* casestudy-start */
.casestudy_section {
  width: 100%;
  padding-top: 80px;
  padding-right: 50px;
  background-image: url(""),
                    linear-gradient(135deg, #cdd8e7 0%, #e2bee4 80%);
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}
.carousel-track-container {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
  
}

/* .carousel-track {
  display: flex;
  gap: 30px;
  will-change: transform;

} */
.carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 28s linear infinite;
  width: max-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slide-image {
  height: 350px;
  flex: 0 0 calc(100% - 20px);
  border-radius: 12px;
  object-fit: cover;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 50px;
}

.static-left {
  flex: 1;

}

.main-title {
  font-size: 38px;
  font-weight: 700;
color: var(--mid-night);
text-align: start;
}

.catagory-text {
  font-size: 16px;
}

.highlight {
  color: var(--sky);
   background: linear-gradient(90deg, #42CEFF, #2c3e50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  font-size: 42px;
  display: inline-block;
  background-size: 400%;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.sub-title {
  font-size: 20px;
  font-weight: 500;
  color: var(--mid-night);
  padding-bottom: 10px;
  display: inline-block;
  overflow: hidden;
  white-space: wrap;
  text-align: start;
}

.sub-title span {
  opacity: 0;
  transform: translateY(10px);
  display: inline-block;
  animation: wordJoin 0.45s ease forwards;
}

@keyframes wordJoin {
  0% {
    opacity: 0;
    transform: translateY(10px);
    letter-spacing: 5px;
  }

  60% {
    opacity: 1;
    transform: translateY(0px);
    letter-spacing: 1px;
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0px;
  }
}
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.carousel-dots .dot {
  width: 11px;
  height: 11px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}

.carousel-dots .dot.active {
  background: #007bff;
}

@media (max-width: 998px) {
  .carousel-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .static-left {
    width: 100%;
  }

  .main-title {
    font-size: 32px;
  }

  .highlight {
    font-size: 36px;
  }

  .sub-title {
    font-size: 32px;
  }

  .slide-image {
    height: 380px;
  }

 
}

@media (max-width: 768px) {
  .main-title {
    font-size: 28px;
  }

  .highlight {
    font-size: 32px;
  }

  .sub-title {
    font-size: 28px;
  }

  .slide-image {
    height: 300px;
  }


}

@media (max-width: 480px) {
  .main-title {
    font-size: 24px;
  }

  .highlight {
    font-size: 30px;
  }

  .sub-title {
    font-size: 24px;
  }

  .carousel-track {
    gap: 10px;
  }

  .slide-image {
    height: 240px;
    border-radius: 10px;
  }

}

@media (max-width: 360px) {
  .main-title {
    font-size: 20px;
  }

  .highlight {
    font-size: 26px;
  }

  .sub-title {
    font-size: 20px;
  }

  .slide-image {
    height: 200px;
  }

}
/* casestudy end */

.footer_section {
  background-color: var(--black);
  color: white;
  padding: 60px 0 20px;
}

.footer-row {
  align-items: stretch;
}

.footer-col {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
  width: 100%;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  color: #ddd;
  line-height: 1.4;
  margin: 0;
  font-weight: 400;
}

.footer-tagline span {
  color: var(--sky);
  font-size: 18px;
  font-weight: 600;
}

.footer-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.footer-col a[href^="tel"],
.footer-col a[href^="mailto"] {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.footer-col a[href^="tel"]:hover,
.footer-col a[href^="mailto"]:hover {
  color: var(--sky);
}

.footer-col a[href^="tel"] i,
.footer-col a[href^="mailto"] i {
  margin-right: 8px;
  color: var(--sky);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--sky);
}


.footer-right {
  background: #3d3738;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}


.footer-contact-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-contact-form .form-control {
  background: #fff;
  color: #222;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 10px 12px;
}

.footer-contact-form .form-control::placeholder {
  color: #666;
}

.footer-contact-form .form-control:focus {
  box-shadow: none;
  border-color: #00c4ff;
}

.footer-contact-form textarea {
  flex-grow: 1;
  min-height: 100px;
}

.footer-contact-form .btn {
  border-radius: 6px;
  padding: 10px 14px;
  font-weight: 600;
}

.footer-right .btn {
  background-color: var(--sky);
}

.footer-right .btn:hover {
  background-color: #007bff;
}


.footer-social-icons {
  display: flex;
  justify-content: flex-start;
  margin: 22px 0;
  gap: 8px;
}

.social-icon-group {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}

.social-icon-group:hover {
  background: var(--sky);
}

.social-icon-group:hover a {
  color: #000;
}

@media (max-width: 767.98px) {
  .footer-right {
    margin-top: 12px;
  }

  .footer-heading.ms-5,
  .footer-links.ms-5 {
    margin-left: 0 !important;
  }

  .footer-heading.me-5,
  .footer-links.me-5 {
    margin-right: 0 !important;
  }
}

/* footer end */