
/* Marquee styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4cc9f0;
    --dark-color: #d0d0e9;
    --light-color: #f8f9fa;
}


/* Light/Dark Mode Variables */
/* :root {
    
    --bg-color-light: #ffffff;
    --text-color-light: #212529;
    --card-bg-light: #f8f9fa;
 
    --bg-color-dark: #1a1a2e;
    --text-color-dark: #f8f9fa;
    --card-bg-dark: #2a2a3e;
    

    --bg-color: var(--bg-color-light);
    --text-color: var(--text-color-light);
    --card-bg: var(--card-bg-light);
  } */
  

   /* body.dark-mode {
    --bg-color: var(--bg-color-dark);
    --text-color: var(--text-color-dark);
    --card-bg: var(--card-bg-dark);
    
    background-color: var(--bg-color);
    color: var(--text-color);
  }
  
 
 body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .card {
    background-color: var(--card-bg);
    transition: background-color 0.3s ease;
  }

  .dark-mode .navbar-custom {
    background-color: rgba(26, 26, 46, 0.95) !important;
  }
  
  .dark-mode .navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  .dark-mode .navbar-custom .nav-link:hover,
  .dark-mode .navbar-custom .nav-link.active {
    color: white !important;
  }
  
 
  .theme-toggle {
    background: none;
    border: none;
    color: currentColor;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: 1rem;
    transition: transform 0.3s ease;
  } */
  
  .theme-toggle:hover {
    transform: scale(1.1);
  }
  
  .theme-toggle:focus {
    outline: none;
  }
  
  /* Mobile navbar dark mode */
  @media (max-width: 991.98px) {
    .dark-mode .navbar-custom .navbar-collapse {
      background: var(--card-bg-dark);
    }
    
    .dark-mode .navbar-custom .nav-link {
      color: var(--text-color-dark) !important;
    }
  }





.marquee {
    background-color: rgba(209, 201, 201, 0.5);
    /* Semi-transparent white */
    backdrop-filter: blur(8px);
    /* Blur effect behind the marquee */
    -webkit-backdrop-filter: blur(8px);
    /* Safari support */

    color: #212529;
    padding: 12px 0;
    font-size: 14px;
    /* border-bottom: 1px solid #dee2e6; */
    overflow: hidden;
    white-space: nowrap;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1031;
    /* Above navbar which is 1030 */
    transition: transform 0.3s ease;
}

