*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow-x:hidden;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    display: none;
}
.sppt-navbar {
  display: none;
}
.mobile-topbar-new{
  display: none;
}
/* Hide on desktop */
.mobile-topbar {
  display: none;
}
.mobile-navbar {
      display: none;
    }
.mininav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #4e47e5;
    /* background-color: aquamarine; */
    padding: 10px;
}
.submininav{
    height: 100%;
    width: 100%;
    /* background-color: blueviolet; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.onesubmininav{
    height: 100%;
    width: 20%;
    /* background-color: rgb(104, 226, 43); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.onesubmininav a {
    font-size: 16px;
    color: white;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.onesubmininav a:hover {
    background-color: #00284e;
    color: white; /* optional: bright highlight text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 40, 78, 0.2);
}
.onesubmininav a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.onesubmininav a:hover::after {
    left: 125%;
}

.nextonesubmininav{
    height: 100%;
    width: 40%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.nextonesubmininav h2{
    font-size: 26px;
    color: #00284e;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
}
.twosubmininav{
    height: 100%;
    width: 18%;
    /* background-color: rgb(226, 104, 43); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.twosubmininav i{
    color: #00284e;
    font-size: 34px;
    margin-right: 20px;
}
.twosubmininav a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.twosubmininav a:hover {
    transform: scale(1.2) rotate(5deg);
}
.twosubmininav i:hover {
    color: #031a30d0; /* change to any brand highlight color or keep it unique */
}
.navbar{
    height: 100px;
    width: 100%;
    position: fixed;
  top: 50px; /* Adjust based on .mininav height */
  left: 0;
  z-index: 998;
    background-color:white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.subnavbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.packs{
    height: 100%;
    width: 45%;
    /* background-color: rosybrown; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.packs a {
    font-size: 17px;
    color:rgb(29, 28, 28);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    /* background-color: #4e47e5; */
    padding: 10px 10px;
    border-radius: 10px;      
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
    /* position: relative; */
    overflow: hidden;
}

.packs a:hover {
    transform: translateY(-3px) scale(1.05);
    border-bottom: 3px solid #4e47e5;
    /* box-shadow: 0 8px 20px rgba(0, 40, 78, 0.3); */
    color: black; /* optional: yellow hover text */
}

.logo{
    height: 100%;
    width: 20%;
    /* background-color: royalblue; */
    overflow: hidden;
}
.logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.carti{
    height: 100%;
    width: 20%;
    overflow: hidden;
    /* background-color: #5a7c9b; */
    display: flex;
      align-items: center;
      justify-content: space-evenly;
}
.cart-container {
      display: flex;
      align-items: center;
      font-size: 20px;
      color: #4e47e5;
    }

    .cart-icon {
      position: relative;
      margin-right: 8px;
    }

    .cart-icon i {
      font-size: 28px;
    }

    .badge {
      position: absolute;
      bottom: -10px;
      left: -10px;
      background-color: black;
      color: white;
      font-size: 14px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
    }

    .cart-amount {
      font-weight: bold;
    }
    .callbtn a {
    font-size: 16px;
    color: #4e47e5;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #4e47e5;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.callbtn a:hover {
    background-color: #4e47e5;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 40, 78, 0.3);
}

.callbtn a i {
    transition: transform 0.3s ease;
}

.callbtn a:hover i {
    transform: rotate(20deg) scale(1.2);
}

.bener{
  margin-top: 150px;
  height: 642px;
  width: 100%;
  background-color: aquamarine;
  overflow: hidden;
}
.bener img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* border-radius: 0px 0px 30px 30px; */
}

