:root {
  --primary-color: #00aeef;
  --color-blue: #d9f4ff;
  /* --secondary-color: #f8f9fa;
    --text-color: #000000;
    --link-color: #007bff;
    --link-hover-color: #0056b3;
    --border-color: #dee2e6;
    --background-color: #f8f9fa;
    --navbar-bg-color: #ffffff;
    --navbar-text-color: #000000; */
}

body {
  font-family: "Nunito", sans-serif;
}
/* login, register and reset password css start */
.breadcrumb_inner {
  background: linear-gradient(to right, #f8fbff, #eafafc);
}

.heading-underline::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #00aeef;
  margin: 0 auto;
  margin-top: 10px;
}

.breadcrumb a:hover {
  color: #000 !important;
  text-decoration: underline !important;
}

.main-card {
  background: var(--primary-color);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.login-btn {
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.login-btn:hover {
  background: #0088cc;
  color: #fff;
}
.custom-icon {
  color: #00aeef;
  font-size: 18px;
}
.register-link {
  color: #00aeef;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.register-link:hover {
  text-decoration: underline;
  color: #007bbd;
}
.newsletter-section {
  background: linear-gradient(to right, #d4f5ff, #e8fae8);
}
.submit-btn {
  background: var(--primary-color);
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.submit-btn:hover {
  background: #0088cc;
  color: #fff;
}
.submit-btn {
  background-color: #00aeef;
  border: none;
  text-decoration: none;
}

.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
  background-color: #009cd3 !important;
  color: white;
  box-shadow: none;
}
/* end */

/* account details css start */
.account-header {
  background: linear-gradient(135deg, #009cd3, #009cd3);
  /* single-color gradient */
  color: white;
  padding: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.info-row {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f2f5;
  transition: all 0.3s ease;
  position: relative;
}

.info-row:hover {
  background: #f1fbff;
  padding-left: 6px;
  border-left: 4px solid #009cd3;
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: 600;
  color: #2d3748;
  font-size: 1.1rem;
  min-width: 180px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-value {
  color: #4a5568;
  font-size: 1rem;
  flex: 1;
  padding: 8px 12px;
  background: #f7fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.info-value:hover {
  background: #edf2f7;
  border-color: #cbd5e0;
}

.info-icon {
  width: 20px;
  height: 20px;
  background: #009cd3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
}

.edit-btn {
  background: #009cd3;
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(0, 156, 211, 0.3);
}

.edit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 156, 211, 0.4);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  background: #009cd3;
  font-size: 2rem;
  color: white;
  border: 4px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .account-body {
    padding: 30px 20px;
  }

  .info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .info-row:hover {
    background: none;
    padding-left: 0;
    border-left: none;
  }

  .info-label {
    min-width: auto;
    width: 100%;
  }

  .info-value {
    width: 100%;
  }

  .account-title {
    font-size: 2rem;
  }
  .edit-btn {
    padding: 8px 10px;
    font-size: 1rem;
    margin-top: 20px;
  }
  .edit-btn:hover {
    transform: translateY(0);
    box-shadow: none;
  }
}
/* end */

/* wishlist css start */
.btn-custom-sky {
  background-color: #00aeef;
  color: #fff;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-custom-sky:hover {
  background-color: #0095cc; /* optional: darker shade on hover */
  color: #fff;
}

/* end */

/* contact page css start */
.custom-blue-btn {
  background-color: #00aeef;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.custom-blue-btn:hover {
  background-color: #009cd3;
}

.contact-hero {
  background: #00aeef;
  color: white;
  padding: 40px 0;
  margin-bottom: 60px;
}

.contact-icon {
  width: 30px;
  height: 30px;
  background: #00aeef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  margin-right: 15px;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00aeef;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6c757d;
}

.btn-primary {
  background: #00aeef;
  border: none;
  padding: 0.9375rem 1.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0088cc;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 174, 239, 0.3);
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 40px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-info-item {
    flex-direction: column;
    text-align: center;
  }
}

/* end */

/* cart css styling start */
.cart-header {
  background: #00aeef;
  color: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.quantity-btn {
  width: 35px;
  height: 35px;
  border: none;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.quantity-btn:hover {
  background: #00aeef;
  color: white;
 }

.quantity-input {
  width: 60px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  color: #333;
  margin: 0 10px;
}

.quantity-input:focus {
  outline: none;
}

.btn-custom {
  background-color: #00aeef;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
  text-decoration: none;
}

.btn-custom:hover {
  background-color: #0096d1;
  box-shadow: 0 4px 10px rgba(0, 174, 239, 0.3);
  color: #fff;
}

.cart-summary {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.summary-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  color: #333;
}

@media (max-width: 767.98px) {
  .cart-header {
    padding: 20px;
    text-align: center;
    font-size: 1.25rem;
  }

  .quantity-controls {
    flex-direction: row; 
    align-items: center;
    gap: 5px;
  }

  .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .quantity-input {
    width: 100%;
  }

  .cart-summary {
    margin-top: 30px;
    padding: 10px;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
/* end */

/* faqs css styling start */
.accordion-button {
  background-color: #f8f9fa;
  box-shadow: none !important;
  position: relative;
  border-top: 1px solid #dee2e6;  
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.25rem;
  font-weight: 500;
  color: #495057;
}

.accordion-button:hover {
  color: #00aeef;
  background-color: #e9ecef;
}

.accordion-button::after {
  display: none !important;
}

.custom-icon::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.1rem;
  display: inline-block;
  transition: transform 0.3s ease;
  color: #00aeef;
}

.accordion-button:not(.collapsed) .custom-icon::after {
  transform: rotate(90deg);
}

.accordion-button::before {
  content: "";
  position: absolute;
  top: 0; /* changed from bottom: 0 */
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #00aeef, #0088cc);
  width: 0;
  transition: width 0.9s ease;
}

.accordion-button:not(.collapsed)::before {
  width: 50%;
}

.accordion-button:not(.collapsed) {
  background-color: #f0f8ff;
  color: #00aeef;
  font-weight: 600;
}

.accordion-item {
  border: none;
  border-top: 1px solid #dee2e6;  
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.accordion-item:last-child {
  border-top: none;
}

.accordion-body {
  padding: 1.5rem 1.25rem;
  background-color: #ffffff;
  color: #6c757d;
  line-height: 1.6;
  border-top: 1px solid #e9ecef;
}

.cart-header {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  color: white;
  padding: 2rem 0;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.accordion {
  background-color: transparent;
}

.accordion-flush .accordion-item {
  background-color: white;
}

.btn-contact {
  background: linear-gradient(135deg, #00aeef 0%, #0088cc 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
}

.btn-contact:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 174, 239, 0.4);
}
/* end */

/* blogs css start */
.custom-bg-blue {
  background-color: #00aeef;
}

.recent-post-text {
  font-size: 0.72rem;
  line-height: 2;
}

.recent-post-text a:hover {
  color: #00aeef !important;
}

.btn-read-more {
  background-color: #00aeef;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.3);
}

.btn-read-more:hover {
  background-color: #008fc3;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 174, 239, 0.4);
}

.blog-tag {
  background-color: #f2f2f2;
  padding: 8px 14px;
  width: 100%;
  color: #000;
  border-radius: 8px;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.blog-tag:hover {
  background-color: #00aeef;
  color: #fff;
  transform: translateX(5px);
  box-shadow: 2px 4px 10px rgba(0, 174, 239, 0.2);
}

/* pagination */
.custom-pagination .page-link {
  border-radius: 50% !important;
  width: 45px;
  height: 45px;
  text-align: center;
  padding: 10px 0;
  margin: 10px 5px;
  border: 1px solid #ddd;
  color: #0b2243;
  font-weight: 500;
  transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
  background-color: #00aeef;
  color: #fff;
  border-color: #00aeef;
}

.custom-pagination .page-item.active .page-link {
  background-color: #00aeef;
  border-color: #00aeef;
  color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
  pointer-events: none;
  background-color: transparent;
  border: none;
  color: #999;
}
@media (max-width: 768.98px) {
  .recent-post-text {
    font-size: 0.68rem;
    line-height: 1.6;
  }

  .btn-read-more {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .blog-tag {
    display: block;
    width: 100%;
  }

  .custom-pagination .page-link {
    width: 38px;
    height: 38px;
    padding: 8px 0;
    font-size: 0.85rem;
  }
}
/* end */

/* footer about us css start */
.banner-wrapper {
  position: relative;
}

.banner-image {
  width: 100%;
}

.banner-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #edede9, rgba(255, 255, 255, 0));
  z-index: 1;
}

.banner-content {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-40%);
  z-index: 2;
}

.text-heading {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #1a3a6a;
}

/* Why Choose Us Section */
.features-section {
  background-color: #f0f4f8;
  padding: 60px 0;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a3a6a;
}

.feature-card h3 {
  margin-bottom: 15px;
  color: #1a3a6a;
}

/* Product Highlight */
.product-highlight {
  background: linear-gradient(135deg, #e0f4ff 0%, #b3e5fc 100%);
  color: #0d3b66;
  /* Dark blue for text */
  padding: 60px 0;
  text-align: center;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  max-width: 800px;
  margin: 40px auto 0;
  color: #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
  color: #1a3a6a;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* Certifications Section */
.certifications {
  padding: 60px 0;
  text-align: center;
}

.cert-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.cert-badge {
  background: white;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-weight: bold;
  color: #1a3a6a;
}
/* end */

/* shipping policy css start  */
/* Header */
.shipping-policy-header {
  background: #00aeef;
  color: white;
  padding: 40px 0;
  text-align: center;
  margin-bottom: 30px;
}

.shipping-policy-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

/* Sidebar Navigation */
.policy-nav {
  position: sticky;
  top: 20px;
  align-self: start;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.policy-nav h3 {
  color: #00aeef;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e6f2f8;
}

.policy-nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.policy-nav li {
  margin-bottom: 12px;
}

.policy-nav a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 8px 0;
}

.policy-nav a:hover,
.policy-nav a:focus {
  color: #00aeef;
  font-weight: 500;
  transform: translateX(5px);
}

.policy-nav a.active {
  color: #00aeef;
  font-weight: 600;
  border-left: 3px solid #00aeef;
  padding-left: 15px;
}

/* Policy Cards */
.policy-section {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
  padding: 40px;
  margin-bottom: 30px;
}

.policy-section h2 {
  color: #00aeef;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.policy-section h3 {
  color: #1a3a6a;
  margin: 25px 0 15px;
  font-size: 1.3rem;
}

.policy-section p {
  margin-bottom: 15px;
}

.policy-section ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-section li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.policy-section li:before {
  content: "•";
  color: #00aeef;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -3px;
}

/* Info Box */
.info-box {
  background-color: #f1faff;
  border-left: 4px solid #00aeef;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Carrier Logos */
.shipping-carriers {
  display: flex;
  gap: 20px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.carrier-logo {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.7);
  transition: all 0.3s ease;
}

.carrier-logo:hover {
  filter: grayscale(0) opacity(1);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .shipping-policy-header {
    padding: 50px 20px;
  }

  .shipping-policy-header h1 {
    font-size: 2rem;
  }

  .policy-nav {
    position: static;
    padding: 20px;
    margin-bottom: 30px;
  }

  .policy-nav h3 {
    font-size: 1.2rem;
  }

  .policy-nav a {
    font-size: 0.95rem;
    padding: 6px 0;
  }

  .policy-section {
    padding: 25px;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .policy-section h3 {
    font-size: 1.1rem;
  }

  .info-box {
    padding: 16px;
    font-size: 0.95rem;
  }

  .shipping-carriers {
    justify-content: center;
  }

  .carrier-logo {
    height: 30px;
  }
}
/* end */

/* confirm order css */
   .custom-background {
        background-color: #fdfaf6;
    }

    .step-box {
        max-width: 150px;
        padding: 0 10px;
        text-align: center;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: white;
        margin-bottom: 8px;
        z-index: 2;
    }

    .step-circle.completed {
        background: #00aeef;
    }

    .step-circle.active {
        background: #00aeef;
        box-shadow: 0 0 0 4px rgba(0, 156, 211, 0.2);
    }

    .step-circle.complete {
        background-color: rgb(5, 161, 62);
        box-shadow: 0 0 10px rgba(25, 135, 84, 0.3);
    }

    .step-line {
        position: absolute;
        top: 20px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #e9ecef;
        z-index: 1;
    }

    .step-line.completed {
        background: #00aeef;
    }

    .btn-track {
        background-color: #009cd3;
        color: #fff;
        border: none;
        padding: 12px 30px;
        border-radius: 30px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-track:hover {
        background-color: #106f92ff;
        color: #fff;
    }

    .info-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 12px;
        border-bottom: 1px dashed #eee;
        padding-bottom: 8px;
        color: #333;
    }

    .info-item span {
        color: #555;
    }

    @media (max-width: 576px) {
        .step-circle {
            width: 36px;
            height: 36px;
            font-size: 14px;
        }

        .step-box {
            max-width: 100px;
            padding: 0 5px;
        }

        .info-item {
            font-size: 14px;
            flex-direction: column;
            align-items: flex-start;
        }

        .product-item {
            flex-direction: column;
            align-items: flex-start;
        }

        .product-item img {
            margin-bottom: 10px;
        }

        .btn-track {
            padding: 10px 16px;
            font-size: 12px;
        }
    }
/* end */