.marquee.hidden {
    transform: translateY(-100%);
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Navbar styles */
/* Navbar styles */
.navbar-custom {
    background-color: transparent;
    padding: 15px 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: 500;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;


}

.navbar-custom .navbar-brand {
    font-weight: 750;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.navbar-custom .navbar-brand  {
    /* color: var(--accent-color); */
    color: blue;
}

.navbar-custom .nav-link {
    color: rgba(7, 7, 5, 0.9);
    font-weight: 760;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

/* .navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
     color: rgb(0, 4, 255); 
     background: rgba(255, 255, 255, 0.1); 
    
} */
.navbar-custom .nav-link:hover {
    color: rgba(0, 3, 190, 0.918);
    /* background: rgba(255, 255, 255, 0.1); */ /* Removed */
 
}

.navbar-custom .nav-link.active {
    color: rgb(0, 4, 255);
 

}
.navbar-custom .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
}

.navbar-custom.marquee-hidden {
    margin-top: 0;
}

.navbar-scrolled {
    background-color: rgba(238, 229, 229, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 25px !important;
}

/* Mobile navbar dropdown card */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        background: white;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        padding: 20px;
        margin-top: 10px;
        z-index: 1000;
    }

    .navbar-custom .navbar-nav {
        flex-direction: column;
    }

    .navbar-custom .nav-item {
        margin: 5px 0;
    }

    .navbar-custom .nav-link {
        color: var(--dark-color) !important;
        padding: 10px 15px;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link.active {
        background: rgba(67, 97, 238, 0.1);
        color: var(--primary-color) !important;
    }

    .navbar-custom .navbar-toggler {
        border: none;
        padding: 8px;
    }

    .navbar-custom .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-custom .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
}






.marquee-content {

    display: inline-flex;
    gap: 350px;
    align-items: center;
    background-color: transparent;
}

.marquee-item {
    white-space: nowrap;
}


/* Add these styles to your existing CSS */
.footer-section {
    background: linear-gradient(135deg, #d63cc9 0%, #160316 100%);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.footer-floating-circle {
    width: 300px;
    height: 300px;
    background: rgba(250, 115, 178, 0.1);
    border-radius: 50%;
    top: -90px;
    right: -90px;
    z-index: 0;
    animation: float 4s ease-in-out infinite;
}

.footer-floating-square {
    width: 200px;
    height: 200px;
    background: rgba(255, 54, 195, 0.1);
    bottom: -30px;
    left: -30px;
    z-index: 0;
    transform: rotate(40deg);
    animation: float 2s ease-in-out infinite 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.footer-brand:hover .footer-logo-icon {
    background: var(--accent-color);
    color: white;
    transform: rotate(10deg);
}

.text-gradient {
    background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-heading {
    color: var(--accent-color);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
}

.footer-links .footer-link {
    display: inline-block;
    padding: 5px 0;
}

.link-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover .link-hover {
    width: 100%;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    border-radius: 8px !important;
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.25rem rgba(76, 201, 240, 0.25);
}

.footer-newsletter label {
    color: rgba(255, 255, 255, 0.7);
}

.btn-gradient {
    background: linear-gradient(90deg, #4361ee 0%, #4cc9f0 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.app-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.app-btn i {
    margin-right: 8px;
}

.footer-divider .divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 201, 240, 0.5) 50%, transparent 100%);
    position: relative;
}

.footer-divider .divider-line::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
    opacity: 0.3;
}

.back-to-top {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 5px 15px;
}

.back-to-top:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .footer-section {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        display: inline-block;
        text-align: left;
    }

    .footer-social,
    .footer-apps {
        justify-content: center;
    }
}



.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #eaf1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature {
    text-align: center;
    margin-bottom: 3rem;
}

.phone-img {
    max-height: 650px;
}





.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    animation: pulsess 2s infinite;
}

.card-float {
    position: fixed;
    bottom: 20px;

    z-index: 9999;

}

@keyframes pulsess {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 110%;
    right: 0;
    background: #25D366;
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;

    animation: showHide 10s infinite;
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@keyframes showHide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}




/* products page css*/

.card-hover {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    height: 100%;
    padding: 1rem;
    border: 3px solid #fbfbfc;
    /* light gray border */
    border-radius: .30rem;
    /* soften the corners */
    transition: border-color .1s ease;

}
.card-hover:hover {
    box-shadow: 0 4px 13px rgba(0, 0, 0, 0.15);
}
.card-hover .card-title {
    font-size: 1.75rem;
    /* bigger */
    font-weight: 700;
    /* extra bold */
    text-transform: uppercase;
    /* all-caps for impact */
    letter-spacing: 0.05em;
    /* a bit of breathing room */
    text-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
    transition: transform .3s ease;
}

.card-hover .card-text {
    font-size: 1.05rem;
    /* a touch larger */
    font-weight: 500;
    /* semi-bold */
    color: #6c757d;
    /* slightly muted */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease;
    margin-top: 10px;
}




.card-hover img {
    transition: transform .2s ease;
    height: 250px;
    object-fit: cover;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;

}

.card-hover:hover img {
    transform: scale(0.87);
}

.card-footer {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease;
    border-top: none;
    background: transparent;
    text-align: center;
    padding: .75rem 0 1rem;
}

