*{
    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: "Assistant", sans-serif;
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    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: #e8ef0b;
    /* 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: #00284e;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    border: 2px solid #00284e;
    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: "Lato", 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: 75px; /* 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: 55%;
    /* background-color: rosybrown; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.packs a {
    font-size: 17px;
    color: white;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    background-color: #00284e;
    padding: 10px 20px;
    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);
    background-color: #00284e; /* slightly lighter blue */
    box-shadow: 0 8px 20px rgba(0, 40, 78, 0.3);
    color: white; /* 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: #00284e;
    }

    .cart-icon {
      position: relative;
      margin-right: 8px;
    }

    .cart-icon i {
      font-size: 28px;
    }

    .badge {
      position: absolute;
      bottom: -10px;
      left: -10px;
      background-color: #FFD700;
      color: black;
      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: #00284e;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    border: 2px solid #00284e;
    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: #00284e;
    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);
}
.hero{
    margin-top:185px;
    height: 515px;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;

}
.subhero{
    height: 100%;
    width: 80%;
    /* 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 {
      background-color: #e8ef0b;
      color: #00284e;
      font-weight: bold;
      overflow: hidden;
      height: 40px;
      display: flex;
      align-items: center;
      /* 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%;
    }

    @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: #c40000; /* 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 #b30000;
  /* 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: #b30000;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

.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: #f20079;
    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: 1000;
  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: #00284e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #003d70;
}

.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: #f20079;
  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: #f20079;
  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: #d4006a;
}
.cart-item button.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #f20079;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s ease;
}

.cart-item button.delete-btn:hover {
  transform: scale(1.1);
  color: #d4006a;
}

  #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: #00284e;
  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: #0b0845;
  transform: translateY(-2px);
}

/* Base Structure */
.container {
  width: 100%;
  margin: auto;

}
.row {
  display: flex;
  align-items: center;
  justify-content: center;
}


.footer {
  font-family: 'Poppins', sans-serif;
  background-color: #24262b;
  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: #e8ef0b;
  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: 50%;
  color: #ffffff;
  transition: 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* 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: #1e1e1e;
  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);
  }
}


@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: "Assistant", sans-serif;
    scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    display: none;
}
 .mobile-navbar {
      background: #00284e;
      display: initial;
      position: fixed;
      width: 100%;
      height: 105px;
      top: 70px; /* Adjust based on .navbar height */
      z-index: 999;
      box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.15); */
    }

    .navbar-container {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      padding: 12px 16px;
    }

    .navbar-logo img {
      height: 75px;
    }

    .menu-toggle-button {
      font-size: 24px;
      color: white;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .menu-toggle-button.open i {
      transform: rotate(90deg);
    }

    .mobile-nav-menu {
      max-height: 0;
      overflow: hidden;
      background: white;
      /* border-top: 1px solid #ccc; */
      transition: max-height 0.4s ease-in-out;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

    .mobile-nav-menu.active {
      max-height: 500px;
    }

    .mobile-nav-links {
      display: flex;
      flex-wrap: wrap;
      margin-top: 0px;
      gap: 10px;
      padding: 16px;
      justify-content: center;
    }

    .mobile-nav-links li {
      list-style: none;
    }

    .mobile-nav-links a {
      display: block;
      padding: 10px 16px;
      background-color: #00284e;
      color: white;
      border-radius: 12px;
      font-weight: 500;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
      transition: transform 0.2s ease, background 0.3s ease;
      text-align: center;
      min-width: 120px;
    }

    .mobile-nav-links a:hover {
      background-color: #001d39;
      transform: scale(1.05);
    }

.mobile-topbar-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px 30px 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
  }

  .mobile-cart-new {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cart-icon-new {
    position: relative;
    font-size: 22px;
    color: #00264d; /* Navy Blue */
  }

  .cart-badge-new {
    position: absolute;
    bottom: -6px;
    left: -10px;
    background: #ffdd00; /* Yellow */
    color: #000;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
    border: 1px solid #fff;
  }

  .cart-amount-new {
    font-weight: bold;
    font-size: 14px;
    color: #00264d;
  }

  .mobile-call-new a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 2px solid #00264d;
    border-radius: 8px;
    text-decoration: none;
    color: #00264d;
    font-weight: 600;
    font-size: 14px;
  }

  .mobile-call-new a i {
    font-size: 14px;
  }

.mininav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
    height: 75px;
    width: 100%;
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: space-around;
    background-color: #e8ef0b;
    /* 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: #00284e;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    border: 2px solid #00284e;
    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: "Lato", 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%;
    display: none;
    position: fixed;
  top: 75px; /* 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: 55%;
    /* background-color: rosybrown; */
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.packs a {
    font-size: 17px;
    color: white;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    text-decoration: none;
    background-color: #00284e;
    padding: 10px 20px;
    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);
    background-color: #00284e; /* slightly lighter blue */
    box-shadow: 0 8px 20px rgba(0, 40, 78, 0.3);
    color: white; /* 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: #00284e;
    }

    .cart-icon {
      position: relative;
      margin-right: 8px;
    }

    .cart-icon i {
      font-size: 28px;
    }

    .badge {
      position: absolute;
      bottom: -10px;
      left: -10px;
      background-color: #FFD700;
      color: black;
      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: #00284e;
    font-weight: 600;
    font-family: "Lato", sans-serif;
    border: 2px solid #00284e;
    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: #00284e;
    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);
}
.hero{
    margin-top:180px;
    height: auto;
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.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 {
      background-color: #e8ef0b;
      color: #00284e;
      font-weight: bold;
      overflow: hidden;
      height: 40px;
      display: flex;
      align-items: center;
      /* 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%;
    }

    @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: #c40000; /* 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 #b30000;
  /* 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: #b30000;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
}

.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: 15px;
}

.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: 40px;
  height: 40px;
  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;
  margin-left: auto;
}

.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: #f20079;
    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: 1000;
  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: #00284e;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  border-bottom: 1px solid #003d70;
}

.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: #f20079;
  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: #f20079;
  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: #d4006a;
}
.cart-item button.delete-btn {
  background: none;
  border: none;
  font-size: 18px;
  color: #f20079;
  cursor: pointer;
  padding: 6px;
  transition: transform 0.2s ease;
}

.cart-item button.delete-btn:hover {
  transform: scale(1.1);
  color: #d4006a;
}

  #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;
  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: #00284e;
  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: #0b0845;
  transform: translateY(-2px);
}

/* Base Structure */
.container {
  width: 100%;
  margin: auto;
  height: auto;

}
.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.footer {
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #24262b;
  padding: 50px 0;
}
.footer-col {
  width: 100%;
  padding: 0 25px;
  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: #e8ef0b;
  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: 50%;
  color: #ffffff;
  transition: 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/* 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:1px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1e1e1e;
  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: 210px;
  left: 10px;
  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);
  }
}

}
