/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f5f5f5;
}

h1, h2, h3 {
  font-weight: bold;
  color: #333;
}

/* Header */
.header {
  background: linear-gradient(135deg, #2c3e50, #4ca1af); /* Subtle professional gradient */
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.logo img {
  width: 70px; /* Slightly larger and professional-sized logo */
  margin-right: 1rem;
}

/* Header Text Animation */
.header-text h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: white; /* Set the heading to white */
  opacity: 0; /* Start with invisible */
  animation: fadeInUp 1s ease-in-out forwards; /* Apply animation */
}

/* Keyframes for a Simple Fade-In with Upward Movement */
@keyframes fadeInUp {
  0% {
    opacity: 0; /* Fully transparent */
    transform: translateY(1px); /* Start slightly below */
  }
  100% {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* End at its natural position */
  }
  
}



.header-text p {
  font-size: 1rem;
  margin: 0.5rem 0 0;
  color: #d1e8eb; /* Softer text for the subheading */
}

/* Container */
.container {
  padding: 2rem;
}

/* Product Section */
.product-section {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.product-left {
  flex: 1;
}

.slideshow-container {
  position: relative;
  max-width: 400px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: none;
}

.slides img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer; /* Ensure images are clickable */
  transition: transform 0.3s ease; /* Smooth scaling when hovered */
}

.slides img:hover {
  transform: scale(1.05); /* Zoom-in effect on hover */
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 50%;
  z-index: 1;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Product Info Section */
.product-right {
  flex: 1;
}

.product-right ul {
  list-style: none;
  padding: 0;
}

.product-right ul li {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007BFF;
  margin: 1rem 0;
}

.buy-now {
  background-color: #28a745;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-top: 1rem;
}

.buy-now:hover {
  background-color: #218838;
}


/* Shorts Section */
.shorts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.shorts iframe {
  width: 300px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Fullscreen Modal for Image Zoom */
.fullscreen-modal {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.zoomed-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
}

.close {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on close button */
.close:hover {
  background-color: rgba(255, 0, 0, 0.5);
  transform: scale(1.1);
}


/***************close ***********************/
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 400px;
  max-width: 95%;
  position: relative; /* This ensures the close button is positioned relative to the modal */
}

/* Close Button Styling */
/* Close Button Styling */
.close-button {
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  background-color: #DFDFDF; /* Light red background */
  border: none;
  border-radius: 5px; /* Square corners with rounded edges */
  width: 35px; /* Set width */
  height: 35px; /* Set height */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transition */
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0;
  text-align: center;
}

/* Hover Effect */
.close-button:hover {
  background-color: #e60000; /* Darker red when hovered */
  transform: scale(1.1); /* Slight scale-up effect on hover */
  color: white;
}

/* Remove this rule */
.close-button::before {
  content: ""; /* Remove the extra '×' content */
}


h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: flex;
  align-items: center; /* Align the text and tick mark */
}

.success-icon {
  color: green;
  font-size: 1.2rem; /* Make the tick mark slightly smaller */
  margin-left: 10px; /* Add some space between label and tick mark */
  display: none; /* Hidden by default */
}

input,
textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit; /* Ensures it uses the same font as the parent container */
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007BFF;
}

button {
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover:not([disabled]) {
  background-color: #218838;
}

.error-message {
  color: red;
  font-size: 0.85rem;
  margin-bottom: 10px;
}


/***************close ***********************/

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 2rem;
  position: relative;
  margin-top: 2rem;
  max-width: 1200px; /* Limit the max width of the footer */
  margin-left: auto;
  margin-right: auto; /* Center the footer */
}

.call-button {
  background: #25D366; /* WhatsApp Green Color */
  color: white;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  border-radius: 50px; /* Rounded button */
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 1rem; /* Add some space from footer text */
}

.call-button:hover {
  background: #128C7E; /* Darker shade when hovered */
  transform: scale(1.05); /* Slight zoom effect */
}

.call-button:focus {
  outline: none; /* Remove focus outline */
}

/* Section Title Styling */
/* Section Title Styling */
.section-title {
  font-family: 'Roboto', sans-serif;  /* Sleek modern font */
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* Make it look more professional */
  position: relative;
  padding-bottom: 10px;
}

form button[type="submit"] {
    display: block;
    margin: 10px auto; /* Centers button horizontally */
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background-color: #007BFF; /* A sleek underline to match brand colors */
  border-radius: 5px;
  opacity: 0.8;
  transition: width 0.3s ease; /* Subtle animation */
}

.section-title:hover::after {
  width: 100px; /* Hover effect to expand underline */
}

/* Video Section */
.product-videos {
  margin-top: 2rem;
  padding: 2rem;
  background: #f7f7f7;  /* Light background to make it stand out */
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.videos {
  display: flex;
  justify-content: space-between;
  gap: 2rem;  /* Space between the videos */
}

.product-videos iframe {
  width: 48%;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}	

.product-videos iframe:hover {
  transform: scale(1.05); /* Slight zoom effect for engagement */
  transition: transform 0.3s ease;
}

/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {
  .videos {
    flex-direction: column;  /* Stack videos vertically on smaller screens */
    align-items: center;
  }

  .product-videos iframe {
    width: 80%;  /* Adjust iframe width on mobile */
    margin-bottom: 1rem;  /* Space between stacked videos */
  }
}
/**************************************popup***********************************/
/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 400px;
  max-width: 90%;
}

.close-button {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: red;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  display: flex;
  align-items: center; /* Align the text and tick mark */
}

.success-icon {
  color: green;
  font-size: 1.2rem; /* Make the tick mark slightly smaller */
  margin-left: 10px; /* Add some space between label and tick mark */
  display: none; /* Hidden by default */
}

input,
textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #007BFF;
}