.card-hover:hover .card-footer {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* .badge-animated {
animation: pulse 1.5s infinite ease-in-out;
} */
/* add these keyframes */
@keyframes pulse-spin {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1) rotate(0deg);
    }

    75% {
        transform: scale(1.1) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* updated badge style */
.badge-animated {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .4rem 1rem;
    border-radius: 2rem;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fad0c4);
    background-size: 200% 200%;
    animation:
        pulse-spin 1.5s infinite ease-in-out,
        gradient-shift 4s infinite ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.btn-learn {
    background: linear-gradient(45deg, #6e8efb, #a777e3);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: .65rem 1.4rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(78, 63, 221, 0.4);
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.btn-learn:hover {
    background: linear-gradient(45deg, #a777e3, #6e8efb);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(78, 63, 221, 0.6);
}









.device-circle {
    width: 90vw;
    height: 60vw;
    max-width: 480px;
    max-height: 480px;
    min-width: 280px;
    min-height: 280px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 1px 24px 25px rgba(51, 54, 99, 0.1);
  }
  .device-circle img {
  /* make it smaller than 70%-width and 400px tall */
  max-width: 190% !important;
  height: 370px !important;
}
  
  /* Temperature display */
  .temperature-display {
    position: absolute;
    top: -2.5vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4.5vw;
    font-weight: bold;
    color: #3629ad;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1);
    width: 90vw;
    max-width: 400px;
    text-align: center;
  }
  
  .temperature-label {
    position: absolute;
    top: -10vw;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.6vw;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  /* Media queries for responsive adjustments */
  @media (min-width: 500px) {
    .temperature-display {
      font-size: 2.2rem;
      top: -13px;
    }
    
    .temperature-label {
      font-size: 0.8rem;
      top: -40px;
    }
  }
  
 @media (max-width: 400px) {
  .device-circle {
    width: 65vw;
    height: 65vw;
  }

  .device-circle img {
    /* limit its height to, say, 20vw instead of 30% of the container */
    max-height: 60vw;
    width: auto;        /* let width scale to preserve aspect ratio */
    object-fit: contain;
  }

  .temperature-display {
    font-size: 5vw;
    top: -3vw;
  }

  .temperature-label {
    font-size: 1.8vw;
    top: -12vw;
  }
}

  
  @media (max-width: 320px) {
    .device-circle {
      min-width: 180px;
      min-height: 180px;
    }
    
    .temperature-display {
      font-size: 1.8rem;
    }
    
    .temperature-label {
      font-size: 0.7rem;
    }

      .device-circle img {
    /* limit its height to, say, 20vw instead of 30% of the container */
    max-height: 60vw;
    width: auto;        /* let width scale to preserve aspect ratio */
    object-fit: contain;
  }
  }










.device-status {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1rem;
  color: #28a745;
  font-weight: 500;
}



.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.03);
}


.custom-breadcrumb {
    --bs-breadcrumb-divider: "›"; /* change the divider symbol */
   
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-family: 'Segoe UI', Tahoma, sans-serif; /* custom font */
    font-size: 2rem;                           /* adjust size */
  }
  
  .custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #6c757d;        /* divider color */
  }
  
  .custom-breadcrumb .breadcrumb-item a {
    color: #007bff;        /* link color */
    text-decoration: none;
  }
  
  .custom-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
  }
  
  .custom-breadcrumb .breadcrumb-item.active {
    color: #495057;        /* active item color */
    font-weight: 600;
  }
  






  .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 15px;
  }

  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
 /* small card on the left */

 .small-card {
    display: none;
    width: 280px;
  }

  .small-card .card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  }

  .btn-close.small-card-close {
    color: #000 !important;
  }

  .btn-close.small-card-close:hover,
  .btn-close.small-card-close:focus {
    border: none !important;

    box-shadow: none !important;

  }
  /* .feature-list li {
    margin-bottom: 0.8rem;
    color: #6c757d;
  } */



  /* button  */


  /* From Uiverse.io by Cornerstone-04 */ 