.beneer{
  margin-top: 40px;
  height: 642px;
  width: 100%;
  background-color: aquamarine;
  overflow: hidden;
}
.beneer img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* border-radius: 0px 0px 30px 30px; */
}
.hero{
    margin-top:115px;
    height: 615px;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;

}
.subhero{
    height: 100%;
    width: 100%;
    /* background-color: #e8ef0b; */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 40, 78, 0.2);
    border-radius: 0px 0px 30px 30px;
}
   /* 🔔 News Scroll Bar */
    .news-ticker {
      position: fixed;
      top:0px;
      height: 50px;
      width: 100%;
      background-color: #4e47e5;
      color: white;
      font-weight: 400;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 5px;
      z-index: 9999999;
      /* border-top: 2px solid #ffc107; */
      /* border-bottom: 2px solid #ffc107; */
    }

    .scrolling-text {
      white-space: nowrap;
      animation: scroll-left 50s linear infinite;
      font-size: 18px;
      padding-left: 0%;
      align-items: center;
    }

    @keyframes scroll-left {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* 🎁 Container Styling */
    .info-box {
        height: 90%;
        width: 100%;
      /* max-width: 900px; */
      margin: 0px auto;
      /* background-color: rgb(250, 255, 90); Bright Yellow */
      padding: 30px;
      color: #00284e; /* Dark Blue */
      border-radius: 12px;
      /* box-shadow: 0 8px 20px rgba(0, 40, 78, 0.2); */
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: space-evenly;
    }

    .info-box h2 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .info-box h3 {
      font-size: 20px;
      margin: 10px 0;
    }

    .info-box p {
      font-size: 16px;
      margin: 12px 0;
    }

    .highlight {
      font-weight: bold;
      color: #4e47e5; /* Red for discount etc. */
    }

    .icon {
      margin-right: 6px;
      color: #00284e;
    }

    .info-box img {
      max-width: 220px;
      margin-bottom: 15px;
    }

    .info-box-bottom {
      margin-top: 20px;
      font-weight: bold;
    }
    .ord{
        height: auto;
        width: 100%;
        /* background-color: saddlebrown; */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .subord{
        height: 100%;
        width: 80%;
        /* background-color: aqua; */
    }
    .accordion-section {
  border: 2px solid #4e47e5;
  /* border-radius: 12px; */
  margin: 50px auto;
  width: 100%;
  /* max-width: 1100px; */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #4e47e5;
  cursor: pointer;
  border-bottom: 1px solid #656161;
}

.accordion-header .arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open {
  max-height: 1000px; /* you can increase for longer content */
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fdfdfd;
}

.col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.name {
  flex: 2;
}

.content, .price, .qty, .image, .video {
  flex: 1;
  align-items: center;
}

.product-name {
  font-weight: bold;
  color: green;
  font-size: 16px;
}

.tamil-name {
  color: magenta;
  font-size: 14px;
}

.content {
  color: brown;
  font-weight: bold;
}

.price {
  color: green;
  font-weight: bold;
}

.total-price {
  color: magenta;
  font-weight: bold;
  font-size: 14px;
  margin-top: 5px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls input {
  width: 45px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.qty-controls button {
  padding: 6px 10px;
  font-size: 18px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  cursor: pointer;
  border-radius: 5px;
}

.image-popup {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.youtube-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.youtube-icon:hover {
  transform: scale(1.15);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: right;
}

.modal-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  margin: auto;
}

.close-modal {
  font-size: 24px;
  font-weight: bold;
  color: red;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}
 #floatingCartBtn {
    position: fixed;
    right: 0;
    top: 40%;
    background: #4e47e5;
    padding: 15px 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    cursor: pointer;
    color: white;
  }
  #floatingCartBtn i {
    font-size: 24px;
  }
  .cart-count {
    position: absolute;
    top: -10px;
    left: -10px;
    background: black;
    color: white;
    width: 24px;
    height: 24px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

 #cartDrawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 100000000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

#cartDrawer.open {
  right: 0;
}

/* Header */
.cart-header {
  padding: 18px 20px;
  background: #d84d07;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #d84d07;
}

.cart-header button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* Cart Items */
.cart-items {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  margin-bottom: 14px;
}

.cart-item div:first-child {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.cart-item small {
  display: block;
  color: #444;
  font-size: 13px;
  margin-top: 4px;
}

.cart-item input[type="number"] {
  width: 50px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.cart-item button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #cd0d30;
  cursor: pointer;
  margin-top: 6px;
}

/* Summary */
.cart-summary {
  padding: 16px 20px;
  background-color: #f3f3f3;
  border-top: 1px solid #ccc;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Footer */
.checkout-btn {
  /* padding: 16px 20px; */
  border-top: 1px solid #ccc;
  background: white;
  /* margin-left: 50%; */
  /* margin-right: 50%; */
}

.checkout-btn{
  width: 100%;
  margin: 2px;
  background: #d84d07;
  color: white;
  padding: 14px 0;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn button:hover {
  background: #612304;
}
.cart-item button.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #b60707;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s ease;
}

.cart-item button.delete-btn:hover {
  transform: scale(1.1);
  color: #c40613;
}

  #overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* semi-transparent */
  z-index: 999; /* just below cart drawer */
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.popup-container input,
.popup-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s;
}

.popup-container input:focus,
.popup-container textarea:focus {
  border-color: #28a745;
  outline: none;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.popup-container button {
  flex: 1;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.confirm-btn {
  background: #28a745;
  color: white;
}

.confirm-btn:hover {
  background: #218838;
}

.cancel-btn {
  background: #dc3545;
  color: white;
}

.cancel-btn:hover {
  background: #c82333;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}
.input-group {
  position: relative;
  margin-bottom: 1rem;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.input-group input,
.input-group textarea {
  padding-left: 35px;
}
/* ✅ Loader Overlay */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* ✅ Spinning Loader */
.loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff6600;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* ✅ Keyframes for spin */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ✅ Success Popup */
.success-popup {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 10000;
  transition: top 0.5s ease-in-out;
}

/* ✅ Show popup */
.success-popup.show {
  top: 20%;
}

/* ✅ Button style */
.success-popup button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6600;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.success-popup button:hover {
  background: #cc5200;
}
/* Main Section */
.contact-section-pro {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}
.contact-container-pro {
  max-width: 850px;
  margin: auto;
}
.contact-container-pro h2 {
  font-size: 34px;
  color: #222;
  margin-bottom: 10px;
}
.contact-container-pro p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  position: relative;
}
.full {
  width: 100%;
}
input, textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  border-color: #00284e;
  box-shadow: 0 0 6px rgba(108, 99, 255, 0.3);
}

/* Floating Label with Icons */
label {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s ease;
}
input:focus + label,
input:valid + label,
textarea:focus + label,
textarea:valid + label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  background: #f4f7fa;
  padding: 0 5px;
  color: #00284e;
}
label i {
  margin-right: 6px;
}

/* Button Style */
.submit-btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #4e47e5;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3);
}
.submit-btn-pro:hover {
  background-color: rgb(10, 3, 139);
  transform: translateY(-2px);
}

/* Base Structure */
.container {
  width: 100%;
  margin: auto;

}
.row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo{
    height: auto;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.subphoto{
    height: 100%;
    width: 100%;
    /* background-color: coral; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;

}
.onepic{
    height: 250px;
    width: 100%;
    /* background-color: seagreen; */
    margin: auto;
    overflow: hidden;
}
.onepic img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.onepic:hover img{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.pricelis{
    height: 600px;
    width: 100%;
    /* background-color: rebeccapurple; */
    padding: 20px;
}
.subprice{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.p1{
    height: 80%;
    width: 40%;
    /* background-color:gold; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p1 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.p2{
    height: 80%;
    width: 50%;
    /* background-color: aqua; */
    display: flex;
    align-items:last baseline;
    flex-direction: column;
    justify-content:center;
}
.p2 h1{
  color: #4e47e5;
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
}
.p2 p{
    margin-top:15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    text-transform: capitalize;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
    color: #555555;
}
.p2 a{
    border-radius: 40px;
    margin-top: 20px;
    text-decoration: none;
    background-color: #4e47e5;
    height: 40px;
    width: 170px;
    padding-left:40px;
    align-items:center;
    align-content: center;
    /* justify-tracks: center; */
    /* justify-items: center; */
    /* align-self: center; */
    font-size: 16px;
    /* margin-right: 10px; */

    color:white;
    /* margin-left: 20px; */
    font-family: "Poppins", sans-serif;
   }
   .p2 a:hover{
    background-color:#1a1491;
   }
   .p2 i{
    margin-left: 8px;
   }


.footer {
  font-family: 'Poppins', sans-serif;
  background-color: #0e0d0d;
  padding: 70px 0;
}
.footer-col {
  width: 30%;
  padding: 0 35px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4e47e5;
  height: 2px;
  width: 50px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 15px;
  color: #bbbbbb;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 10%;
  color: #ffffff;
  transition: 0.5s ease;
}
.footer-col .social-links a:hover {
  color: white;
  background-color: #4e47e5;
}

/* Logo & About */
.footer-about img.footer-logo {
  width: 120px;
  border-radius: 100px;
  margin-bottom: 15px;
}
.footer-about p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.6;
}

/* Copyright */
.copyright {
  font-family: 'Poppins', sans-serif;
  padding: 0.8em 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.copyright span a {
  color: goldenrod;
  text-decoration: none;
}
/* WhatsApp Floating Button - Stylish */
.whatsapp-float {
  position: fixed;
  top: 310px;
  left: 20px;
  z-index: 999;
  display: inline-block;
  width: 60px;
  height: 60px;
  animation: bounce-in 1s ease-out;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
}

/* Tooltip */
.whatsapp-float .tooltip {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  background-color: #25d366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Entry Animation */
@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
 /* ===== Desktop View ===== */
    @media(min-width:768px){
      .sppt-burger-btn{ display:none; }
      .sppt-links{
        position: static;
        width:auto;
        height:auto;
        flex-direction:row;
        align-items:center;
        gap:18px;
        background:transparent;
        padding:0;
        box-shadow:none;
        transform:none;
        right: auto;
      }
      .sppt-links a { transform:none; opacity:1; padding:0; color:#fff; background:transparent; }
    }

@media screen and (max-width:600px) {
   
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    height: 100vh;
    width: 100vw;
    background-color: white;
    overflow-x:hidden;
    font-family: 'Poppins', sans-serif;
    /* font-family: 'Poppins', sans-serif; */
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    display: none;
}
    /* ===== Navbar wrapper ===== */
    .sppt-navbar {
      position: fixed;
      margin-top: 50px;
      top: 0;
      left: 0;
      right: 0;
      height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      background: white;
      color: #fff;
      z-index: 9999;
      box-shadow: 0 6px 18px rgba(2,6,23,0.45);
    }

    /* ===== Logo area ===== */
    .sppt-brand {
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration: none;
    }
    .sppt-brand img {
      width:74px; 
      height:74px; 
      border-radius:8px; 
      display:block;
      object-fit:cover; 
      /* box-shadow:0 3px 8px rgba(0,0,0,0.35); */
    }
    .sppt-brand .sppt-title {
      font-weight:700;
      letter-spacing:0.6px;
      text-transform:capitalize;
      color:black;
      font-size:1rem;
    }

    /* ===== Burger button ===== */
    .sppt-burger-btn {
      display:flex;
      align-items:center;
      justify-content:center;
      width:48px;
      height:40px;
      background:transparent;
      border:0;
      cursor:pointer;
      padding:6px;
      border-radius:8px;
      transition:background .18s ease;
    }
    .sppt-burger-btn:focus { outline:2px solid rgba(250,204,21,0.18); }

    .sppt-burger-lines {
      position:relative;
      width:28px;
      height:18px;
    }
    .sppt-burger-lines span {
      position:absolute;
      left:0;
      right:0;
      height:3px;
      border-radius:4px;
      background:black;
      display:block;
      transform-origin:center;
      transition: transform .35s cubic-bezier(.2,.9,.3,1), opacity .25s ease, top .25s ease;
    }
    .sppt-burger-lines span:nth-child(1){ top:0; }
    .sppt-burger-lines span:nth-child(2){ top:7.5px; }
    .sppt-burger-lines span:nth-child(3){ top:15px; }

    /* Transform into X when toggled */
    .sppt-burger-btn.sppt-toggle .sppt-burger-lines span:nth-child(1){
      transform: rotate(45deg);
      top:7.5px;
    }
    .sppt-burger-btn.sppt-toggle .sppt-burger-lines span:nth-child(2){
      opacity:0;
      transform: translateX(-10px);
    }
    .sppt-burger-btn.sppt-toggle .sppt-burger-lines span:nth-child(3){
      transform: rotate(-45deg);
      top:7.5px;
    }

    /* ===== Sliding nav panel ===== */
    .sppt-links {
      position: fixed;
      top: 50px;
      right: 100%;
      width: 85%;
      height: 100%;
      /* height: calc(100vh - 64px); */
      background: linear-gradient(180deg,#111827,#0b1220);
      padding: 20px;
      padding-left: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: right .38s cubic-bezier(.2,.9,.3,1);
      z-index: 9998;
      /* box-shadow: -6px 24px 48px rgba(2,6,23,0.55); */
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }

    .sppt-links.sppt-active { 
      right: 80px;
     }

    .sppt-links a {
      color: #e6eef8;
      text-decoration:none;
      padding: 12px 10px;
      border-radius:8px;
      font-weight:600;
      letter-spacing:0.2px;
      transform: translateX(20px);
      opacity: 0;
      transition: transform .36s ease, opacity .36s ease, background .18s ease;
      display:block;
    }
    .sppt-links a:hover {
      background: rgba(250,204,21,0.06);
      color: #facc15;
      transform: translateX(6px);
    }

   

.mininav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: #4e47e5;
    /* background-color: aquamarine; */
    padding: 10px;
}
.submininav{
    height: 100%;
    width: 100%;
    /* background-color: blueviolet; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.onesubmininav{
    height: 100%;
    width: 20%;
    /* background-color: rgb(104, 226, 43); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.onesubmininav a {
    font-size: 16px;
    color: white;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.onesubmininav a:hover {
    background-color: #00284e;
    color: white; /* optional: bright highlight text on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 40, 78, 0.2);
}
.onesubmininav a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.onesubmininav a:hover::after {
    left: 125%;
}

.nextonesubmininav{
    height: 100%;
    width: 40%;
    /* background-color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.nextonesubmininav h2{
    font-size: 26px;
    color: #00284e;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
}
.twosubmininav{
    height: 100%;
    width: 18%;
    /* background-color: rgb(226, 104, 43); */
    display: flex;
    align-items: center;
    justify-content: center;
}
.twosubmininav i{
    color: #00284e;
    font-size: 34px;
    margin-right: 20px;
}
.twosubmininav a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.twosubmininav a:hover {
    transform: scale(1.2) rotate(5deg);
}
.twosubmininav i:hover {
    color: #031a30d0; /* change to any brand highlight color or keep it unique */
}
.navbar{
  display: none;
    height: 100px;
    width: 100%;
    position: fixed;
  top: 50px; /* Adjust based on .mininav height */
  left: 0;
  z-index: 998;
    background-color:white;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.subnavbar{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.packs{
    height: 100%;
    width: 45%;
    /* background-color: rosybrown; */
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: space-around;
}
.packs a {
    font-size: 17px;
    color:rgb(29, 28, 28);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    /* background-color: #4e47e5; */
    padding: 10px 10px;
    border-radius: 10px;      
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); */
    /* position: relative; */
    overflow: hidden;
}

.packs a:hover {
    transform: translateY(-3px) scale(1.05);
    border-bottom: 3px solid #4e47e5;
    /* box-shadow: 0 8px 20px rgba(0, 40, 78, 0.3); */
    color: black; /* optional: yellow hover text */
}

.logo{
    height: 100%;
    width: 20%;
    /* background-color: royalblue; */
    overflow: hidden;
}
.logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.carti{
    height: 100%;
    width: 100%;
    display: none;
    overflow: hidden;
    /* background-color: #5a7c9b; */
    /* display: flex; */
      align-items: center;
      justify-content: space-evenly;
}
.cart-container {
      display: flex;
      align-items: center;
      font-size: 20px;
      color: #4e47e5;
    }

    .cart-icon {
      position: relative;
      margin-right: 8px;
    }

    .cart-icon i {
      font-size: 28px;
    }

    .badge {
      position: absolute;
      bottom: -10px;
      left: -10px;
      background-color: black;
      color: white;
      font-size: 14px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
    }

    .cart-amount {
      font-weight: bold;
    }
    .callbtn a {
    font-size: 16px;
    color: #4e47e5;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #4e47e5;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.callbtn a:hover {
    background-color: #4e47e5;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 40, 78, 0.3);
}

.callbtn a i {
    transition: transform 0.3s ease;
}

.callbtn a:hover i {
    transform: rotate(20deg) scale(1.2);
}

.bener{
  margin-top: 110px;
  height: 450px;
  width: 100%;
  background-color: aquamarine;
  overflow: hidden;
}
.bener img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* border-radius: 0px 0px 30px 30px; */
}

.beneer{
  margin-top: 40px;
  height: 180px;
  width: 100%;
  background-color: aquamarine;
  overflow: hidden;
}
.beneer img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* border-radius: 0px 0px 30px 30px; */
}
.hero{
    margin-top:115px;
    height: 615px;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;

}
.subhero{
    height: 100%;
    width: 100%;
    /* background-color: #e8ef0b; */
    /* display: flex; */
    /* flex-direction: column; */
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 40, 78, 0.2);
    border-radius: 0px 0px 30px 30px;
}
   /* 🔔 News Scroll Bar */
    .news-ticker {
      position: fixed;
      top:0px;
      height: 50px;
      width: 100%;
      background-color: #4e47e5;
      color: white;
      font-weight: 400;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 5px;
      z-index: 9999999;
      /* border-top: 2px solid #ffc107; */
      /* border-bottom: 2px solid #ffc107; */
    }

    .scrolling-text {
      white-space: nowrap;
      animation: scroll-left 50s linear infinite;
      font-size: 18px;
      padding-left: 0%;
      align-items: center;
    }

    @keyframes scroll-left {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    /* 🎁 Container Styling */
    .info-box {
        height: 90%;
        width: 100%;
      /* max-width: 900px; */
      margin: 0px auto;
      /* background-color: rgb(250, 255, 90); Bright Yellow */
      padding: 30px;
      color: #00284e; /* Dark Blue */
      border-radius: 12px;
      /* box-shadow: 0 8px 20px rgba(0, 40, 78, 0.2); */
      text-align: center;
      position: relative;
      display: flex;
      align-items: center;
      flex-direction: column;
      justify-content: space-evenly;
    }

    .info-box h2 {
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 800;
    }

    .info-box h3 {
      font-size: 20px;
      margin: 10px 0;
    }

    .info-box p {
      font-size: 16px;
      margin: 12px 0;
    }

    .highlight {
      font-weight: bold;
      color: #4e47e5; /* Red for discount etc. */
    }

    .icon {
      margin-right: 6px;
      color: #00284e;
    }

    .info-box img {
      max-width: 220px;
      margin-bottom: 15px;
    }

    .info-box-bottom {
      margin-top: 20px;
      font-weight: bold;
    }
    .ord{
        height: auto;
        width: 100%;
        /* background-color: saddlebrown; */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .subord{
        height: 100%;
        width: 100%;
        /* background-color: aqua; */
    }
    .accordion-section {
  border: 2px solid #4e47e5;
  /* border-radius: 12px; */
  margin: 20px auto;
  width: 100%;
  /* max-width: 1100px; */
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #4e47e5;
  cursor: pointer;
  border-bottom: 1px solid #656161;
}

.accordion-header .arrow-icon {
  transition: transform 0.3s ease;
}

.accordion-header.active .arrow-icon {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.open {
  max-height: 1000px; /* you can increase for longer content */
}

.product-row {
  flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
}

.col {
   width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.name {
  flex: 2;
}

.content, .price, .qty, .image, .video {
  flex: 1;
  align-items: center;
}

.product-name {
  font-weight: bold;
  color: green;
  font-size: 16px;
}

.tamil-name {
  color: magenta;
  font-size: 14px;
}

.content {
  color: brown;
  font-weight: bold;
}

.price {
  color: green;
  font-weight: bold;
}

.total-price {
  color: magenta;
  font-weight: bold;
  font-size: 14px;
  margin-top: 5px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-controls input {
  width: 45px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

.qty-controls button {
  padding: 6px 10px;
  font-size: 18px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  cursor: pointer;
  border-radius: 5px;
}

.image-popup {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.youtube-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.youtube-icon:hover {
  transform: scale(1.15);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  width: 90%;
  background: white;
  padding: 15px;
  border-radius: 10px;
  text-align: right;
}

.modal-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  margin: auto;
}

.close-modal {
  font-size: 24px;
  font-weight: bold;
  color: red;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
}
 #floatingCartBtn {
    position: fixed;
    right: 0;
    top: 40%;
    background: #4e47e5;
    padding: 15px 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
    cursor: pointer;
    color: white;
  }
  #floatingCartBtn i {
    font-size: 24px;
  }
  .cart-count {
    position: absolute;
    top: -10px;
    left: -10px;
    background: black;
    color: white;
    width: 24px;
    height: 24px;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }

 #cartDrawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  z-index: 100000000;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', sans-serif;
}

#cartDrawer.open {
  right: 0;
}

/* Header */
.cart-header {
  padding: 18px 20px;
  background: #d84d07;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #d84d07;
}

.cart-header button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* Cart Items */
.cart-items {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
  margin-bottom: 14px;
}

.cart-item div:first-child {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
}

.cart-item small {
  display: block;
  color: #444;
  font-size: 13px;
  margin-top: 4px;
}

.cart-item input[type="number"] {
  width: 50px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.cart-item button {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #cd0d30;
  cursor: pointer;
  margin-top: 6px;
}

/* Summary */
.cart-summary {
  padding: 16px 20px;
  background-color: #f3f3f3;
  border-top: 1px solid #ccc;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
}
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
}

/* Footer */
.checkout-btn {
  /* padding: 16px 20px; */
  border-top: 1px solid #ccc;
  background: white;
  /* margin-left: 50%; */
  /* margin-right: 50%; */
}

.checkout-btn{
  width: 100%;
  margin: 2px;
  background: #d84d07;
  color: white;
  padding: 14px 0;
  font-weight: bold;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.checkout-btn button:hover {
  background: #612304;
}
.cart-item button.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #b60707;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s ease;
}

.cart-item button.delete-btn:hover {
  transform: scale(1.1);
  color: #c40613;
}

  #overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* semi-transparent */
  z-index: 999; /* just below cart drawer */
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100000000;
}

.popup-container {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 15px;
  width: 95%;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  animation: popupSlide 0.3s ease-out;
}

@keyframes popupSlide {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.popup-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.popup-container input,
.popup-container textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border 0.3s;
}

.popup-container input:focus,
.popup-container textarea:focus {
  border-color: #28a745;
  outline: none;
}

.popup-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.popup-container button {
  flex: 1;
  padding: 0.8rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.confirm-btn {
  background: #28a745;
  color: white;
}

.confirm-btn:hover {
  background: #218838;
}

.cancel-btn {
  background: #dc3545;
  color: white;
}

.cancel-btn:hover {
  background: #c82333;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 24px;
  cursor: pointer;
}
.input-group {
  position: relative;
  margin-bottom: 1rem;
}

.input-group i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #555;
}

.input-group input,
.input-group textarea {
  padding-left: 35px;
}
/* ✅ Loader Overlay */
.loader-overlay {
  z-index: 1000000000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  /* z-index: 9999; */
}

/* ✅ Spinning Loader */
.loader {
  z-index: 1000000000;
  border: 6px solid #f3f3f3;
  border-top: 6px solid #ff6600;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1s linear infinite;
}

/* ✅ Keyframes for spin */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ✅ Success Popup */
.success-popup {
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 400px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  z-index: 1000000000000;
  transition: top 0.5s ease-in-out;
}

/* ✅ Show popup */
.success-popup.show {
  top: 20%;
}

/* ✅ Button style */
.success-popup button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #ff6600;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.success-popup button:hover {
  background: #cc5200;
}
/* Main Section */
.contact-section-pro {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f7fa;
  padding: 60px 20px;
  text-align: center;
}
.contact-container-pro {
  max-width: 850px;
  margin: auto;
}
.contact-container-pro h2 {
  font-size: 34px;
  color: #222;
  margin-bottom: 10px;
}
.contact-container-pro p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Form Layout */
form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}
.form-group {
  flex: 1;
  position: relative;
}
.full {
  width: 100%;
}
input, textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input:focus, textarea:focus {
  border-color: #00284e;
  box-shadow: 0 0 6px rgba(108, 99, 255, 0.3);
}

/* Floating Label with Icons */
label {
  position: absolute;
  top: 14px;
  left: 16px;
  color: #888;
  font-size: 14px;
  pointer-events: none;
  transition: all 0.2s ease;
}
input:focus + label,
input:valid + label,
textarea:focus + label,
textarea:valid + label {
  top: -10px;
  left: 12px;
  font-size: 12px;
  background: #f4f7fa;
  padding: 0 5px;
  color: #00284e;
}
label i {
  margin-right: 6px;
}

/* Button Style */
.submit-btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #4e47e5;
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(108, 99, 255, 0.3);
}
.submit-btn-pro:hover {
  background-color: rgb(10, 3, 139);
  transform: translateY(-2px);
}

/* Base Structure */
.container {
  width: 100%;
  margin: auto;
}
.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.photo{
    height: auto;
    width: 100%;
    /* background-color: saddlebrown; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.subphoto{
    height: 100%;
    width: 100%;
    /* background-color: coral; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;

}
.onepic{
    height: 250px;
    width: 100%;
    /* background-color: seagreen; */
    margin: auto;
    overflow: hidden;
}
.onepic img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.onepic:hover img{
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}
.pricelis{
  overflow: hidden;
    height:auto;
    width: 100%;
    /* background-color: rebeccapurple; */
    padding: 20px;
}
.subprice{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}
.p1{
  margin-top: 100px;
    height: 100%;
    width: 100%;
    /* background-color:gold; */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.p1 img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.p2{
    height: 100%;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items:center;
    flex-direction: column;
    justify-content:center;
}
.p2 h1{
  color: #4e47e5;
    font-size: 26px;
    font-weight: 700;
    text-transform: capitalize;
    font-family: "Poppins", sans-serif;
    text-align: center;
}
.p2 p{
    margin-top:15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    text-transform: capitalize;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
    color: #555555;
}
.p2 a{
    border-radius: 40px;
    margin-top: 20px;
    text-decoration: none;
    background-color: #4e47e5;
    height: 40px;
    width: 170px;
    padding-left:40px;
    align-items:center;
    align-content: center;
    /* justify-tracks: center; */
    /* justify-items: center; */
    /* align-self: center; */
    font-size: 16px;
    /* margin-right: 10px; */

    color:white;
    /* margin-left: 20px; */
    font-family: "Poppins", sans-serif;
   }
   .p2 a:hover{
    background-color:#1a1491;
   }
   .p2 i{
    margin-left: 8px;
   }


.footer {
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #0e0d0d;
  padding: 70px 0;
}
.footer-col {
  width: 100%;
  padding: 0 35px;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #4e47e5;
  height: 2px;
  width: 50px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 15px;
  color: #bbbbbb;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 10%;
  color: #ffffff;
  transition: 0.5s ease;
}
.footer-col .social-links a:hover {
  color: white;
  background-color: #4e47e5;
}

/* Logo & About */
.footer-about img.footer-logo {
  width: 100%;
  border-radius: 100px;
  margin-bottom: 15px;
}
.footer-about p {
  font-size: 14px;
  color: #bbbbbb;
  line-height: 1.6;
  text-align: justify;
}

/* Copyright */
.copyright {
  font-family: 'Poppins', sans-serif;
  padding: 0.8em 0;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}
.copyright span a {
  color: goldenrod;
  text-decoration: none;
}
/* WhatsApp Floating Button - Stylish */
.whatsapp-float {
  position: fixed;
  top: 310px;
  left: 20px;
  z-index: 999;
  display: inline-block;
  width: 60px;
  height: 60px;
  animation: bounce-in 1s ease-out;
  cursor: pointer;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.9);
}

/* Tooltip */
.whatsapp-float .tooltip {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  background-color: #25d366;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Entry Animation */
@keyframes bounce-in {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  80% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}






}