button {
  padding: 10px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button[disabled] {
  background-color: #ccc;
  cursor: not-allowed;
}

button:hover:not([disabled]) {
  background-color: #218838;
}

.error-message {
  color: red;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

/**************************************popup***********************************/
/* Ensure responsiveness for smaller screens */
@media (max-width: 768px) {

  /* General adjustments for mobile layout */
  body {
    font-size: 14px; /* Adjust font size for smaller screens */
    padding: 0;
    margin: 0;
  }

  /* Modal adjustments for smaller screens */
  .modal-content {
    width: 100%;  /* Take up most of the screen */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* Close button inside the modal */
  .close-button {
    width: 35px;
    height: 35px;
    background-color: #ff4d4d;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: background-color 0.3s, transform 0.3s;
  }

  /* Hover effect on close button */
  .close-button:hover {
    background-color: #e60000;
    transform: scale(1.1);
  }

  /* Form layout */
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
  }

  input, textarea {
    width: 93%;
    padding: 12px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
  }

  input:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
  }

  .error-message {
    font-size: 0.85rem;
    color: red;
  }

  /* Adjust button sizes */
  .buy-now {
    background-color: #28a745;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%; /* Make it full-width on mobile */
    /*margin: 0 auto; /* Center the button */
	margin: 1rem auto 0 auto; /* Add top margin and center the button */
  }

  .buy-now:hover {
    background-color: #218838;
  }

  /* Product Section */
  .product-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 15px;
  }

  .product-left, .product-right {
    width: 100%;
  }

  .product-left .slideshow-container {
    max-width: 100%;
    margin: 0;
  }

  .slides img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Product Info Section */
  .product-right {
    padding: 0rem;
  }


  .product-right ul {
    padding-left: 0.5rem;
    list-style-type: none;
    font-size: 1rem;
  }

  .product-right ul li {
    margin-left: 0; /* Prevents unintended indentation */
    padding-left: 0; /* Ensures alignment */
  }

  .price {
    font-size: 1.5rem;
    color: #007BFF;
    font-weight: bold;
    text-align: center; /* Center the price */
    margin: 1rem 0;
  }

  /* Videos section */
  .product-videos iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
  }

  .product-videos {
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 8px;
  }

  .videos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .product-videos iframe:hover {
    transform: scale(1.05);
  }

  /* Footer adjustments */
  .footer {
    padding: 1.5rem;
    text-align: center;
    background-color: #333;
    color: white;
    margin-top: 2rem;
  }

  .call-button {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    width: 80%;
    margin-top: 1rem;
  }

  .call-button:hover {
    background-color: #128C7E;
    transform: scale(1.05);
  }

  .call-button:focus {
    outline: none;
  }

  /* Modal Zoomed Image */
  .zoomed-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
  }
}


