body {
font-family: Arial, sans-serif;
background: #0a192f;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}

header {
color: white;
display: flex;
justify-content: space-between;
align-items: center;
padding: 7px 30px;
user-select: none;
font-weight: bold;
font-size: 1.8rem;
letter-spacing: 2px;
position: sticky;
top: 0;
z-index: 1000;
background-color: #0a192f;

}

@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0.5; }
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
    border-radius: 50%;
}

.logo img:hover {
  transform: scale(1.1);
}


.social-icons a {
margin-left: 15px;
color: white;
font-size: 1.4rem;
text-decoration: none;
transition: color 0.3s ease;
vertical-align: middle;
display: inline-block;
}

.social-icons a:hover {
color: #019875;
}

.social-icons svg {
fill: currentColor;
width: 24px;
height: 24px;
vertical-align: middle;
}

.container {
background: #fff;
max-width: 600px;
margin: 20px auto;
padding: 30px;
margin-top: 1px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
flex-grow: 1;
}

.required-label::after {
  content: " *";
  color: red;
}

h1 {
color: navy;
margin-top: 10px;
margin-bottom: 10px;
text-align: center;
}

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

form label {
font-weight: 600;
margin-bottom: 5px;
display: block;
}

form input,
form textarea,
form select {
width: 100%;
padding: 12px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
box-sizing: border-box;
}

button {
background: linear-gradient(90deg, #00b894, #e35da9);
color: white;
padding: 14px 20px;
border: none;
cursor: pointer;
font-weight: bold;
border-radius: 6px;
font-size: 1.1rem;
width: 100%;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 184, 148, 0.4);
}

button:hover {
background: linear-gradient(90deg, #e356ff, #37f47c);
transform: scale(1.05);
box-shadow: 0 6px 10px rgba(52, 255, 69, 0.7);
color: black;
}

#price-display {
font-weight: bold;
color: #333;
margin-bottom: 15px;
font-size: 1rem;
text-align: left;
}

#price-show {
font-weight: bold;
color: #333;
margin-bottom: 15px;
font-size: 1rem;
text-align: left;
}


/* -------------whatsapp button add--------------- */


  .floating-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #1db954, #14833b);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(29, 185, 84, 0.8);
    animation: pulseGlow 2.8s infinite ease-in-out;
    transition: background 0.4s ease, transform 0.3s ease;
    text-decoration: none;
  }

  .floating-whatsapp:hover {
    background: linear-gradient(135deg, #14833b, #1db954);
    transform: scale(1.12);
    box-shadow: 0 0 20px 8px rgba(20, 131, 59, 0.9);
  }

  .floating-whatsapp i {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    padding: 0;
    user-select: none;
    color: #daf6d9;
    animation: professionalColorShift 4s infinite ease-in-out;
  }

  @keyframes pulseGlow {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(29, 185, 84, 0.7);
    }
    50% {
      transform: scale(1.05);
      box-shadow: 0 0 20px 12px rgba(29, 185, 84, 0.6);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(29, 185, 84, 0);
    }
  }

  @keyframes professionalColorShift {
    0% {
      color: #e82828;
      text-shadow: 0 0 5px #1db954, 0 0 10px #14833b;
    }
    50% {
      color: #e828a1;
      text-shadow: 0 0 7px #14833b, 0 0 14px #1db954;
    }
    100% {
      color: #e828a1;
      text-shadow: 0 0 5px #1db954, 0 0 10px #14833b;
    }
  }
/* ---------------------------- */



footer {
    background-color: #0a192f;
    padding: 30px 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 25px;
}

.footer-logo h2 {
    font-size: 30px;
    color: #22ff00;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section {
    border-top: 1px solid #0a192f;
}

.footer-header {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #0a192f;
    transition: background 0.3s;
}

.footer-header:hover {
    background-color: #053700;
}

.footer-header span{
    color: #22ff00;
}

.footer-header span.icon {
    transition: transform 0.3s;
}

.footer-header.active span.icon {
    transform: rotate(180deg);
}

.footer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 15px;
    background-color: #0a192f;
}

.footer-content.open {
    max-height: 100px;
    padding: 15px;
}

.footer-content p {
    display: block;
    padding: 8px 0;
    color: #ccc;
    transition: color 0.3s;
    text-align: left;
}

.footer-content p:hover {
    color: #FFA500;
}

.social-icons {
    text-align: center;
    margin: 25px 0 15px;
}

.social-icons a {
    margin: 0 10px;
    font-size: 20px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #22ff00;
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-top: 30px;
    text-decoration: none;
}

.footer-bottom a{
    color: #22ff00;
    text-decoration: none;
}



@media (min-width: 768px) {
    .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    }

    .footer-section {
    flex: 1;
    min-width: 200px;
    border: none;
    }

    .footer-header {
    cursor: default;
    background-color: transparent;
    }

    .footer-header .icon {
    display: none;
    }

    .footer-content {
    max-height: none !important;
    padding: 15px !important;
    overflow: visible;
    background-color: transparent;
    }
}
