/* Input field styling */ 
.input-field { 
  width: 100%; 
  border: 1px solid #d1d5db; /* gray-300 */ 
  border-radius: 0.5rem; 
  padding: 0.5rem 1rem; 
  outline: none; 
  transition: all 0.2s; 
} 

.input-field:focus { 
  box-shadow: 0 0 0 2px #60a5fa; /* blue-400 */ 
} 

/* Modal buttons */ 
.modal-btn { 
  width: 100%; 
  padding: 0.5rem 0; 
  border-radius: 0.5rem; 
  font-weight: 600; 
  transition: all 0.2s; 
} 

.modal-btn:hover { 
  transform: scale(1.02); 
} 

.modal-btn:active { 
  transform: scale(1); 
} 

/* Floating Toast Messages */
.toast {
  position: fixed;
  top: 10%; /* slightly lower than top */
  left: 50%;
  transform: translateX(-50%) translateY(-30px); /* horizontally center, vertical initial offset */
  z-index: 9999;

  min-width: 250px;
  max-width: 320px;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;

  /* Glassy effect */
  -webkit-backdrop-filter: blur(8px); /* Safari/iOS support */
  backdrop-filter: blur(8px); /* Standard for other browsers */
  
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* smooth bounce */
  pointer-events: auto;
}

.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0); /* slide in animation */
}

.toast-success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}

.toast-error {
  background: linear-gradient(135deg, #dc2626, #f87171);
}

.toast-icon {
  font-size: 1.2rem;
}

/* new content from here to footer*/
/* What Can We Offer Section */
.section__container { 
  max-width: 1200px; 
  margin: auto; 
  padding: 5rem 1rem; 
} 

.section__header { 
  max-width: 900px; 
  margin-inline: auto; 
  margin-bottom: 1rem; 
  font-size: 2.5rem; 
  font-weight: 700; 
  color: white; 
  text-align: center; 
} 

.section__header span { 
  color: #ffff; 
} 

.section__description { 
  max-width: 600px; 
  margin-inline: auto; 
  margin-bottom: 3rem; 
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.75rem; 
  text-align: center; 
} 

.offer__grid { 
  margin-top: 4rem; 
  display: grid; 
  gap: 2rem 1rem; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
} 

.offer__card img { 
  width: 100%; 
  height: 250px; 
  object-fit: cover; 
  margin-bottom: 1rem; 
  border-radius: 10px; 
} 

.offer__details { 
  display: flex; 
  align-items: flex-start; 
} 

.offer__details span { 
  font-size: 2rem; 
  font-weight: 800; 
  color: transparent; 
  -webkit-text-stroke: 2px white; 
  padding-right: 1rem; 
} 

.offer__details div { 
  padding-left: 1rem; 
  border-left: 2px solid #ffff; 
} 

.offer__details h4 { 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 0.5rem; 
} 

.offer__details p { 
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.6; 
} 

/* Help */
body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Alternative gradient options */
.gradient-bg-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
  background: linear-gradient(135deg, #0093E9 0%, #80D0C7 100%);
}

.gradient-bg-3 {
  background: linear-gradient(135deg, #8EC5FC 0%, #E0C3FC 100%);
}

/* Page Title Styling */
.page-title {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Card Hover Effects */
.contact-card {
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* FAQ Accordion Styling */
details summary {
  list-style: none;
  cursor: pointer;

  /* Cross-browser user-select support */
  -webkit-user-select: none; /* Safari 3+, iOS Safari 3+ */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
  user-select: none;         /* Modern browsers */
}

details summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  color: #3b82f6;
}

/* Icon Circle Animation */
.icon-circle {
  transition: all 0.3s ease;
}

.contact-card:hover .icon-circle {
  transform: scale(1.1);
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* FAQ Answer Animation */
details[open] p {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Meet Our Team Section */ 
.team { 
  padding: 5rem 1rem; 
  text-align: center; 
} 

.team__header { 
  font-size: 2.5rem; 
  font-weight: 700; 
  color: white; 
  margin-bottom: 1rem; 
} 

.team__header span { 
  color: #ffff; 
} 

.team__description { 
  max-width: 600px; 
  margin: 0 auto 4rem; 
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.75rem; 
} 

.team__grid { 
  display: grid; 
  gap: 2rem; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  max-width: 1200px; 
  margin: 0 auto; 
} 

.team__card { 
  background-color: rgba(255, 255, 255, 0.95); 
  padding: 2rem 1rem; 
  border-radius: 1rem; 
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.2); 
  transition: 0.3s; 
} 

.team__card:hover { 
  transform: translateY(-10px); 
  box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.3); 
} 

.team__card img { 
  width: 100px; 
  height: 100px; 
  object-fit: cover; 
  margin: 0 auto 1rem; 
  border-radius: 50%; 
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); 
} 

.team__card h4 { 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: #1e40af; 
  margin-bottom: 0.5rem; 
} 

.team__card p { 
  font-size: 0.95rem; 
  color: #64748b; 
} 

/* Footer Section */ 
.footer { 
  color: white; 
  padding: 3rem 2rem 1rem; 
  margin-top: auto; 
  width: 100%; 
} 

.footer__container { 
  max-width: 1200px; 
  margin: 0 auto; 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 3rem 2rem; 
  margin-bottom: 2rem; 
} 

.footer__logo { 
  margin-bottom: 1rem; 
} 

.footer__logo .logo { 
  font-size: 1.5rem; 
  font-weight: bold; 
} 

.footer__col p { 
  max-width: 400px; 
  color: rgba(255, 255, 255, 0.8); 
  line-height: 1.6; 
} 

.footer__col h4 { 
  margin-bottom: 1.5rem; 
  font-size: 1.2rem; 
  font-weight: 600; 
  color: white; 
} 

.footer__links { 
  list-style: none; 
  display: grid; 
  gap: 0.75rem; 
} 

.footer__links a { 
  color: rgba(255, 255, 255, 0.8); 
  text-decoration: none; 
  transition: all 0.3s; 
} 

.footer__links a:hover { 
  color: #ffff; 
  padding-left: 5px; 
} 

.footer__bar { 
  padding: 1.5rem 1rem; 
  font-size: 0.9rem; 
  color: rgba(255, 255, 255, 0.7); 
  text-align: center; 
  border-top: 1px solid rgba(255, 255, 255, 0.2); 
  max-width: 1200px; 
  margin: 0 auto; 
} 

/* Responsive Design */ 
@media (width > 540px) { 
  .offer__grid { 
    grid-template-columns: repeat(2, 1fr); 
  } 
} 

@media (width > 768px) { 
  .offer__grid { 
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem; 
  } 
} 

@media (width > 1024px) { 
  .offer__card { 
    padding: 0.5rem; 
  } 
   
  .offer__grid { 
    gap: 2rem; 
  } 
} 

/* Eye Design */ 
.input-field + span {
  font-size: 1.25rem;
  color: #6b7280; /* Tailwind gray-500 */
}

/* Visual style for toast message */ 
.modal-message {
  display: none;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  z-index: 60;
}

/* types */
.modal-message--error {
  color: #7f1d1d;
  background: #fff1f2;
  border-color: #fecaca;
}
.modal-message--success {
  color: #14532d;
  background: #ecfdf5;
  border-color: #bbf7d0;
}
.modal-message--info {
  color: #1f2937;
  background: #f8fafc;
  border-color: #e6eef6;
}

/* visible helper */
.modal-message--visible { display: block; }