.box {
    width: 155px;
    height: auto;
    float: left;
    transition: .5s linear;
    position: relative;
    display: block;
    overflow: hidden;
    padding: 10px;
    text-align: center;
    margin: 0 5px;
    background: transparent;
    text-transform: uppercase;
    font-weight: 700;
    background-color:#f1f2f7;
    border: 0.1px  #4b56f1;
  }
  
  .box:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(100%);
  }
  
  .box:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    border-top: 4px solid transparent;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    transform: translateX(-100%);
  }
  
  .box:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
  
  .box:hover:before {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .3s;
  }
  
  .box:hover:after {
    border-color: #262626;
    height: 100%;
    transform: translateX(0);
    transition: .3s transform linear, .3s height linear .5s;
  }
  
  button {
    color: rgb(27, 96, 143);
    text-decoration: none;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
  }








  /* Stock status styles */
  .stock-status {
  
      font-weight: bold;
  }

  @media (max-width: 768px) {
  .stock-status  {
    margin-left: 0 !important;
  }
}
  .in-stock {
      color: #28a745;
  }

  .out-of-stock {
      color: #dc3545;
  }

  /* Enhanced Cart Styles */
  .cart-icon-wrapper {
      position: relative;
      transition: all 0.3s ease;
  }

  .cart-icon-wrapper:hover {
      transform: scale(1.1);
  }

  .cart-badge {
      animation: pulseq 2s infinite;
  }

  @keyframes pulseq {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.2);
      }

      100% {
          transform: scale(1);
      }
  }

  #cart-dropdown-menu {
      transform-origin: top right;
      animation: slideIn 0.2s ease-out;
      border: none;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      max-height: 70vh;
      overflow-y: auto;
  }

  @keyframes slideIn {
      from {
          transform: translateY(10px);
          opacity: 0;
      }

      to {
          transform: translateY(0);
          opacity: 1;
      }
  }

  .cart-header {
      background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
      color: white;
      border-radius: 0.375rem 0.375rem 0 0 !important;
  }

  .cart-item {
      transition: all 0.3s ease;
      border-left: 3px solid transparent;
  }

  .cart-item:hover {
      background-color: rgba(106, 17, 203, 0.05);
      border-left: 3px solid #6a11cb;
  }

  .remove-item {
      opacity: 0.5;
      transition: all 0.3s ease;
  }

  .remove-item:hover {
      opacity: 1;
      color: #dc3545 !important;
  }

  .cart-footer {
      background-color: #f8f9fa;
      border-radius: 0 0 0.375rem 0.375rem !important;
  }

  .empty-cart-icon {
      font-size: 3rem;
      opacity: 0.2;
  }

  /* Mobile-specific styles */
  @media (max-width: 991.98px) {
      #cart-dropdown-menu {
          position: fixed;
          top: 60px;
          right: 15px;
          left: 15px;
          width: auto;
          max-width: 400px;
          margin: 0 auto;
      }

      .navbar-nav .dropdown {
          position: static;
      }

      .device-circle img {
          max-width: 80%;
          margin-left: 0;
      }
  }

  /* slide in from the right */
  @keyframes slideInRight {
      from {
          transform: translateX(100%);
          opacity: 0;
      }

      to {
          transform: translateX(0);
          opacity: 1;
      }
  }

  /* fade up and out at the end */
  @keyframes fadeOutUp {
      from {
          transform: translateY(0);
          opacity: 1;
      }

      to {
          transform: translateY(-20px);
          opacity: 0;
      }
  }

  /* apply both animations: in (0.5s), then out (0.5s) starting 2.5s in */
  .toast-animated {
      animation:
          slideInRight 0.5s ease-out forwards,
          fadeOutUp 0.5s ease-in 2.7s forwards;
  }
  


  /* @keyframes cart-jump-move {
0%, 100% { transform: translate(0, 0); }

30%      { transform: translateX(-5px); }
40%      { transform: translateX(5px); }
50%      { transform: translate(0, 0); }

} */

