/*======================================
Services Hero
======================================*/

.services-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 100px;
    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef6ff 100%
    );
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.hero-shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(23,92,221,.05);
    top: -180px;
    right: -150px;
}

.hero-shape-2 {
    width: 350px;
    height: 350px;
    background: rgba(23,92,221,.04);
    bottom: -120px;
    left: -100px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;

    background: rgba(23,92,221,.08);

    color: var(--accent-color);

    border-radius: 50px;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--heading-color);
}

.hero-content p {
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 35px;
    color: var(--default-color);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    font-weight: 500;
}

.hero-features i {
    color: #22c55e;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-btn-primary,
.hero-btn-secondary {

    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    font-weight: 600;
    transition: .3s ease;
}

.hero-btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    color: #fff;
}

.hero-btn-secondary {
    background: #fff;
    color: var(--heading-color);
    border: 1px solid rgba(0,0,0,.08);
}

.hero-btn-secondary:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
}

/* Tablet */

@media(max-width:991px){

    .services-hero{
        padding:120px 0 80px;
    }

    .hero-content h1{
        font-size:48px;
    }

    .hero-image{
        margin-top:50px;
    }

}

/* Mobile */

@media(max-width:768px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-features{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
        justify-content:center;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .services-hero{
        padding:100px 0 70px;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

}

/* services section  */
/*======================================
Service Categories
======================================*/

.service-categories {
    padding: 50px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: auto auto 60px;
}

.section-header .section-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(23,92,221,.08);
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}


/* Grid */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */

.service-box {
  background: #fff;

  border: 1px solid #edf2f7;
  border-radius: 18px;

  padding: 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  text-decoration: none;

  transition: all .35s ease;

  min-height: 90px;

  box-shadow: 0 10px 30px rgba(17,35,68,.05);
}

.service-box span {
  color: #112344;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  padding-right: 10px;
}

.service-box i {
  color: #175CDD;
  font-size: 18px;
  transition: .3s;
}

.service-box:hover {
  transform: translateY(-6px);

  border-color: #175CDD;

  box-shadow: 0 20px 40px rgba(23,92,221,.12);
}

.service-box:hover i {
  transform: translateX(5px);
}

/* Tablet */

@media (max-width: 991px) {

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-directory .section-header h2 {
    font-size: 2.4rem;
  }

}

/* Mobile */

@media (max-width: 768px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-directory {
    padding: 80px 0;
  }

  .services-directory .section-header h2 {
    font-size: 2rem;
  }

}

@media (max-width: 576px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-box {
    min-height: 75px;
  }

}

.services-tools{
  max-width:1200px;
  margin:0 auto 50px;
}

/* Search */

.services-search{
  position:relative;
  margin-bottom:25px;
}

.services-search i{
  position:absolute;
  left:20px;
  top:50%;
  transform:translateY(-50%);
  color:#175CDD;
}

.services-search input{
  width:100%;
  height:60px;

  border:none;
  outline:none;

  border-radius:60px;

  padding:0 25px 0 55px;

  background:#fff;

  box-shadow:0 10px 30px rgba(17,35,68,.06);
}

/* Filters */

.services-filters{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:10px;
}

.services-filters::-webkit-scrollbar{
  height:4px;
}

.services-filters::-webkit-scrollbar-thumb{
  background:#175CDD;
  border-radius:20px;
}

.filter-btn{
  border:none;
  background:#fff;

  color:#112344;

  padding:12px 20px;

  border-radius:50px;

  white-space:nowrap;

  font-weight:600;

  transition:.3s;

  box-shadow:0 5px 20px rgba(17,35,68,.05);
}

.filter-btn.active,
.filter-btn:hover{
  background:#175CDD;
  color:#fff;
}

/*======================================
Equipment Rental
======================================*/

.equipment-rental {
    padding: 50px 0;
    background: #f8fbff;
}

.equipment-header {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.equipment-header .section-subtitle {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(23,92,221,.08);
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.equipment-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.equipment-box{
  background:#fff;

  border:1px solid #edf2f7;
  border-radius:18px;

  padding:22px 20px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  text-decoration:none;

  min-height:90px;

  transition:.35s ease;

  box-shadow:0 10px 30px rgba(17,35,68,.05);
}

.equipment-box span{
  color:#112344;
  font-size:15px;
  font-weight:600;
  line-height:1.5;
  padding-right:10px;
}

.equipment-box i{
  color:#175CDD;
  font-size:18px;
  transition:.3s;
}

.equipment-box:hover{
  transform:translateY(-6px);
  border-color:#175CDD;
  box-shadow:0 20px 40px rgba(23,92,221,.12);
}

.equipment-box:hover i{
  transform:translateX(5px);
}

/* Responsive */

@media(max-width:991px){
  .equipment-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  .equipment-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .equipment-grid{
    grid-template-columns:1fr;
  }
}



.equipment-cta {
    margin-top: 70px;
    text-align: center;
}

.equipment-cta h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.equipment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    padding: 16px 35px;

    background: var(--accent-color);

    color: #fff;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;
}

.equipment-btn:hover {
    color: #fff;
}

/* Tablet */

@media(max-width:991px){

    .equipment-rental{
        padding:80px 0;
    }

    .equipment-header h2{
        font-size:40px;
    }

}

/* Mobile */

@media(max-width:768px){

    .equipment-header h2{
        font-size:32px;
    }

    .equipment-card{
        padding:30px;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .equipment-rental{
        padding:70px 0;
    }

    .equipment-header h2{
        font-size:28px;
    }

}

/*======================================
Why Choose Us
======================================*/

.why-choose-us {
    padding: 50px 0;
    background: #f8fbff;
}

.why-card {
    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    height: 100%;

    border: 1px solid rgba(0,0,0,.05);

    transition: all .4s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.why-card:hover {
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.why-icon {
    width: 90px;
    height: 90px;

    margin: 0 auto 25px;

    border-radius: 20px;

    background: rgba(23,92,221,.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 40px;
    color: var(--accent-color);
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 15px;

    color: var(--heading-color);
}

.why-card p {
    line-height: 1.8;
    color: var(--default-color);
}

/* Tablet */

@media(max-width:991px){

    .why-choose-us{
        padding:80px 0;
    }

}

/* Mobile */

@media(max-width:768px){

    .why-card{
        padding:30px;
    }

    .why-card h3{
        font-size:22px;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .why-choose-us{
        padding:70px 0;
    }

}

/*======================================
FAQ Section
======================================*/

.faq-section {
    padding: 50px 0;
    background: #fff;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: .3s ease;
}

.faq-item.active {
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 25px 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    text-align: left;

    font-size: 18px;
    font-weight: 700;

    color: var(--heading-color);

    cursor: pointer;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon i {
    font-size: 20px;
    color: var(--accent-color);
    transition: .3s ease;
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    line-height: 1.8;
    color: var(--default-color);
}

/* Tablet */

@media(max-width:991px){

    .faq-section{
        padding:80px 0;
    }

}

/* Mobile */

@media(max-width:768px){

    .faq-question{
        font-size:16px;
        padding:22px;
    }

    .faq-answer p{
        padding:0 22px 22px;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .faq-section{
        padding:70px 0;
    }

}

/*======================================
CTA Section
======================================*/

.cta-section {
    padding: 50px 0;
    background: #f8fbff;
}

.cta-wrapper {

    position: relative;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        var(--accent-color),
        #0f4fc4
    );

    border-radius: 32px;

    padding: 70px;

    color: #fff;

}

.cta-wrapper::before {

    content: "";

    position: absolute;

    top: -120px;
    right: -120px;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 20px;

    background: rgba(255,255,255,.15);

    border-radius: 50px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;

}

.cta-content h2 {

    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;

}

.cta-content p {

    font-size: 18px;

    line-height: 1.9;

    margin-bottom: 30px;

    opacity: .95;

}

.cta-features {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}

.cta-features span {

    display: flex;

    align-items: center;

    gap: 8px;

    font-weight: 500;

}

.cta-features i {
    color: #7dff9f;
}

.cta-buttons {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.cta-btn-primary,
.cta-btn-secondary {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 16px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-weight: 600;

    transition: .3s ease;

}

.cta-btn-primary {

    background: #fff;

    color: var(--accent-color);

}

.cta-btn-primary:hover {

    transform: translateY(-4px);

    color: var(--accent-color);

}

.cta-btn-secondary {

    background: rgba(255,255,255,.15);

    color: #fff;

    border: 1px solid rgba(255,255,255,.2);

}

.cta-btn-secondary:hover {

    transform: translateY(-4px);

    color: #fff;

    background: rgba(255,255,255,.25);

}

/* Tablet */

@media(max-width:991px){

    .cta-wrapper{
        padding:50px;
    }

    .cta-content h2{
        font-size:40px;
    }

}

/* Mobile */

@media(max-width:768px){

    .cta-section{
        padding:70px 0;
    }

    .cta-wrapper{
        padding:35px;
        text-align:center;
    }

    .cta-content h2{
        font-size:32px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-features{
        justify-content:center;
    }

}

/* Small Mobile */

@media(max-width:576px){

    .cta-wrapper{
        padding:30px 25px;
    }

    .cta-content h2{
        font-size:28px;
    }

    .cta-features{
        flex-direction:column;
        gap:12px;
    }

}

