@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap');
  * {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Varela Round",serif;
}
html,body {
  background-color:#fff;
  display:flex;
  flex-direction:column;
}
header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px;
  background-color:#753BBD;
  color:white;
  position:sticky;
  top:0;
  z-index:1000;
}
.logo {
  font-size:1.5rem;
  padding-left:20px;
}
.logo img {
  width:140px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
/* Navbar */
nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background-color:#753BBD;
  padding:15px 40px;
  border-radius:30px;
  /* Default light shadow */
}
/* When navbar is active (scroll down or interact) */
nav.active {
  background-color:#9c27b0;
  /* Slightly lighter purple */
}
/* Navbar links */
.nav-links {
  list-style:none;
  display:flex;
  gap:2px;
}
.nav-links li a {
  color:white;
  text-decoration:none;
  padding:8px 16px;
  border-radius:41px;
}
/* Hover effect for links */
.nav-links li a:hover {
  background-color:#fff34fcf;
}
/* Sidebar styles */
.sidebar {
  height:100%;
  width:250px;
  position:fixed;
  top:0;
  left:0;
  background-color:#753BBD;
  overflow-x:hidden;
  transition:0.5s;
  padding-top:60px;
  z-index:1000;
}
.sidebar a {
  padding:8px 8px 8px 32px;
  text-decoration:none;
  font-size:25px;
  color:white;
  display:block;
  transition:0.3s;
}
/* Hover effect for sidebar links */
.sidebar a:hover {
  background-color:#530363;
  border-radius:20px;
}
.sidebar .closebtn {
  position:absolute;
  top:0;
  right:25px;
  font-size:36px;
  margin-left:50px;
}
#sidebarBtn {
  font-size:30px;
  cursor:pointer;
  color:white;
}
/* Initially hide sidebar button */
#sidebarBtn {
  display:none;
}
.content {
  margin-left:260px;
  /* Ensure content doesn't overlap with sidebar */
  padding:20px;
}
/* Media queries for different screen sizes */

