/* Custom styles */
body {
    padding:0px;
    margin:0px;
    font-family: 'Roboto', sans-serif;
  }
  *{
    box-sizing: border-box;
    padding:0px;
  }

  /* .hero-section {
    background: linear-gradient(to right, #f8f9fa 50%, #ffffff 50%);
  } */
  .btn{
    background-color:   #163364 !important;
    border: none !important;

  }
  .btn:hover{
    background-color: #3598DB!important;

  }
  .device-selection .card {
    transition: transform 0.3s ease;
    border-radius: 10px;
  }
  .device-selection .card:hover {
    transform: translateY(-5px);
  }
  .device-selection {
    background-color: #105077;
    border-color: #0c3f79;
  }
  .promise-banner {
    background-color: #105077!important; /* Primary color */
  }
  .promise-item {
    transition: transform 0.3s ease;
  }
  .promise-item:hover {
    transform: translateY(-3px);
  }
  .why-choose-us {
    position: relative;
    overflow: hidden;
  }

  .feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
  }

  .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .feature-card {
      padding: 1.5rem !important;
    }
    .feature-icon {
      width: 50px;
      height: 50px;
      padding: 0.75rem !important;
    }
  }
  .custom{
    color:#0c3f79;
  }
  @media (max-width: 768px) {
    .promise-banner {
      padding: 1.5rem 0 !important;
    }
  }
  @media (max-width: 992px) {
    .hero-section {
      background: #f8f9fa;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .card {
      margin-bottom: 20px;
    }
  }

  /* Smooth scrolling for anchor links */
  html {
    scroll-behavior: smooth;
  }

  /* Footer styling */
  footer a {
    text-decoration: none;
    transition: color 0.3s;
  }

  footer a:hover {
    color: #3598DB!important;
  }
  h1, h2, h3, h4, h5{
    color:#105077;
    text-transform: uppercase;
  }
  /* Booking Form */
    .booking-section {
      background-color: #f8f9fa;
    }
    .booking-card {
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border: none;
    }
    .form-control, .form-select {
      height: 50px;
      border-radius: 8px;
      border: 1px solid #ced4da;
    }
    .form-control:focus, .form-select:focus {
      border-color: #105077;
      box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }
    textarea.form-control {
      height: 100px !important;
    }
    .btn-submit {
      background-color: #0c3f79;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      letter-spacing: 1px;
    }
    .btn-submit:hover {
      background-color:white;
    }
    .section-title {
      position: relative;
      display: inline-block;
    }
    .section-title:after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      background: #105077;
      bottom: -10px;
      left: 0;
    }
    #formMessage {
      display: none;
    }
    .testimonials {
      padding: 80px 0;
      background-color: #f9f9f9;
  }

  .section-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: #0c3f79;
      font-weight: 700;
      text-align: center;
  }

         .testimonials {
            padding: 80px 0;
            background-color: #f9f9f9;
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: #105077;
            font-weight: 700;
            text-align: center;
        }

        .testimonial-slider-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 50px;
        }

        .testimonial-slider {
            overflow: hidden;
            width: 100%;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            margin-right: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex: 0 0 calc(25% - 15px);
            transition: all 0.3s ease;
            border-top: 3px solid #105077;
        }

        .testimonial-card:last-child {
            margin-right: 0;
        }

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

        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .client-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid #105077;
        }

        .client-name {
            font-weight: 700;
            margin-bottom: 5px;
            color: #333;
        }

        .client-role {
            color: #777;
            font-size: 0.9rem;
        }

        .testimonial-text {
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }

        .rating {
            color: #ffc107;
            margin-top: 15px;
        }

        .slider-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 10;
            border: 1px solid #eee;
        }

        .slider-nav:hover {
            background: #105077;
            color: white;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #105077;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .testimonial-card {
                flex: 0 0 calc(33.33% - 15px);
            }
        }

        @media (max-width: 992px) {
            .testimonial-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 576px) {
            .testimonial-slider-container {
                padding: 0 30px;
            }

            .testimonial-card {
                flex: 0 0 calc(100% - 15px);
            }

            .slider-nav {
                width: 30px;
                height: 30px;
            }
        }

/* Why Choose Us Section */
  .why-choose-us {
    background: linear-gradient(135deg, rgba(193,15,107,0.1) 0%, rgba(255,255,255,1) 100%);
    padding: 80px 0;
    border-bottom: 3px solid #105077;
    border-top: 3px solid #105077;
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    /* background: linear-gradient(90deg, #c10f6b 0%, #ff8a00 100%); */
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #105077;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #105077;
    border-radius: 2px;
}

.reviews-badge {
    background-color: white;
    border: 1px solid #ddd;
    padding: 12px 25px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.reviews-badge:hover {
    transform: translateY(-3px);
}

.reviews-badge i.fa-star {
    color: #ffc107;
    margin-right: 5px;
}

.reviews-badge i.fa-caret-down {
    color: #c10f6b;
    margin-left: 5px;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.feature-box {
    background: white;
    border-radius: 80px;
    padding: 25px 15px;
    text-align: center;
    width: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #3598DB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #3598DB;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}

.feature-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

hr.divider {
    margin: 10px auto;
    width: 60%;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(193,15,107,0), rgba(15, 39, 193, 0.75), rgba(193,15,107,0));
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .feature-box {
        width: 140px;
        padding: 20px 10px;
    }

    .feature-icon {
        font-size: 2rem;
        height: 50px;
        margin-bottom: 10px;
    }

    .feature-title {
        font-size: 0.9rem;
    }
}

.navbar-nav .nav-link:hover{
    color:#ffffff !important;
    transition: all 0.3s ease;
    transform: scale(1.1);

}
.btn-primary{
  width:100% !important;
  font-weight: bold !important;
}
.btn-add-to-cart{
  color:white !important;
  font-weight: bold !important;
}