.action-cart {
display: inline-block;                   /* allow transforms */
transform-origin: center center;
animation: cart-jump-move 3s ease-in-out infinite;
}





/* cart 2  */





.checkout-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* Cart Summary Styles */
.cart-summary {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.cart-summary:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.cart-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.cart-item:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.cart-item:last-child {
    border-bottom: none;
}

/* Payment Method Styles */
.payment-method {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 25px;
    margin-top: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.payment-option {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.payment-option:hover {
    border-color: var(--primary-color);
    background-color: rgba(106, 17, 203, 0.03);
}

.payment-option.selected {
    border: 2px solid var(--primary-color);
    background-color: rgba(106, 17, 203, 0.05);
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--primary-color);
}

/* Address Card Styles */
.address-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.address-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.address-card.selected {
    border: 2px solid var(--primary-color);
    background-color: rgba(106, 17, 203, 0.03);
}

.address-card.selected::after {
    content: '\2713';
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--primary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(106, 17, 203, 0.3);
}

.default-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Login Prompt Styles */
.login-prompt {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.login-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Form Styles */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.15);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-text);
}

/* Order Summary Styles */
.order-summary-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.order-summary-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.delivery-charge {
    color: var(--light-text);
    font-size: 0.9rem;
}

.total-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.paypal-form {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: var(--border-radius);
    border: 1px dashed rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .checkout-container {
        padding: 15px;
    }

    .address-card,
    .payment-method,
    .cart-summary {
        padding: 15px;
    }
}

/* Custom Checkbox and Radio Buttons */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
}

/* Place Order Button */
#place-order-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(106, 17, 203, 0.3);
    text-transform: uppercase;
    font-size: 1rem;
}

#place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(106, 17, 203, 0.4);
}

/* Add Address Button */
#add-address-btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
    transition: var(--transition);
}

/* Cart Dropdown Styles */
.cart-icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-badge {
    font-size: 0.7rem;
    padding: 5px 7px;
}

#cart-dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 0;
}

.cart-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.empty-cart-icon {
    font-size: 2.5rem;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.cart-footer {
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}


h4 {
    color: var(--dark-text);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.05), rgba(37, 117, 252, 0.05));
    border-left: 4px solid var(--primary-color);
    padding: 15px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}





.cart-item {
    background-color: transparent !important;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.dropdown-item {
    background-color: transparent !important;
}





 .btn-login {
            background-color: var(--primary-color);
            border: none;
            padding: 14px;
            border-radius: 10px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btn-login:hover {
            background-color: var(--primary-hover);
            transform: translateY(-2px);
        }
        
        .btn-login::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            transition: all 0.3s;
        }
        
        .btn-login:hover::after {
            left: 100%;
        }







        





        /* -----------------------------------------circle show-------------------------------------------------------- */
       
    .zoom-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-in-out;
  }

  .zoom-scroll.visible {
    opacity: 1;
    transform: scale(1);
  }

