* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  background-image: url("background.jpg");
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  color: white;
  height: 100px;
}

.logo {
  width: 142px;
  height: 120px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 9px 10px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding-left: 5px;
  font-size: 13px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.search-icon{
  width: 15px;
  height: 15px;
}

.hero {
  background-image: url("background.jpg");
  position: relative;
  min-height: 100vh;
  height: 695px;
  color: white;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
}

.container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 4rem 0;
}

.hero-content {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.text-section {
  max-width: 600px;
}

.badge {
  background-color: rgba(46, 204, 113, 0.6);;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 0.7rem;
  border-bottom-right-radius: 0;
  margin-bottom: 1.5rem;
  display: inline-block;
}

h1, h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0.5rem 0;
}

p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: #ef4444;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #dc2626;
}

.btn-outline {
  border: 1px solid white;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: white;
  color: #0c3c78;
}

.or {
  color: white;
}

.hours {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-circle {
  background-color: #22c55e;
  width: 65px;
  height: 65px;
  padding: 1rem;
  border-radius: 1rem;
}

.icon-circle .material-icons {
  font-size: 2rem;
  color: white;
}

.time-text p {
  margin: 0.25rem 0;
}

.time-text .title {
  font-weight: 600;
  font-size: 1.125rem;
}

.image-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-top: 40px;
}


.form-box{
  position: absolute;
  left: 35rem;
  top: 30rem;
}
.form {
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding: 20px 20px 20px 22px;
  border-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-group .icon-left,
.input-group .icon-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  pointer-events: none;
}

.icon-left {
  left: 12px;
}

.icon-right {
  right: 12px;
}