/*************************************************************************************/
/* Add this class to apply the blur effect */
.blur-background {
  filter: blur(5px); /* Adjust the blur intensity */
  transition: filter 0.3s ease; /* Smooth transition for the blur effect */
}
/************************excluding payment gateway charges *******************************************************/
.note {
  font-size: 0.7rem; /* Very small font size */
  color: #666; /* Subtle gray color */
  display: block; /* Ensure it appears on a new line */
  margin-top: 5px; /* Add slight spacing from the price */
}


.gateway-note {
  font-size: 0.6rem;
  display: block;
  margin: 0;
  line-height: 1; /* Minimal line height */
/*  color: #007BFF; /* Match the price color */
}
@media (max-width: 768px) {
  .note {
    text-align: center;
  }

  .gateway-note {
    text-align: center;
  }
  
}


/************************excluding payment gateway charges *******************************************************/





/************************policies*******************************************************/
.policies-link {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Use the same color as surrounding text */
  cursor: pointer; /* Make it look clickable */
}

.policies-link:focus,
.policies-link:hover,
.policies-link:active {
  color: inherit; /* Keep the color the same on hover, focus, and active states */
  text-decoration: none; /* Remove underline on hover/focus/active */
}
/************************policies*******************************************************/



/*****************************top 3 buttons ********************************************/
/* Button styles */
.button-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    width: 40%;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.custom-button {
    background: linear-gradient(135deg, #2c3e50, #4ca1af);
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    width: 150px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;

}

.custom-button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.custom-button:active {
    background-color: #003d80;
    transform: scale(0.98);
}

/* Xpopup Modal Styles */
.Xpopup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Xpopup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 400px;
    max-width: 100%;
    text-align: center;
}

.message {
    font-size: 14px;
    margin-top: 10px;
    font-weight: bold;
}


.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1); /* Subtle background for the button */
    border: none;
    color: #555; /* Soft color */
    padding: 10px; /* Equal padding for square shape */
    width: 20px; /* Ensure width is equal to height */
    height: 20px; /* Square shape */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth background change */
}


.close-btn:hover {
    background-color: #d9534f; /* Red background on hover */
    color: white; /* Change text color to white for contrast */
}

.close-btn:focus {
    outline: none;
}


/* Blurred Background */
.Xpopup-container.active {  /* Changed from popup-container.active */
    display: flex;
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .Xpopup-content {  /* Changed from popup-content */
        width: 80%;
    }
}

@media (max-width: 768px) {
    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .custom-button {
        width: 40%;
        margin-bottom: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
        padding: 14px 0;
        margin-left: 10px; /* Increase horizontal space */
        margin-right: 10px; /* Increase horizontal space */
    }

    .custom-button:last-child {
        margin-bottom: 0;
    }
}



/* Apply blur to the background when the popup is active */
body.Xpopup-active {
    filter: blur(5px);  /* Apply blur effect to the body */
    pointer-events: none;  /* Disable interactions with blurred background */
}

/* Apply blur to specific sections like header and footer */
header.blur, footer.blur {
    filter: blur(5px);  /* Blur effect for header/footer */
}

/* Prevent the popup from being blurred */
.Xpopup-container.no-blur {
    filter: none !important; /* Remove blur from the popup container */
    pointer-events: auto !important; /* Allow interaction with the popup */
}

/* Popup modal styles */
.Xpopup-container.active {
    display: flex;
    backdrop-filter: blur(5px); /* Optional: background blur effect for modal area */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darken the background */
    z-index: 1000;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.Xpopup-content {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    width: 400px;
    max-width: 100%;
    text-align: center;
}

/* Optional: Responsive styling for small screens */
@media (max-width: 768px) {
    .Xpopup-content {
        width: 80%;
    }
}

/*****************************top 3 buttons ********************************************/