/* -----------------------------------------new css------------------------------------------------------------------- */






        /* Video Section */
        .video-section {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .video-section video {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Comparison Table */
        .blue {
            background-color: rgb(113, 113, 247);
        }

        .red {
            background-color: rgb(252, 96, 96);
        }

      
      
        .glow-on-hover {
            transition: all 0.3s ease;
        }

        .glow-on-hover:hover {
            box-shadow: 0 0 15px rgba(13, 110, 253, 0.7);
        }

        /* @media (max-width: 992px) {
            .diagonal-background {
                clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
            }

            .diagonal-background .image-half {
                width: 100%;
                height: 60%;
            }

            .diagonal-background .color-half {
                width: 100%;
                height: 40%;
                top: 60%;
                left: 0;
            }

            .iphone-mockup {
                max-width: 250px;
                margin-top: 3rem;
            }

        } */

        /* Video Modal */
        .animate-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(0.95);
                opacity: 0.75;
            }

            70% {
                transform: scale(1.3);
                opacity: 0;
            }

            100% {
                transform: scale(0.95);
                opacity: 0;
            }
        }

        .modal-content {
            background: transparent;
        }

        .btn-close-white {
            filter: invert(1) grayscale(90%) brightness(200%);
        }

        /* Float Animation */
        @keyframes floatUpDown {
            0% {
                transform: translateY(0px);
            }

            100% {
                transform: translateY(-10px);
            }
        }

        /* Zoom Scroll Effect */
        .zoom-scroll {
            transition: transform 0.3s ease;
        }

        .zoom-scroll:hover {
            transform: scale(1.02);
        }

        /* Carousel Animations */
        @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);
            }
        }

        .animate__fadeInDown {
            animation: fadeInDown 1s ease-out both;
        }

        .animate__fadeInUp {
            animation: fadeInUp 1s ease-out both;
            animation-delay: 0.3s;
        }

        .btn-calculator {
            animation: fadeInUp 1s ease-out both;
            animation-delay: 0.6s;
        }

        /* Carousel Styling */
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            text-align: center;
            padding: 20px;
        }

        .btn-calculator {
            position: relative;
            display: inline-block;
            padding: 12px 30px;
            color: #fff;
            background: linear-gradient(45deg, #3a7bd5, #00d2ff);
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
            transition: all 0.3s ease;
            z-index: 1;
        }

        .btn-calculator:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 210, 255, 0.6);
            color: #fff;
        }

        .btn-calculator:active {
            transform: translateY(1px);
        }

        .btn-calculator-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
        }

        .btn-calculator-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #00d2ff, #3a7bd5);
            border-radius: 50px;
            z-index: 1;
            transition: all 0.4s ease;
            opacity: 0;
        }

        .btn-calculator:hover .btn-calculator-wave {
            opacity: 1;
            animation: wave 1.5s infinite;
        }

        @keyframes wave {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1.5);
                opacity: 0;
            }
        }

        /* Carousel Image Sizing */
        @media (min-width: 768px) {
            #carouselExampleRide .carousel-item img {
                height: 700px;
                object-fit: cover;
            }
        }

        @media (max-width: 767.98px) {
            #carouselExampleRide .carousel-item img {
                height: 340px;
            }
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .carousel-caption {
                transform: translate(-50%, -50%);
            }

            .carousel-caption h1 {
                font-size: 1.5rem;
                margin-bottom: 0.5rem;
            }

            .carousel-caption p {
                font-size: 0.9rem;
                margin-bottom: 0.5rem;
            }

            .btn-calculator {
                padding: 8px 20px;
                font-size: 0.9rem;
            }
        }

    
/* 
            flex: 1;
            height: 3px;
            position: relative;
            min-width: 20px;
        } */

        .left-divider {
            background: linear-gradient(90deg, transparent, #0066ff, #00ccff, transparent);
        }

        .right-divider {
            background: linear-gradient(90deg, transparent, #00ccff, #0066ff, transparent);
        }

        .shimmer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: shine 3s infinite;
        }

        .right-divider .shimmer {
            animation-direction: reverse;
        }

        .cool-heading:hover {
            transform: scale(1.05);
            text-shadow: 0 0 20px rgba(0, 204, 255, 0.8);
            box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
        } */

        /* Comparison Table Styles */
        .rotate-180 {
            transform: rotate(180deg);
        }

        .bg-blue-soft {
            background-color: rgba(13, 110, 253, 0.1);
        }

        .bg-red-soft {
            background-color: rgba(231, 46, 64, 0.1);
        }

        @media (max-width: 768px) {
            .rotate-180 {
                writing-mode: horizontal-tb;
                transform: none;
            }
        }
    





/* -----------------------------------------new css------------------------------------------------------------------- */