/* common css start */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
    font-family: "Montserrat", sans-serif;
            scroll-behavior: smooth;
            -webkit-tap-highlight-color: transparent;
}
a{
    text-decoration: none;
     font-family: "Montserrat", sans-serif;
          
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
img{
    vertical-align: middle;
}

.section-padding{
    padding-top: 90px;
}
/* common css end */


/* navbar */

.nav-link{
    font-weight: 500;
    font-size: 15px;
}
.navbar-nav{
    gap: 11px;
}

.navbar-brand img{
    height: 88px;
}
.logo a img{
    height: 82px;
}

.quikctech-menu {
	display: flex;
	align-items: center;
	gap: 19px;
	padding-top: 30px;
}
.quikctech-right-menu{
    justify-content: end;
}

#quicktech-navbar {
	padding: 5px 0;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 99999;
    background-color: white;
}

/* navbar */

/* banner */
.swiper {
	width: 100%;
	height: 700px;
}

.quikctech-banner-img{
    height: 100%;
}

.quikctech-banner-img img {
	height: 100%;
	object-fit: cover;
}
.quicktech-banner-text{
  position: absolute;
  background-color: #ffffffa6;
  padding: 5px;
  left: 0;
  padding-left: 13px;
  bottom: 50px;
}

.quicktech-banner-text h3{
    font-weight: 500;
}

/* banner */


/* about */


.quikctech-head h3{
    color: #145ca4;
    font-weight: 600;
}

.quikctech-head p{
    font-weight: 500;
    color: #00000078;
}

.quikctech-about-title {
    color: #1c2c4c;
}

.quikctech-about-line {
  width: 80px;
  height: 3px;
  background: #145ca4;
  margin: auto;
}

.quikctech-about-img {
	border: 8px solid #e6e6e6;
	height: 500px;
	object-fit: cover;
}

.quikctech-about-video-wrap {
  position: relative;
}

.quikctech-about-play {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	background: #145ca4;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 28px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	cursor: pointer;
	border: 2px solid white;
}

.quikctech-about-btn {
  background: #145ca4;
  color: #fff;
  font-weight: 600;
}

.quikctech-about-btn:hover {
  background: #c95717;
}

.quikctech-about-text {
	padding-left: 30px;
}
.quikctech-about-text p{
  
    margin-bottom: 12px;
    line-height: 1.8;
}

.quikctech-mis-inner {
	display: flex;
	gap: 21px;
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	padding: 19px;
	border-radius: 10px;
	background: #145ca417;
    align-items: center;
}

.quikctech-mis-img img {
	/* height: 130px; */
	width: 140px;
}

.quikctech-text-mis h4{
    font-size: 20px;
  font-weight: 600;
}

.quikctech-text-mis p{
  
  margin-bottom: 12px;
  line-height: 1.8;
  padding-top: 10px;
}

/* about */



/* products */
.quicktech-industry-tabs {
  background: #f8f9fb;
  padding: 60px 20px;
}

/* ===== Tabs Menu ===== */
.quicktech-industry-tabs .nav-pills {
  gap: 14px;
  justify-content: center;
}

.quicktech-industry-tabs .nav-link {
  border-radius: 50px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 15px;
  color: #222;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  transition: all 0.35s ease;
}

.quicktech-industry-tabs .nav-link:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.quicktech-industry-tabs .nav-link.active {
  background: #111;
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ===== Tab Content Animation ===== */
.quicktech-tab-pane {
  animation: quicktechFadeUp 0.6s ease;
}

@keyframes quicktechFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Product Card ===== */
.quicktech-product-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.quicktech-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.quicktech-product-card img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;

}

.quicktech-product-card h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.quicktech-product-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 14px;
}

