/* Hero Section Starts*/
/* Hero Section */
.hero-service-wrapper {
    /* background-color: var(--bg-dark); */
    padding: 80px 1% 50px 1%;
    color: white;
}

.hero-service-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-service-wrapper .hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-service-wrapper .hero-text h1 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-service-wrapper .hero-text p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 10px;
    color: white;
}

.hero-service-wrapper .hero-actions {
    display: flex;
    gap: 15px;
}

.hero-service-wrapper .btn {
    padding: 12px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-right: 15px;
}

.hero-service-wrapper .btn-filled {
    border-radius: 50px !important;
    padding: 15px 35px !important;
    background-color: var(--bg-dark) !important;
    border: 1px solid transparent;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 223, 186, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 223, 186, 0.08) 0%, transparent 65%),
        radial-gradient(circle at 0% 10%, rgba(0, 0, 0, 0.4) 0%, transparent 70%),
        radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.4) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, rgba(0, 0, 0, 0.15) 100%);
    position: relative;
    color: white !important;
    transition: all 0.3s ease;
}

.hero-service-wrapper .btn-filled:hover {
    background-color: #06382b !important;
    background-image: 
        radial-gradient(circle at 30% 40%, rgba(255, 223, 186, 0.05) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(255, 223, 186, 0.03) 0%, transparent 75%),
        radial-gradient(circle at 0% 10%, rgba(0, 0, 0, 0.6) 0%, transparent 70%),
        radial-gradient(circle at 90% 90%, rgba(0, 0, 0, 0.6) 0%, transparent 70%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 40%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.hero-service-wrapper .btn-outlines {
    background: transparent !important;
    border: 1px solid white !important;
    color: white !important;
    border-radius: 50px !important;
    padding: 12px 35px !important;
    transition: all 0.3s ease !important;
}

.hero-service-wrapper .btn-outlines:hover {
    background: white !important;
    color: var(--bg-dark) !important;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-service-wrapper .btn-filled,
.hero-service-wrapper .btn-outlines {
    animation: moveBottomToTop 0.8s ease-out forwards !important;
}

.hero-service-wrapper .btn-filled {
    animation-delay: 0.2s !important;
}

.hero-service-wrapper .btn-outlines {
    animation-delay: 0.4s !important;
}

/* Tablet Responsive */
@media (min-width: 600px) and (max-width: 768px) {
    .hero-service-wrapper {
        padding: 50px 5% 70px 5%;
    }
    
    .hero-service-wrapper .container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 40px;
    }
    
    .hero-service-wrapper .hero-text {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-service-wrapper .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-service-wrapper .hero-text h1 br {
        display: none;
    }
    
    .hero-service-wrapper .hero-text p {
        font-size: 15px;
        max-width: 500px;
        margin: 0 auto 25px;
    }
    
    .hero-service-wrapper .hero-actions {
        justify-content: center;
    }
    
    .hero-service-wrapper .btn {
        margin-right: 0;
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-service-wrapper {
        padding: 40px 20px 60px 20px;
    }
    
    .hero-service-wrapper .container {
        flex-direction: column-reverse;
        align-items: center;
        gap: 30px;
    }
    
    .hero-service-wrapper .hero-text {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    
    .hero-service-wrapper .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-service-wrapper .hero-text h1 br {
        display: none;
    }
    
    .hero-service-wrapper .hero-text p {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .hero-service-wrapper .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .hero-service-wrapper .btn {
        margin-right: 0;
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Small Mobile Responsive */
@media (max-width: 576px) {
    .hero-service-wrapper {
        padding: 30px 15px 50px 15px;
    }
    
    .hero-service-wrapper .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-service-wrapper .hero-text p {
        font-size: 13px;
    }
    
    .hero-service-wrapper .btn {
        max-width: 300px;
        padding: 10px 15px;
        font-size: 13px;
    }
}

/* Very Small Mobile Responsive */
@media (max-width: 375px) {
    .hero-service-wrapper .hero-text h1 {
        font-size: 22px;
    }
    
    .hero-service-wrapper .hero-text p {
        font-size: 12px;
    }
    
    .hero-service-wrapper .btn {
        max-width: 300px;
        padding: 8px 12px;
    }
}

/* iPad Air Landscape */
@media (min-width: 1180px) and (max-width: 1180px) and (orientation: landscape) {
    .hero-service-wrapper {
        padding: 60px 8% 80px 8%;
    }
}

/* Medium Tablets (iPad Air, Surface Pro 7) */
@media (min-width: 768px) and (max-width: 912px) {
    .hero-service-wrapper {
        padding: 60px 0 80px 0;
    }
    
    .hero-service-wrapper .hero-text h1 {
        font-size: 32px;
    }
}

/* Surface Pro 7 */
@media (min-width: 900px) and (max-width: 912px) {
    .hero-service-wrapper .hero-text h1 {
        font-size: 34px;
    }
}

/* Animation */
@keyframes moveBottomToTop {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-service-wrapper .hero-text.animate-bounce {
    animation: slideFromLeftBounce 0.8s cubic-bezier(0.42, 0, 0.28, 1.5);
}

@keyframes slideFromLeftBounce {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    60% {
        opacity: 1;
        transform: translateX(10px);
    }
    80% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.hero-service-box {
    background: transparent;
    padding: 20px 40px;
    width: 420px;
    text-align: center;
    color: var(--bg-dark);
    margin-top: -20px; 
}
.hero-service-box img{
    width:100%;
    height: 100%;
}
.hero-service-box input,
.hero-service-box textarea {
    border: 1px solid var(--bg-dark);
    margin-bottom: 15px;
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(11, 77, 59, 0.15);
}

/* Hover effect */
.hero-service-box input:hover,
.hero-service-box textarea:hover {
    border-color: #0d5f48;
    background-color: #fff;
}

/* Focus effect */
.hero-service-box input:focus,
.hero-service-box textarea:focus {
    outline: none;
    border-color: var(--gold, #DFCDA5);
    box-shadow: 0 0 0 3px rgba(223, 205, 165, 0.2);
    background-color: #fff;
}

/* Placeholder styling */
.hero-service-box input::placeholder,
.hero-service-box textarea::placeholder {
    color: #999;
    font-size: 13px;
}

/* Textarea specific */
.hero-service-box textarea {
    min-height: 100px;
    resize: vertical;
}

/* Agar aap chahte hain ke border thoda highlight ho to */
.hero-service-box input:active,
.hero-service-box textarea:active {
    border-color: var(--bg-dark);
    border-width: 2px;
}

.hero-service-box h2 { 
    font-size: 30px; 
    margin-bottom: 20px; 
}

.hero-service-box h2 span { 
    color: var(--gold); 
    display: block; 
}

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .hero-service-box {
        width: 100%;
        max-width: 500px;
        margin-top: 0;
        padding: 30px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .hero-service-box {
        padding: 20px 15px;
    }
    
    .hero-service-box h2 {
        font-size: 16px;
    }
    
    .hero-service-box h2 span {
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }
}

/* Very small devices (375px and below) */
@media (max-width: 375px) {
    .hero-service-box {
        padding: 15px;
    }
    
    .hero-service-box h2 {
        font-size: 15px;
    }
}

.hero-service-box.animate-bounce {
    animation: slideFromRightBounce 0.8s cubic-bezier(0.42, 0, 0.28, 1.5);
}

@keyframes slideFromRightBounce {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    60% {
        opacity: 1;
        transform: translateX(-10px);
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/*Hero Sections Ends*/

/*Why Choose Use Starts*/
.service_reader_left img{
    width: 80%;
    height: 80%;
}
/*Why Choose Use ENDS*/

/*Step Section Starts*/
.step-sec{
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10% 50px 10%;
    justify-content: flex-start;
    position: relative;
    text-align: center;

}
.step-sec {
    background-color: transparent !important;
    padding: 0% 10% 100px 10% !important;
    min-height: 400px !important;
}
.step-sec_header{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0px 30px 30px !important;
    margin: 0px !important;
}
.step-sec h1 { font-size: 28px; line-height: 1.2; margin-bottom: 25px; letter-spacing: 1px;  }
.step-sec p { font-size: 16px; line-height: 1.6; opacity: 0.9; margin-bottom: 10px; }

	.step-sec ul {
		display: flex;
		justify-content: center;
		width: 100%;
	}
	.step-sec ul li {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		position: relative;
		width: 17%;
	}
	.step-sec ul li:before {
        content: '';
        background-image: url('../images/step-right.webp');
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        right: -38%;
        bottom: 30%;
        width: 160px;
        height: 133px;
        z-index: -9;
        filter: brightness(0);
        display: block;
    }
	.step-sec ul li h5 {
		font-family: Poppins, sans-serif;
		font-size: 22px;
		font-weight: 600;
		line-height: 21px;
		letter-spacing: 0;
		text-align: center;
		padding: 10px 0;
	}
	.step-sec ul li h6 {
		display: block;
		width: 160px;
		height: 160px;
		line-height: 100px;
		border: 23px solid #0B4D3B;
		border-radius: 50%;
		font-size: 55px;
		letter-spacing: 0;
		background: #fff;
		color: black;
		text-align:center;
	}
	/*.step-sec ul li:nth-child(2n):before {*/
	/*	transform: rotate(55deg);*/
	/*	bottom: 35%;*/
	/*	right: -40%;*/
	/*}*/
	/*.step-sec ul li:nth-child(3):before {*/
	/*	right: -38% !important;*/
	/*	transform: rotate(2deg);*/
	/*}*/
	/*.step-sec ul li:nth-child(4):before {*/
	/*	right: -40% !important;*/
	/*}*/
	/*.step-sec ul li:nth-child(2n) {*/
	/*	margin: 100px 0 0;*/
	/*}*/
 /*   .step-sec ul li:nth-child(6):before {*/
	/*	display: none;*/
	/*}*/
	.step-sec ul li:nth-child(2n):before {
		transform: rotate(55deg);
		bottom: 42% !important;
		right: -38% !important;
	}
	.step-sec ul li:nth-child(3):before {
		right: -38% !important;
		transform: rotate(2deg);
	}
	.step-sec ul li:nth-child(2n):before {
		transform: rotate(55deg);
		bottom: 35%;
		right: -35%;
	}
	.step-sec ul li:nth-child(4):before {
		right: -38% !important;
	}
	.step-sec ul li:nth-child(2n) {
		margin: 100px 0 0;
	}
    .step-sec ul li:nth-child(6):before {
		display: none;
	}
   .step-sec {
      padding: 0px;
    }

.step-sec ul {
  display: flex;
  justify-content: center;
  width: 100%
}

.step-sec ul li h5 {
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0;
  text-align: center;
  padding: 10px 0
}

.step-sec ul li h6 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  text-align: center
}

.step-sec ul li:before {
  background-image: url(../images/step-right.webp);
  position: absolute;
  right: -38%;
  bottom: 26%;
  width: 160px;
  height: 133px;
  z-index: -9;
  filter: brightness(0);
  background-repeat: no-repeat;
  content: '';
}

.step-sec ul li:nth-child(4):before {
  right: -35% !important
}

.step-sec ul li:nth-child(2n):before {
  transform: rotate(55deg);
  bottom: 35%;
  right: -35%
}

.step-sec ul li:last-child:before {
  content: inherit
}

.step-sec ul li:nth-child(2n) {
  margin: 100px 0 0
}

.step-sec ul li:nth-child(3):before {
  right: -36%;
  transform: rotate(2deg)
}

.step-sec ul li img {
  margin: 20px 0
}

.step-sec ul li img {
    width: 8px !important;
    height: 50px !important;
    margin: 10px 0px 10px 0px !important;
}
.step-sec ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 17%
}

.step-sec ul li h6 {
  display: block;
  width: 160px;
  height: 160px;
  line-height: 100px;
  border: 23px solid #212529;
  border-radius: 50%;
  font-size: 55px;
  letter-spacing: 0;
  background: #fff;
  color: black;
}

@media only screen and (min-width:300px) and (max-width:992px) {
    
    
  .step-sec ul {
    flex-direction: column;
    width: 300px ;
    align-items: center;
    margin: 0 auto
  }

  .step-sec ul li {
    flex-direction: row-reverse;
    justify-content: start;
    align-items: center;
    width: 100%
  }

  .step-sec ul li:nth-child(odd) {
    margin: 0 60px 0 0 !important;
  }

  .step-sec ul li:nth-child(2n) {
    margin: 0 0 0 53px !important;
    flex-direction: row
  }


  .step-sec ul li h5 {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 0 10px;
    width: 410
  }

  .step-sec ul li:before {
    background-image: url(../images/mobile-border-set.webp);
    right: inherit;
    left: 30% !important;
    bottom: -26% !important;
    width: 62px;
    height: 80px;
    transform: rotate(1deg);
    filter: brightness(0)
  }

  .step-sec ul li:nth-child(2n):before {
    transform: rotate(236deg);
    bottom: -31% !important;
    left: 10px !important;
    width: 59px
  }

  .step-sec ul li:nth-child(3):before {
    transform: rotate(362deg);
    right: inherit;
    left: 26% !important;
    bottom: -27% !important;
  }
  
  .step-sec ul li:nth-last-child(2):before{
    background-image: url(../images/mobile-border-set.webp);
    right: inherit;
    left: 28% !important;
    bottom: -28% !important;
    width: 62px;
    height: 80px;
    transform: rotate(1deg);
    filter: brightness(0);

  }
  .step-sec {
    padding: 30px 0;
  }

  .step-sec ul li h6 {
    border: 12px solid #212529;
    width: 80px;
    height: 80px;
    font-size: 24px;
    line-height: 55px
  }

  .step-sec ul li img {
    display: none
  }
  .elementor-450 .elementor-element.elementor-element-bf0a3aa .step-sec ul li{
        min-width: 220px !important;
    }
.elementor-450 .elementor-element.elementor-element-bf0a3aa .step-sec ul li h6 {
    color: #000000;
    border-color: #0B4D3B;
    background-color: #ffffff;
    width: 160px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 23px;
    border-style: solid;
    border-radius: 50% 50% 50% 50%;
}
}

/*Step Section Ends*/

.service_technicals h1,p{
    text-align: center;
}

/*.elementor-450 .elementor-element.elementor-element-950ad55 .hero-service-wrapper{*/
 .hero-service-wrapper{

    background-color:transparent !important;
    padding: 80px 10% 50px 10% !important;
}
.elementor-450 .elementor-element.elementor-element-950ad55 .hero-text p {
    color: #fff !important;
    text-align: left !important;
}
/*.elementor-450 .elementor-element.elementor-element-b32c7e9 .readers {*/
.readers {
    background-color: transparent !important;
    padding: 80px 10% 50px 10% !important;
    min-height: 800px !important;
}
.elementor-450 .elementor-element.elementor-element-bf0a3aa .step-sec_header{
    background: transparent !important;
}
.step-sec_header{
    background: transparent !important;
}
.elementor-450 .elementor-element.elementor-element-bf0a3aa .step-sec{
    padding: 0% 10% 100px 10% !important;
}
.elementor-450 .elementor-element.elementor-element-95a7d52 .pentalates{
    padding: 60px 11% 60px 10% !important;
}
.elementor-450 .elementor-element.elementor-element-00add9d .authors {
    padding: 80px 10% 60px 10% !important; 
}
.elementor-450 .elementor-element.elementor-element-0472846 .technicals-card p{
    text-align: left !important;
}
.elementor-450 .elementor-element.elementor-element-0472846 .technicals-card img{
    max-width:65px !important; 
    max-height:80px  !important;
}
.elementor-450 .elementor-element.elementor-element-bf0a3aa .step-sec ul li{
    margin-bottom:0px !important;
}

.testimonials_reader_left img{
    width: 100%;
    height: 100%;
}
.testimonials_client_review p{
    text-align: left;
}

.hero-testimonials-box {
    background: transparent;
    padding: 20px 40px;
    width: 100%;
    text-align: center;
    color: var(--bg-dark);
    margin-top: -20px; 
}
.hero-testimonials-box img{
    width:100%;
    height: 100%;
}
.elementor-655 .elementor-element.elementor-element-9c503d0 .hero-service-wrapper{
    padding: 80px 10% 50px 10% !important;
}
.hero-testimonials-box img {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 100% !important; 
    width: 100% !important; 
    object-fit: cover !important; 
    display: block;
}