.custom-select,
.input-group input {
  width: 100%;
  padding: 12px 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fdfdfd;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.custom-select:focus,
.input-group input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.submit-container {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.submit-btn {
  background-color: #ef4444;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background-color: #dc2626;
}

.frame1{
  width: 100%;
  height: 250px;
  padding: 5% 0 0 5%;
  background-color: white;
}
.frame1 img{
  width: 93%;
  height: auto;
}

/*-----------------------------------------*/

.about-section {
  padding: 4rem 1rem;
  background-image: url("about-bg.png");
  height: 930px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
}

.about-images {
  position: relative;
}

.main-image {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.image-overlay {
  position: absolute;
  bottom: -4rem;
  left: -2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sub-image {
  width: 16rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  height: auto;
}

.image-with-button {
  position: relative;
}

.play-button {
  position: absolute;
  inset: 0;
  width: 70px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button svg {
  width: 3rem;
  height: 3rem;
  color: white;
}

.experience-box {
  background: #22c55e;
  color: white;
  width: 200px;
  height: 100px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  text-align: center;
}

.experience-box .years {
  text-align: left;
  padding-left: 25px;
  font-size: 2.5rem;
  height: 20px;
  font-weight: 700;
}

.experience-box .label {
  font-size: 1.125rem;
  height: 5px;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.badge-about {
  background-color: rgba(46, 204, 113);
  color: white;
  width: 120px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 0.8rem 0.8rem 1.5rem;
  border-radius: 1rem;
  border-bottom-right-radius: 0;
}

.about-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3498DB;
}

.description {
  color: #313131;
}

.testimonial {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-avatars {
  display: flex;
  gap: 0.5rem;
}

.testimonial-avatars img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 2px solid white;
}

blockquote {
  font-style: italic;
  color: #4b5563;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.testimonial-footer .dot {
  width: 1rem;
  height: 0.25rem;
  background: #3b82f6;
  border-radius: 9999px;
}

.testimonial-footer p {
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.875rem;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #DB4746;
  color: white;
  font-weight: 600;
  width: 180px;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.about-btn:hover {
  background: #dc2626;
}

.about-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.about-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 2rem;
}


.stat .number {
  font-size: 3rem;
  font-weight: 700;
  color: #3b82f6;
}

.stat .label {
  margin-top: 0.5rem;
  color: #6b7280;
}

/*-----------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  background-color: white;
  padding-top: 3rem;
  color: #374151;
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-left{
  list-style: none;
  padding: 0 0 0 2rem;
  margin-bottom: 1.5rem;
  margin-right: 9rem;
  color: #63BBE9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #2563eb;
}

.footer-column{
  width: 100px;
  height: 230px;
}

.footer-column h3 {
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #63BBE9;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-logo {
  width: 12rem;
  height: 12rem;
  background-color: #9b9c9e;
  border-radius: 0.75rem;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  border-color: #2563eb;
}

.subscribe-form button {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #2563eb;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  color: #2563eb;
  margin-top: 1rem;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.25rem;
  color: #2563eb;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1e40af;
}

.footer-location{
  width: 200px;
  position: absolute;
  left: 33.5rem;
  top: 18rem;
}
.footer-location h4{
  color: #2563eb;
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
.footer-location p{
  font-size: 0.8rem;
  color: #969696;
}
/*-----------------------------------------------*/

.services-section {
  padding: 4rem 1rem;
  background-image: url("services-bg.png");
  margin: auto;
  text-align: center;
}

.services-header {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 5rem;
  padding-right: 2.5rem;
}

.badge-services {
  background-color: rgba(46, 204, 113);
  color: white;
  width: 150px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.3rem 0.8rem 1rem;
  border-radius: 1rem;
  border-bottom-right-radius: 0;
}

.header-text {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
}

.header-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #3498DB;
}

.header-text p {
  color: #313131;
  margin-top: 1rem;
  max-width: 600px;
}

@media (min-width: 1024px) {
  .header-text {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2rem;
  }
  .header-text h1, .header-text p {
    width: 50%;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 4rem 0 4rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.icon-box {
  background: #fee2e2;
  padding: 1rem;
  border-radius: 0.75rem;
}

.icon-box svg,
.icon-box .material-icons {
  color: #ef4444;
  width: 2rem;
  height: 2rem;
  font-size: 32px;
}

.card-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e5e7eb;
}

.service-card h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3498DB;
}

.service-card p {
  color: #4b5563;
  margin-top: 0.5rem;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 1.5rem;
  color: #ef4444;
  font-weight: 600;
  border: 1px solid #fecaca;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #fee2e2;
}

.learn-more .material-icons {
  font-size: 18px;
  margin-left: 0.25rem;
}

.services-footer {
  text-align: center;
  margin-top: 3rem;
}

.see-more {
  background: #ef4444;
  color: white;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.see-more:hover {
  background: #dc2626;
}

.see-more .material-icons {
  font-size: 20px;
}
/*--------------------------------------------------------------------*/

.doctors-section {
  background-color: white;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.doctors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-doctors {
  background-color: rgba(46, 204, 113);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 2rem 0.8rem 1rem;
  border-radius: 1rem;
  border-bottom-right-radius: 0;
}


.doctors-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3498DB;
  margin-top: 2rem;
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 4rem 0 4rem;
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doctor-card {
  background-color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
}

.doctor-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.doctor-photo {
  width: 12rem;
  height: 12rem;
  border: 4px solid #93c5fd;
  border-radius: 50%;
  padding: 0.5rem;
  background-color: #f1f5f9;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3498DB;
  margin-bottom: 0.25rem;
}

.role {
  color: #FF6F61;
  font-weight: 500;
  margin-bottom: 1rem;
}

.bio {
  color: #5B5B5B;
  font-size: 0.875rem;
}

.see-more-container {
  text-align: center;
  margin-top: 3rem;
}
/*--------------------------------------------------------------*/
.trusted-doctor{
  width: 1200px;
  height: 400px;
  margin: 3rem 1rem 3rem 1rem;
}
.trusted-question{
  position: absolute;
  top: 6rem;
  left: 6.5rem;
  font-size: 2.5rem;
  color: white;
}
.trusted-paragraph{
  position: absolute;
  top: 14.5rem;
  left: 6.5rem;
  color: white;
  font-size: 1rem;
}
.book{
  position: absolute;
  background: white;
  color: #2677BC;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  width: 250px;
  left: 6.5rem;
  border: none;
  top: 22rem;
  padding: 1rem 2rem 1rem 0;
  transition: background 0.3s ease;
}
.book span{
  position: absolute;
  right: 1.5rem;
  top: 0.9rem;
}
.book:hover {
  background: #5EE088;
  color: white;
}
/*--------------------------------------------------------*/
.plans-section {
  background-color: white;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.badge-pricing{
  background-color: rgba(46, 204, 113);
  color: white;
  width: 150px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem 0.8rem 1.5rem;
  border-radius: 1rem;
  border-bottom-right-radius: 0;
  margin-left: 3rem;
}
.plans-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
  padding: 1.5rem 2rem 0 3rem;
}

.plans-title h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3498DB;
  line-height: 1.2;
}

.plans-description {
  padding-top: 2rem;
}

.plans-description p {
  color: #313131;
  font-size: 15px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 0 2.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.recommended {
  border: 2px solid #dc2626;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.small-highlight {
  color: #3b82f6;
  font-weight: 500;
}

.plan-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2677BC;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: #4b5563;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price {
  margin-bottom: 1.5rem;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  color: #3498DB;
}

.unit {
  color: #6b7280;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2677BC;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.features .material-icons {
  color: #22c55e;
  font-size: 20px;
}

.outline-btn,
.solid-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
}

.outline-btn {
  color: #dc2626;
  border: 1px solid #fca5a5;
  background: transparent;
  margin-bottom: 0.5rem;
}

.outline-btn:hover {
  background-color: #fee2e2;
}

.solid-btn {
  background-color: #dc2626;
  color: white;
  border: none;
}

.solid-btn:hover {
  background-color: #b91c1c;
}

.divider {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0.75rem 0;
}

.plans-footer {
  text-align: center;
  margin-top: 3rem;
}

.see-more-btn {
  background-color: #dc2626;
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.see-more-btn:hover {
  background-color: #b91c1c;
}

.see-more-btn .material-icons {
  font-size: 20px;
}
/*------------------------------------------------------------------*/

.appointment-section {
  min-height: 100vh;
  background-image: url("background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.appointment-container {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  max-width: 900px;
  width: 100%;
}

.appointment-header {
  margin-bottom: 1.5rem;
}

.badge-appointment{
  background-color: rgba(46, 204, 113);
  color: white;
  width: 150px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.5rem 0.8rem 1.5rem;
  border-radius: 1rem;
  border-bottom-right-radius: 0;
  margin-left: 0;
}

.appointment-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #3498DB;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #313131;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 1rem;
  border: 1px solid #d1d5db;
  background-color: #f9fafb;
  font-size: 0.95rem;
  color: #1f2937;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

textarea {
  resize: vertical;
}

.submit-send {
  width: 100%;
  background-color: #ef4444;
  color: white;
  padding: 0.6rem;
  border: none;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.submit-send:hover {
  background-color: #dc2626;
}

.material-symbols-outlined {
  font-size: 20px;
}