.quicktech-product-card a {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.quicktech-product-card a:hover {
  text-decoration: underline;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
	color: var(--bs-nav-pills-link-active-color);
	background-color: #145ca4;
}

.nav-pills .nav-link {
	color: black;
	border: 1px solid #ddd;
	font-size: 13px;
}

.quikctech-product-tabs {
	gap: 11px;
	justify-content: center;
}

.nav-pills .nav-link:hover {

	background-color: #145ca4 !important;
	color: white !important;
}






.quikctech-why-choose-text h2 {
	color: black;
	font-size: 28px;
	font-weight: 500;
}
.quikctech-why-choose-text p {
	color: black;
}

.quikctech-why-choose-text h3 {
	color: black;
	font-size: 21px;
	padding-top: 16px;
	font-weight: 500;
}

.quikctech-ceo-text {
    padding-left: 30px;
}

.quikctech-ceo-text h4{
    font-size: 24px;
 color: #145ca4;
  font-weight: 600;
}
/* products */


/* testimonial */

.quikctech-testimonial-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.quikctech-testimonial-card {
  width: 100%;
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 25px;
  align-items: center;
  transition: 0.3s;
}

.quikctech-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.quikctech-testimonial-img img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #e6f4ff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quikctech-testimonial-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 5px;
}

.quikctech-testimonial-role {
  font-size: 15px;
  color: #777;
  margin-bottom: 10px;
}

.quikctech-testimonial-stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.quikctech-testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Responsive */
@media (max-width: 600px) {
  .quikctech-testimonial-card {
    flex-direction: column;
    text-align: center;
  }
}

.testiswiper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.bizcon-contact{
    display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

/* testimonial */

/* footer */


#quicktech-footer {
	background-color: #145ca4;
	padding-top: 28px;
}
.bizcon-contact p{
    color: white;
}

.bizcon-contact p a{
    color: white;
}

.quicktech-footer-text img{
    height: 150px;
  background-color: white;
  border-radius: 50%;
}

.quikctech-copy-right p{
    color: white;
    font-size: 14px;
}

.quikctech-copy-right p a{
    color: white;
    
}


.quikctech-choose-imh p{
    padding-top: 10px;
}

.quikctech-choose-inner {
	box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
	padding: 20px;
	border-radius: 10px;
	height: 196px;
    transition: 0.3s ease;
    border: 1px solid #dddddd42;
}

.quikctech-choose-imh img{
    height: 64px;
}

.quikctech-choose-inner:hover{
    transform: scale(1.05);
    box-shadow: none;
}

.gapp{
    row-gap: 20px;
}

.mobile-nav{
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  background-color: white;
}

.navbar-toggler {
	
	color: black;
	background-color: transparent;
	border: none;
	
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: 0;
	box-shadow: none;
}

.nav-link:hover {
    color: #145ca4;
}

.nav-link{
    transition: 0.3s ease;
}

.contact-btn{
    padding: 4px 12px;
    border: none;
    background-color: white;
    border-radius: 5px;
}


/* Modal Design */
.quikctech-modal-design{
    border-radius:18px;
    overflow:hidden;
    border:none;
}

.quikctech-modal-header{
    background: linear-gradient(45deg,#0d6efd, #145ca4);
    color:white;
    border:none;
}

/* Input Style */
.quikctech-input-group{
    position:relative;
    margin-bottom:15px;
}

.quikctech-input-group i {
	position: absolute;
	top: 50%;
	left: 14px;
	transform: translateY(-50%);
	color: #00000061;
}

.quikctech-input-group input,
.quikctech-input-group textarea{
    padding-left:40px;
    border-radius:12px;
    border:1px solid #e0e0e0;
    box-shadow:none;
    transition:.3s;
}

.quikctech-input-group input:focus,
.quikctech-input-group textarea:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 3px rgba(13,110,253,.1);
}

/* Button */
.quikctech-send-btn{
    width:100%;
    background: #145ca4;
    border:none;
    color:#fff;
    padding:12px;
    border-radius:30px;
    font-weight:600;
    margin-top:10px;
    transition:.3s;
}
.quikctech-send-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}
.quikctech-contact-btn {
	background: white;
	color: black;
	border: none;
	padding: 12px 22px;
	border-radius: 30px;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	transition: .3s;
}
.quikctech-contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 25px rgba(0,0,0,0.25);
}


.quikctech-m-flex{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.quikctech-m-flex p{
    margin-bottom: 0;
    color: #145ca4;
}



/* Card Styling */
.quicktech-product-card {
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #eee;
  text-align: center;
}

.quicktech-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #007bff; /* Optional accent color */
}

.quicktech-product-card img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  height: 260px;
}

/* Modal Improvements */
.modal-content {
  border-radius: 20px;
}

.btn-close {
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 50%;
  opacity: 1;
}