:root {
    --brand: #01b5fb;
    --sub: #6ac754;
    --body: #516171;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* Hero Section Styling */
.hero-section {
  position: relative;
}

.hero-slide {
  background: linear-gradient(135deg, rgba(6, 8, 17, 0.437) 0%, rgba(8, 10, 18, 0.404) 100%), url('../img/image-4/static-banner.jpg');
   background-size: cover;
    background-position: center;
     min-height: 400px;
      padding: 80px 20px;
       background-attachment:fixed;
       align-items: bottom;
}

.path-head{
  font-size: 35px;
}
.path-text{
  font-size: 20px;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.3;
  pointer-events: none;
}

/* White Container Shadow */
.white-container-section .bg-white {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slide {
    min-height: 400px !important;
    padding: 60px 0 100px 0 !important;
  }
  
  .white-container-section {
    margin-top: -60px !important;
  }
  
  .display-4 {
    font-size: 2rem !important;
  }
  
  .fs-5 {
    font-size: 1rem !important;
  }
  
  .fs-3 {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    min-height: 350px !important;
    padding: 40px 0 80px 0 !important;
  }
  
  .white-container-section {
    margin-top: -3S0px !important;
  }
  
  .display-4 {
    font-size: 1.75rem !important;
  }
}



/* About Section Styling */
.about-section {
  padding: 80px 20px;
  background: #ffffff;
}

.about-image-wrapper img {
  transition: transform 0.4s ease;
}

/* .about-image-wrapper:hover img {
  transform: scale(1.03);
} */

.speed-score-badge {
  transition: all 0.3s ease;
  cursor: pointer;
}

.speed-score-badge:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3) !important; */
}

.speed-score-badge:hover .icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.speed-score-badge .icon-wrapper {
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .about-image-wrapper img {
    height: 350px !important;
  }
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 1.8rem !important;
  }
  .about-image-wrapper img {
    height: 280px !important;
  }
  .speed-score-badge h4 {
    font-size: 1.5rem !important;
  }
  .speed-score-badge {
    flex-direction: column;
    text-align: center;
  }
}







/* whychoose us */

 .service-wcu-section {
  padding: 80px 80px;
            max-width: 100%;
            width: 100%;
            background: linear-gradient(135deg, rgba(6, 8, 17, 0.6) 0%, rgba(8, 10, 18, 0.6) 100%), url('../img/image-3/why-choose-us-bg.jpg') no-repeat center center/cover;
            background-attachment: fixed;
        }

        .service-wcu-header {
            text-align: center;
            margin-bottom: 60px;
            animation: fadeInDown 0.8s ease;
        }

        .service-wcu-header h2 {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .service-wcu-header p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto;
        }

        .service-wcu-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            perspective: 1000px;
        }

        .service-wcu-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: fadeInUp 0.8s ease;
            animation-fill-mode: both;
        }

        .service-wcu-card:nth-child(1) { animation-delay: 0.1s; }
        .service-wcu-card:nth-child(2) { animation-delay: 0.2s; }
        .service-wcu-card:nth-child(3) { animation-delay: 0.3s; }

        .service-wcu-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .service-wcu-card:hover::before {
            left: 100%;
        }

        .service-wcu-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 50px rgba(0,0,0,0.4);
        }

        .service-wcu-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: var(--brand);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .service-wcu-icon i{
            font-size: 32px;
            color: white;
        }

        .service-wcu-card:hover .service-wcu-icon {
            transform: rotate(360deg);
            background: var(--brand);
        }

        .service-wcu-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .service-wcu-card h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .service-wcu-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-wcu-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(102, 126, 234, 0.1);
            transition: all 0.4s ease;
        }

        .service-wcu-card:hover .service-wcu-number {
            color: rgba(102, 126, 234, 0.3);
            transform: scale(1.2);
        }

        .service-wcu-link {
            display: inline-block;
            padding: 10px 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(10px);
        }

        .service-wcu-card:hover .service-wcu-link {
            opacity: 1;
            transform: translateY(0);
        }

        .service-wcu-link:hover {
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transform: scale(1.05);
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .service-wcu-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .service-wcu-header h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 640px) {
            .service-wcu-section {
                padding: 80px 30px;
            }
            .service-wcu-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-wcu-header h2 {
                font-size: 2rem;
            }

            .service-wcu-header p {
                font-size: 1rem;
            }

            .service-wcu-card {
                padding: 30px 20px;
            }

            .service-wcu-card h3 {
                font-size: 1.3rem;
            }
        }





        /* other service sections */

 .service-other-section {
    padding: 60px 0;
}

.service-other-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.service-other-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* ===== FLIP CARD ===== */
.flip {
    position: relative;
    perspective: 1000px;
    height: 260px;
}

.flip .front,
.flip .back {
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    backface-visibility: hidden;
    transition: transform 0.5s cubic-bezier(.175,.885,.32,1.275),
                opacity 0.5s cubic-bezier(.175,.885,.32,1.275);
}

/* FRONT */
.flip .front {
    background: #000;
    transform: rotateY(0deg);
}

.flip .front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-title {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* BACK */
.flip .back {
    position: absolute;
    inset: 0;
    background: #111;
    color: #fff;
    opacity: 0;
    transform: rotateY(-180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* HOVER */
.flip:hover .front {
    transform: rotateY(180deg);
}

.flip:hover .back {
    transform: rotateY(0deg);
    opacity: 1;
}

/* LINK RESET */
.service-card-link {
    text-decoration: none;
    display: block;
}


 .btn-3d {
            background: #e67b00;
            color: white;
            border: none;
            padding: 14px 32px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 6px 0 #713800, 0 8px 15px rgba(226, 113, 0, 0.4);
            transition: all 0.1s ease;
            
        }

        .btn-3d:hover {
            transform: translateY(2px);
            box-shadow: 0 4px 0 #713800, 0 6px 12px rgba(226, 113, 0, 0.4);
        }

        .btn-3d:active {
            transform: translateY(6px);
            box-shadow: 0 0 0 #713800, 0 2px 8px rgba(226, 113, 0, 0.4);
        }










.key-features-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, rgba(246, 246, 246, 0.797) 0%, rgba(234, 234, 234, 0.458) 100%), url('../img/image-4/service-feature-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.key-features-header {
    text-align: center;
    margin-bottom: 60px;
}

.key-features-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.key-features-header p {
    font-size: 18px;
    color: #000000;
}


.key-feature-icon {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 14px;
    display: inline-block;
}
.key-feature-box:hover .key-feature-icon{
    color: var(--brand);
}

/* Grid */
.key-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 per row */
    gap: 24px;
}

.key-feature-box {
    background: #000000;
    padding: 60px 0px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

}

.key-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.key-feature-icon {
  color: white;
    font-size: 34px;
    margin-bottom: 14px;
}

.key-feature-box h4 {
  color: white;
    font-size: 17px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
    .key-features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .key-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 768px) {
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
       .key-feature-box {
    padding: 30px 20px;
}
}

@media (max-width: 480px) {
    .key-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .key-feature-box {
    padding: 30px 20px;
}
}
