/* GLOBAL COLORS */
:root {
  --navy: #2775bd;
  --navy-dark: #061024;
  --yellow: #2775bd;
  --yellow-soft: #ffe94a;
  --text-light: #ffffff;
  --text-muted: #94a3b8;
  --bg-alt: #f8f9fc;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --transition-fast: all 0.25s ease;
}

/* FONTS */
body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  line-height: 1.6;
  background-color: #fff;
  scroll-behavior: smooth;
}

.brand-name,
.section-title,
.navbar-brand .brand-name,
.footer-title {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* TOP BAR */
.top-bar {
  background-color: var(--navy);
  font-size: 1.02rem;
}

.top-bar i {
  color: #ffffff;
  margin-right: 4px;
}

/* NAVBAR */
.navbar-brand .brand-icon {
  width: 44px;
  height: 44px;
  background-color: var(--navy);
  color: #ffffff;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(10, 26, 51, 0.4);
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.65rem;
  color: var(--navy);
}

.nav-link {
  font-weight: 500;
  color: #000;
  position: relative;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: #2775bd;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 3px;
  border-radius: 999px;
  background-color: #2775bd;
  animation: linkFade 0.25s ease forwards;
}

@keyframes linkFade {
  from {
    opacity: 0;
    width: 0;
    margin: 0 auto;
  }

  to {
    opacity: 1;
    width: 100%;
    margin: 0;
  }
}

/* COMMON SECTIONS */
.section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.bg-alt {
  background-color: var(--bg-alt);
}

.section-head .section-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--navy);
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.6vw + 1rem, 2rem);
  margin-top: 0.75rem;
}

.section-subtext {
  max-width: 600px;
  font-size: 0.9rem;
  color: #64748b;
}

/* BUTTONS */
.btn-yellow {
  background-color: #2775bd;
  color: white;
  border: 2px solid #2775bd;
}

.btn-yellow:hover {
  background-color: var(--navy);
  color: #ffffff;
  border-color: #000000;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--navy) !important;
}

.btn-outline-yellow {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: var(--navy);
}

.btn-outline-yellow:hover {
  background-color: #ffffff;
  color: var(--navy);
}

/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
}

.hero-slide-bg {
  height: clamp(420px, 35vw, 600px);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

}

.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 20% 40%, rgba(248, 217, 0, 0.22) 0%, rgba(0, 0, 0, 0.7) 60%); */
  pointer-events: none;
}

.carousel-caption {
  bottom: auto;
  top: 0;
  left: 0;
  right: 0;
  padding: min(4vw, 3rem);
  max-width: 600px;
}

.text-shadow {
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

/* ABOUT */
.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
}

.about-img {
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--navy);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  min-width: 120px;
  text-align: center;
}

.badge-number {
  font-size: 1.6rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.icon-box {
  width: 44px;
  height: 44px;
  background-color: #2775bd;
  color: white;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 30px rgba(248, 217, 0, 0.45);
}

/* SERVICES */
.service-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 26, 51, 0.15);
}

.service-title {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

.service-img img {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
}

/* WHY CHOOSE US */
.choose-img-wrapper {
  position: relative;
}

.floating-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem 1rem;
  min-width: 220px;
  display: inline-block;
  border: 2px solid #2775bd;
}

.floating-icon {
  background-color: #ffffff;
  color: var(--navy);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248, 217, 0, 0.4);
}