/* Mobile screens (max-width:480px) */
@media screen and (max-width:480px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
  /* Show sidebar button on mobile */
}
.sidebar a {
  font-size:18px;
  line-height:40px;
}
.logo img {
  width:100px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
}/* Tablets (min-width:481px and max-width:768px) */
@media screen and (min-width:481px) and (max-width:768px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
  /* Show sidebar button on tablets */
}
.sidebar a {
  font-size:20px;
  line-height:40px;
}
}/* Laptops and Small Desktops (min-width:769px and max-width:1024px) */
@media screen and (min-width:769px) and (max-width:1024px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Large Screens and Desktops (min-width:1025px) */
@media screen and (min-width:1025px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Contact Footer */
.contact-footer {
  padding:20px;
  color:#753BBD;
  text-align:center;
  border-radius:5px;
  /* Smaller border-radius */
  position:relative;
  overflow:hidden;
}
.contact-footer h3 {
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
  letter-spacing:1px;
  position:relative;
}
.contact-footer h3::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-5px;
  transform:translateX(-50%);
  width:30px;
  /* Smaller underline */
  height:2px;
  background-color:#ffd700;
  /* Accent color for underline */
  border-radius:10px;
  animation:underlineAnim 1.5s infinite;
}
.contact-footer .social-links {
  display:flex;
  justify-content:center;
  gap:10px;
  /* Reduced gap between icons */
  margin-top:15px;
}
.contact-footer .social-links a {
  font-size:20px;
  /* Equalized and smaller icon size */
  color:#fff;
  background-color:#753BBD;
  /* Dark background for icons */
  width:40px;
  /* Smaller circle size */
  height:40px;
  /* Equal height and width for circle */
  display:flex;
  justify-content:center;
  text-decoration:none;
  align-items:center;
  border-radius:50%;
  /* Perfect circle */
  border:2px solid transparent;
  transition:all 0.3s ease;
}
.contact-footer .social-links a:hover {
  transform:translateY(-3px);
  /* Slight lift effect */
  background-color:#ffd700;
  /* Accent color for hover */
  color:#fff;
  box-shadow:0 5px 15px rgba(255,111,97,0.3);
  /* Soft glowing effect */
  border:2px solid #ffd700;
  /* Accent border on hover */
}
.contact-footer .social-links a:active {
  transform:translateY(1px);
  /* Slight downward effect on click */
  box-shadow:0 5px 15px rgba(255,111,97,0.5);
  /* Stronger glow on click */
}
/* Keyframe for the underline animation */
@keyframes underlineAnim {
  0% {
  width:30px;
}
50% {
  width:45px;
}
100% {
  width:30px;
}
}@media screen and (max-width:480px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
}
.sidebar a {
  font-size:18px;
  line-height:40px;
}
.logo img {
  width:100px;
  margin-top:10px;
  transition:transform 0.3s ease-in-out;
}
}/* Tablets (min-width:481px and max-width:768px) */
@media screen and (min-width:481px) and (max-width:768px) {
  .sidebar {
  width:0;
  position:fixed;
}
.content {
  margin-left:0;
}
nav {
  display:none;
}
#sidebarBtn {
  display:block;
}
.sidebar a {
  font-size:20px;
  line-height:40px;
}
}/* Laptops and Small Desktops (min-width:769px and max-width:1024px) */
@media screen and (min-width:769px) and (max-width:1024px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Large Screens and Desktops (min-width:1025px) */
@media screen and (min-width:1025px) {
  .sidebar {
  display:none;
}
.content {
  margin-left:260px;
}
nav {
  display:flex;
}
#sidebarBtn {
  display:none;
}
}/* Styling for the Mailyn heading */
.MAILYN h2 {
  text-align:center;
  margin:20px;
  color:#753BBD;
  font-size:2rem;
}
/* Main Product Display */
.product {
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:80px;
  background-color:#fff;
}
/* Styling for individual product items */
.product-item {
  flex:1;
  max-width:300px;
  text-align:center;
  position:relative;
  padding:10px;
  background-color:#f9f9f9;
  border-radius:10px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
}
/* Centering the slider images */
.slider-container {
  position:relative;
  width:100%;
  height:200px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  /* Center horizontally */
  align-items:center;
  /* Center vertically */
}
/* Styling for Product 1 Slides */
.slide1-main {
  padding-left:50px;
}
.slide1-extra {
  opacity:0.8;
}
/* Styling for Product 2 Slides */
.slide2-main {
  padding-left:50px;
}
.slide2-extra {
  opacity:0.8;
}
/* Styling for Product 3 Slides */
.slide3-main {
  padding-left:50px;
}
.slide3-extra {
  opacity:0.8;
}
/* Styling for the modal */
.modal {
  display:none;
  position:fixed;
  z-index:1;
  left:0;
  top:0;
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.7);
  align-items:center;
  justify-content:center;
  overflow:hidden;
  transition:all 0.3s ease;
}
/* Modal content container with smooth fade-in effect */
.modal-content-container {
  background-color:rgba(255,255,255,0.9);
  padding:20px;
  border-radius:10px;
  max-width:70%;
  max-height:90%;
  text-align:center;
  position:relative;
  transition:all 0.3s ease;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:20px;
}
/* Modal image styling */
.modal-content {
  width:100%;
  height:auto;
  object-fit:contain;
  max-width:100%;
  max-height:70vh;
  display:block;
  margin:0 auto;
  transition:filter 0.3s ease;
}
/* Close button with smooth hover effect */
.close-btn {
  position:absolute;
  top:10px;
  left:10px;
  color:#000;
  font-size:28px;
  font-weight:bold;
  cursor:pointer;
  transition:color 0.3s ease,transform 0.3s ease,text-shadow 0.3s ease;
}
/* Close button hover effect */
.close-btn:hover,.close-btn:focus {
  color:#5e19a6;
  transform:scale(1.1);
  text-shadow:0 0 15px rgba(94,25,166,0.5);
  /* Light glow effect */
}
/* Hover effect for links */
.contact-text ul a:hover {
  color:#5e19a6;
  transform:scale(1.1);
  text-shadow:0px 4px 10px rgba(94,25,166,0.3);
  /* Glow effect on links */
}
/* Icon in contact info */
.contact-info span .fas {
  font-size:2rem;
  padding-bottom:0.9rem;
  color:#000;
}
/* Smooth hover effect on contact-info spans */
.contact-info span:hover {
  transform:translateX(5px);
  color:#5e19a6;
  text-shadow:0px 4px 10px rgba(94,25,166,0.3);
  /* Light glow on icons */
}
/* Contact details with spacing */
.contact-info div {
  margin:0.8rem 0;
  padding:3rem;
  background-color:#fff;
  border-radius:10px;
  box-shadow:0 10px 20px rgba(0,0,0,0.1);
  transition:transform 0.3s ease,box-shadow 0.3s ease,filter 0.3s ease;
}
.contact-info div:hover {
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.2);
  filter:brightness(1.1);
  /* Lightens the contact blocks on hover */
}
/* Text alignment and padding for contact section */
.contact-info .text {
  padding-top:0.4rem;
  color:#555;
  font-size:1rem;
  transition:color 0.3s ease;
}
.contact-body {
  max-width:1320px;
  margin:0 auto;
  padding:0 1rem;
  background-color:#ffffff;
  border-radius:10px;
  box-shadow:0px 10px 20px rgba(0,0,0,0.05);
  transition:all 0.3s ease;
}
.copywrite {
  padding-top:15px;
  padding-bottom:15px;
  text-align:center;
  color:#753BBD;
}
.product-container {
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  gap:20px;
  padding:20px;
}
.product-card {
  width:300px;
  background-color:white;
  border-radius:8px;
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  overflow:hidden;
  text-align:center;
  padding:20px;
}
.product-card img {
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:8px;
  display:none;
}
.product-card img.active {
  display:block;
}
.product-description {
  margin-top:15px;
  font-size:14px;
  color:#555;
}
.show-more-btn {
  background-color:#753BBD;
  color:white;
  border:none;
  padding:10px 20px;
  border-radius:5px;
  cursor:pointer;
  margin-top:10px;
}
.show-more-btn:hover {
  background-color:#a35cfa;
}
.product-card:hover {
  box-shadow:0 8px 16px rgba(0,0,0,0.2);
}
/* Pop-up style */
.popup {
  display:none;
  position:fixed;
  top:60%;
  left:50%;
  transform:translate(-50%,-50%);
  background-color:rgba(89,2,170,0.701);
  padding:20px;
  border-radius:8px;
  text-align:center;
  width:100%;
  max-width:400px;
  z-index:5;
}
.popup img {
  max-width:80%;
  height:auto;
  border-radius:8px;
}
.popup-description {
  margin-top:15px;
  font-size:16px;
  color:white;
  line-height:1.5;
  text-align:center;
}
.popup-btn {
  background-color:#753BBD;
  color:white;
  padding:10px 20px;
  border:none;
  border-radius:5px;
  cursor:pointer;
  margin-top:20px;
}
.popup-btn:hover {
  background-color:#a35cfa;
}
/* Responsive styles */
@media screen and (max-width:768px) {
  .product-container {
  flex-direction:column;
  align-items:center;
}
.product-card {
  width:80%;
}
}.benefits-section {
  display:flex;
  justify-content:center;
  align-items:center;
  padding:50px 0;
}
.content-container {
  width:90%;
  max-width:1200px;
  background-color:#fff;
  border-radius:10px;
  padding:40px;
  text-align:center;
}
h2 {
  font-size:1.9rem;
  color:#753BBD;
  margin-bottom:40px;
}
.benefit-list {
  list-style-type:none;
  padding:0;

}
.benefit-list li {
  margin-bottom:20px;
  margin-top:20px;
  font-size:1.1rem;
  list-style-type:circle;
  text-align:left;
}
.benefit-list li strong {
  font-size:1.2rem;
  color:#753BBD;
  display:block;
  margin-bottom:10px;
}
.benefit-list ul {
  list-style-type:disc;
  margin-left:40px;
}
.benefit-list ul li {
  font-size:1rem;
  color:#555;
}
@media (max-width:768px) {
  h1 {
  font-size:2rem;
}
h2 {
  font-size:1.5rem;
}
.benefit-list li {
  font-size:1rem;
}
.benefit-list ul li {
  font-size:0.9rem;
}
}