/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Top Header */
.top-header {
    background-color: #FFD700;
    padding: 10px 0;
    font-size: 14px;
}

.top-header-content {
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
}

.company-logo {
    /* display: flex; */
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
}

.company-logo img {
    height: 40px;
    border-radius: 4px;
}

.phone-number {
    text-align: center;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.phone-number:hover {
    color: #666;
}

/* Main Header */
.main-header {
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
  background-color: #FFD700;
  color: #333;
}

.header-icons,
.mobile-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-icon,
.profile-icon {
  position: relative;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  background-color: #f8f9fa;
  transition: all 0.3s;
}

.cart-icon:hover,
.profile-icon:hover {
  background-color: #FFD700;
}

.cart-icon i,
.profile-icon i {
  font-size: 18px;
  color: #333;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: #333;
  cursor: pointer;
  padding: 10px;
}

/* === MOBILE ONLY === */
.mobile-icons {
  display: none;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px 0;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

/* === RESPONSIVE BREAKPOINT === */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .desktop-icons {
    display: none;
  }

  .mobile-icons {
    display: flex;
    order: 1;
  }

  .menu-toggle {
    display: block;
    order: 2;
  }

  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 215, 0, 0.8) 0%, rgba(255, 165, 0, 0.6) 100%); */
    background: linear-gradient(135deg, rgb(255 255 255 / 29%) 0%, rgb(255 255 255 / 22%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.6;
}

.cta-button {
    background:  #FFD700;
    color: #1c1c1c;
    border: none;
    padding: 10px 10px 10px 10px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 25px 25px 25px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background:  #171717;
    color: #FFD700;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background-color: #333;
    color: #FFD700;
    padding: 15px 0;
    text-align: center;
}

.disclaimer-banner p {
    font-size: 14px;
    margin: 0;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.product-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
    min-height: 60px;
    font-weight: 600;
    line-height: 1.4;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d8422;
    margin-bottom: 20px;
}

.add-to-cart {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
}

/* LifeLock Section */
.lifelock-section {
    padding: 80px 0;
    background-color: #fff;
}

.lifelock-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    font-weight: 700;
}

.lifelock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.lifelock-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.lifelock-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.sale-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lifelock-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.lifelock-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.price-range {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1d8422;
    margin-bottom: 20px;
}

.select-options {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.select-options:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    transform: translateY(-2px);
}

/* Content Section */
.content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.content-text h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.content-text h3 {
    font-size: 1.6rem;
    color: #333;
    margin: 40px 0 25px 0;
    font-weight: 600;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #555;
}

.content-text ul {
    list-style: none;
    padding: 0;
}

.content-text li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.content-text li:before {
    content: "✓";
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Legal Disclaimer Section */
.legal-disclaimer-section {
    padding: 60px 0;
    background-color: #FFD700;
}

.legal-disclaimer-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 700;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #333;
    font-size: 1rem;
}

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .lifelock-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        height: 500px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .products-section,
    .lifelock-section,
    .content-section {
        padding: 50px 0;
    }
    
    .products-section h2,
    .lifelock-section h2 {
        font-size: 2rem;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}



/* model window */

/* model window */

.bg-dark {
    background-color: #21252900!important;
  }
  
  .modal-box{ font-family: 'Varela Round', sans-serif; }
  .modal-box .show-modal{
      color: #222;
      background-color: #fff;
      font-size: 18px;
      font-weight: 600;
      text-transform: capitalize;
      padding: 10px 15px;
      margin: 80px auto 0;
      border: none;
      outline: none;
      box-shadow: 0 0 10px #555;
      display: block;
  }
  .modal-box .show-modal:hover,
  .modal-box .show-modal:focus{
      color: #222;
      background-color: #fff;
      border: none;
      outline: none;
      text-decoration: none;
  }
  .modal-backdrop.in{ opacity: 0.1; }
  .modal-box .modal{ top: 0px !important;background: #10218b4f; }
  .modal-box .modal-dialog{
      width: 450px;
      margin: 80px auto 10px;
  }
  .modal-box .modal-dialog .modal-content{
      border-radius: 25px;
      box-shadow: 0 0 25px -8px #555;
  }
  .modal-box .modal-dialog .modal-content .close{
      color: #e74c3c;
      background-color: #fff;
      font-size: 28px;
      text-shadow: none;
      line-height: 33px;
      height: 36px;
      width: 36px;
      opacity: 1;
      border-radius: 50%;
      box-shadow: 0 0 5px #555;
      position: absolute;
      left: auto;
      right: -5px;
      top: -5px;
      z-index: 1;
      transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .close span{
      margin: -1px 0 0 0;
      display: block;
  }
  .modal-box .modal-dialog .modal-content .close:hover{
      color: #fff;
      background-color: #e74c3c;
  }
  .modal-box .modal-dialog .modal-content .modal-body{ padding: 50px 20px !important; }
  .modal-box .modal-dialog .modal-content .modal-body .icon{
      color: #26de81;
      font-size: 36px;
      text-align: center;
      text-shadow: 4px 0 0 #fff, 0 -3px 0 #fff;
      line-height: 40px;
      height: 50px;
      width: 50px;
      margin: 0 auto 30px;
      position: relative;
      z-index: 1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .icon:after{
      content: '';
      height: 45px;
      width: 45px;
      border: 5px solid #c1c1c1;
      border-radius: 50%;
      position: absolute;
      left: -5px;
      top: 3px;
      z-index: -1;
  }
  .modal-box .modal-dialog .modal-content .modal-body .title{
      margin: 0 0 20px 0;
      font-size: 24px;
      color: #000000;
      text-transform: capitalize;
      font-weight: 600;
      text-align: center;
      padding-top: 5px;
      padding-bottom: 2px;
  }
  .modal-box .modal-dialog .modal-content .modal-body .description{
    color: #424242;
    text-align: center;
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 600;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe{
      color: #fff;
      background-color: #26de81;
      font-size: 18px;
      text-transform: uppercase;
      padding: 10px 20px;
      margin: 0 auto;
      border: 0 solid #222;
      border-radius: 50px;
      overflow: hidden;
      display: block;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
  }
  .modal-box .modal-dialog .modal-content .modal-body .subscribe:hover{ background-color: #222; }
  @media only screen and (max-width: 768px){
      .modal-dialog{ width: 400px !important; }
  }
  @media only screen and (max-width: 576px){
      .modal-dialog{ width: auto !important; }
  }
   /* chatbtn */
  
   .btn-get
   {
   font-weight: 700;
   width: 180px;
   background-color: #ffa500;
    padding: 16px;
   color: #000000;  
   font-size: 20px;
   border-radius: 50px;
   text-decoration: none;
   transition: all 0.3s ease;
   }
 
   
   .btn-get:hover
   {
     background-color: #000000;
    color: #ffffff;
   text-decoration: none;
   }

   a{text-decoration: none;color: #000;}
   a {
    text-decoration: none;
}

/* Footer msg*/
#disclaimer-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  text-align: center;
  padding: 10px;
  z-index: 1000;
	padding: 5% 10%
}