.why-box {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  background-color: var(--navy);
  color: #2775bd;
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

/* ACHIEVEMENTS */
.achievements-section {
  position: relative;
  background-color: #2775bd;
  /* background-image: linear-gradient(rgba(6,16,36,0.85), rgba(6,16,36,0.85)), url('../img/achievement-bg.jpg'); */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.achievements-overlay {
  position: absolute;
  inset: 0;
  /* background: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.2) 0%, rgba(0,0,0,0) 60%);/ */
}

.stat-box {
  position: relative;
  padding: 1rem 0;
}

.stat-number {
  font-family: 'Rajdhani', 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 1vw + 1rem, 2rem);
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* GALLERY */
.gallery-item {
  cursor: pointer;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  box-shadow: 0 15px 30px #e2eaff;
  overflow: hidden;
  position: relative;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 16, 36, 0.6);
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.view-btn {
  font-size: 0.8rem;
}

/* CONTACT */
.contact-card {
  background-color: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-icon {
  background-color: var(--navy);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  color: #ffffff;
  display: grid;
  place-items: center;
}

.form-control-custom {
  border-radius: var(--radius-lg);
  border: 2px solid #092141;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
}

.form-control-custom:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 0.15rem rgba(248, 217, 0, 0.4);
  outline: none;
}

/* MAP */
.map-wrapper {
  height: 350px;
  overflow: hidden;
  filter: grayscale(0.2);
  border-top: 4px solid #2775bd;
}

.map-iframe {
  width: 100%;
  height: 100%;
}

/* FOOTER */
.footer-section {
  background-color: var(--navy-dark);
  /* background-image: radial-gradient(circle at 20% 20%, rgba(248,217,0,0.15) 0%, rgba(0,0,0,0) 60%); */
  font-size: 0.9rem;
}

.footer-icon {
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  color: var(--navy-dark);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 15px 30px rgba(248, 217, 0, 0.4);
}

.footer-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.1;
}

.text-yellow {
  color: #ffffff !important;
}

.footer-links li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-link i {
  color: #ffffff;
  margin-right: 6px;
}

.footer-link:hover {
  color: #ffffff;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  display: grid;
  place-items: center;
  color: var(--text-light);
  font-size: 1rem;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icon:hover {
  background-color: #ffffff;
  color: var(--navy-dark);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
}

/* BACK TO TOP BTN */
.back-to-top {
  width: 42px;
  height: 42px;
  border: 0;
  background-color: #ffffff;
  color: var(--navy);
  font-size: 1rem;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition-fast);
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  background-color: var(--navy);
  color: #ffffff;
}

/* UTILS */
.shadow-hover {
  transition: var(--transition-fast);
}

.shadow-hover:hover {
  box-shadow: 0 25px 50px rgba(10, 26, 51, 0.18);
}

/* RESPONSIVE TWEAKS */
@media (max-width: 767.98px) {
  .carousel-caption {
    max-width: 90%;
  }

  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-caption .lead {
    font-size: 0.9rem;
  }

  .hero-slide-bg {
    height: 240px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-tagline {
    font-size: 0.6rem;
  }

  .top-bar {
    font-size: 0.7rem;
  }

  .about-badge {
    min-width: 100px;
    padding: .8rem 1rem;
  }

  .badge-number {
    font-size: 1.4rem;
  }

  .floating-card {
    min-width: 180px;
  }
}





.service-card {
  background: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}

.service-card .btn {
  font-size: 0.9rem;
  transition: all 0.3s ease;
  --bs-btn-bg: #2775bd;
  --bs-btn-color: #ffffff;
}

.service-card .btn:hover {
  transform: scale(1.05);
}

.text-justify {
  text-align: justify;
}


.whatsup {
  position: fixed;
  left: 20px;
  width: 50px;
  bottom: 80px;
  z-index: 99;
}

.call-icon {
  position: fixed;
  right: 20px;
  width: 50px;
  bottom: 150px;
  z-index: 99;
}

.request-demo {
  position: fixed;
  left: 20px;
  width: 150px;
  bottom: 250px;
  z-index: 99;
}
.clients-carousel .item {
  padding: 10px;
}

.client-logo-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-logo-card img {
  max-height: 115px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.client-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* Owl arrows thode ache dikhne ke liye */
.clients-carousel .owl-nav button.owl-prev,
.clients-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-carousel .owl-nav button.owl-prev {
  left: -10px;
}

.clients-carousel .owl-nav button.owl-next {
  right: -10px;
}

.clients-carousel .owl-nav button span {
  font-size: 20px;
  line-height: 1;
}

#callme {
        position: fixed;
        right: 30px;
        bottom: 100px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
@media(max-width:991px)
{
    .cu-md-ds-nn{
        display:none!important;
    }
    .cu-jf-cnter{
        justify-content:center!important;
    }
    .sticky-top{
        position:relative;
    }
}