/* --- Tabbed Sign Up / Log In Card Styles --- */
.signup-card {
  max-width: 370px;
  margin: 60px auto;
  background: linear-gradient(135deg, #fff 60%, #ffe0f7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106,130,251,0.13);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Dashboard Styles --- */
.dashboard-card {
  max-width: 500px;
  margin: 60px auto;
  background: linear-gradient(135deg, #e3f2fd 60%, #ffe0f7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106,130,251,0.13);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dashboard-title {
  font-size: 2rem;
  color: #6a82fb;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
}
.dashboard-summary {
  width: 100%;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.dashboard-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106,130,251,0.10);
  padding: 18px 16px;
  flex: 1;
}
.dashboard-section h3 {
  font-size: 1.15rem;
  color: #0077cc;
  margin-bottom: 10px;
}
.dashboard-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-section li {
  font-size: 1rem;
  margin-bottom: 8px;
}
.status-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 8px;
}
.status-tag.booked {
  background: #ff6f91;
  color: #fff;
}
.status-tag.available {
  background: #009e3c;
  color: #fff;
}
.bill-tag {
  background: #6a82fb;
  color: #fff;
  padding: 2px 10px;
  border-radius: 8px;
  font-weight: 700;
}
.dashboard-btn {
  margin-top: 18px;
  padding: 13px 0;
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #ff6f91 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255,111,145,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dashboard-btn:hover {
  background: linear-gradient(90deg, #ff6f91 0%, #6a82fb 100%);
  transform: translateY(-2px) scale(1.03);
}
.signup-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.tab-btn {
  background: #e3f2fd;
  color: #0077cc;
  font-weight: 700;
  border: none;
  border-radius: 10px 10px 0 0;
  padding: 10px 28px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-size: 1rem;
}
.tab-btn.active {
  background: linear-gradient(90deg, #6a82fb 0%, #ff6f91 100%);
  color: #fff;
}
.tab-content {
  width: 100%;
}
.signup-title {
  font-size: 1.5rem;
  color: #6a82fb;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
.signup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
.form-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #bdbdbd;
  font-size: 1rem;
  background: #f7f9fa;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 2px;
}
.form-group input:focus {
  border-color: #6a82fb;
  box-shadow: 0 0 0 2px #6a82fb33;
}

.form-group select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #bdbdbd;
  font-size: 1rem;
  background: #f7f9fa;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  margin-bottom: 2px;
}
.form-group select:focus {
  border-color: #6a82fb;
  box-shadow: 0 0 0 2px #6a82fb33;
}
.signup-btn {
  margin-top: 10px;
  padding: 13px 0;
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #ff6f91 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255,111,145,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.signup-btn:hover {
  background: linear-gradient(90deg, #ff6f91 0%, #6a82fb 100%);
  transform: translateY(-2px) scale(1.03);
}
.signup-error {
  margin-top: 12px;
  color: #ff3b3b;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}
.signup-success {
  margin-top: 12px;
  color: #009e3c;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}
.signup-message {
  margin-top: 18px;
  color: #0077cc;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
}
/* --- Sign Up / Log In Form Styles --- */
.signup-container {
  max-width: 350px;
  margin: 60px auto;
  background: linear-gradient(135deg, #fff 60%, #ffe0f7 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(106,130,251,0.13);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.signup-title {
  font-size: 2rem;
  color: #6a82fb;
  margin-bottom: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
.signup-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
.form-group input {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #bdbdbd;
  font-size: 1rem;
  background: #f7f9fa;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: #6a82fb;
  box-shadow: 0 0 0 2px #6a82fb33;
}
.signup-btn {
  margin-top: 10px;
  padding: 13px 0;
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #ff6f91 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255,111,145,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.signup-btn:hover {
  background: linear-gradient(90deg, #ff6f91 0%, #6a82fb 100%);
  transform: translateY(-2px) scale(1.03);
}
.signup-message {
  margin-top: 18px;
  color: #0077cc;
  font-size: 1.08rem;
  font-weight: 600;
  text-align: center;
}
/* --- Simple Pricing Page Styles --- */
.simple-pricing-hero {
  text-align: center;
  padding: 40px 10px 24px 10px;
  background: #f7f9fa;
}
.simple-pricing-img {
  float: right;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(106,130,251,0.10);
  margin-bottom: 16px;
}
.simple-pricing-title {
  font-size: 2rem;
  color: #0077cc;
  font-weight: 700;
  margin-bottom: 10px;
}
.simple-pricing-desc {
  font-size: 1.08rem;
  color: #444;
  margin: 10px 0 0 0;
}
.simple-pricing-list {
  list-style: disc inside;
  padding: 0;
  margin: 18px auto 0 auto;
  max-width: 400px;
  color: #333;
  font-size: 1rem;
  text-align: left;
}
.simple-pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 32px 0 24px 0;
  background: #e3f2fd;
}
.simple-pricing-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(106,130,251,0.10);
  padding: 24px 18px 18px 18px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10px;
  border: 1.5px solid #bdbdbd;
}
.simple-pricing-card h2 {
  font-size: 1.1rem;
  color: #0077cc;
  margin-bottom: 8px;
  font-weight: 600;
}
.simple-pricing-card ul {
  color: #444;
  font-size: 0.98rem;
  text-align: left;
  line-height: 1.5;
  margin: 0;
  padding-left: 16px;
}
@media (max-width: 900px) {
  .simple-pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 0 10px 0;
  }
  .simple-pricing-card {
    width: 90vw;
    max-width: 320px;
  }
}
/* --- Slot Booking Form Styles --- */
.booking-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  background: linear-gradient(120deg, #e3f2fd 0%, #fce4ec 100%);
  padding: 60px 0 60px 0;
}
.booking-card {
  background: linear-gradient(135deg, #fff 60%, #ffe0f7 100%);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(106,130,251,0.13);
  padding: 40px 32px 32px 32px;
  width: 100%;
  max-width: 420px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.booking-title {
  font-size: 2rem;
  color: #6a82fb;
  margin-bottom: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
.booking-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}
.form-group input,
.form-group select {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #bdbdbd;
  font-size: 1rem;
  background: #f7f9fa;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #6a82fb;
  box-shadow: 0 0 0 2px #6a82fb33;
}
.booking-btn {
  margin-top: 10px;
  padding: 13px 0;
  width: 100%;
  background: linear-gradient(90deg, #6a82fb 0%, #ff6f91 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(255,111,145,0.10);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.booking-btn:hover {
  background: linear-gradient(90deg, #ff6f91 0%, #6a82fb 100%);
  transform: translateY(-2px) scale(1.03);
}
.cta-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 30px 0;
  background: linear-gradient(120deg, #e3f2fd 60%, #fce4ec 100%);
}
.cta-section .container {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 40px 30px 32px 30px;
  max-width: 650px;
  width: 95%;
  margin: 0 auto;
}
.cta-section .vvv h1 {
  font-size: 2.2rem;
  color: #0077cc;
  margin-bottom: 28px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
.cta-section .button-group {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}
.cta-section .bttn, .cta-section .btnn {
  padding: 13px 28px;
  font-size: 1.1rem;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.cta-section .photo {
  width: 100%;
  max-width: 340px;
  border-radius: 15px;
  margin-top: 18px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #e3f2fd, #fce4ec);
  color: #333;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

/* Navbar styles */
nav {
    background-color: #0077cc;
    padding: 15px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 25px;
}

nav ul {
    display: flex;
    justify-content:space-around;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    
}

nav ul li {
    margin: 5px 10px;
}

nav ul li.logo a {
    display: flex;
    align-items: center;
    font-size: 40px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}

nav ul li.logo img {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

nav a.button {
    background-color: #00bcd4;
    color: white;
    padding: 8px 20px 10px 30px;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 30px;
    padding-right: 30px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    transition: background 0.3s;
  border: none;
  cursor: pointer;
}

nav button.button {
  background-color: #00bcd4;
  color: white;
  padding: 8px 20px 10px 30px;
  padding-bottom: 20px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

nav a.button:hover {
    background-color: #0097a7;
}

nav button.button:hover {
  background-color: #0097a7;
}

/* Header styles */
header {
    text-align: center;
    padding: 40px 10px;
    background-color: #e0f7fa;
    color: #004d40;
}

header h1 {
    font-size: 36px;
    margin: 10px 0;
}
.solve{
    font-size: 40px;
}
/* Main section */
main {
    text-align: center;
    padding: 30px 10px;
}


main h3 {
    font-size: 24px;
    color: #00695c;
    margin-bottom: 10px;
}

main p {
    max-width: 700px;
    margin: 10px auto;
    font-size: 18px;
    line-height: 1.5;
}

main ol {
    text-align: left;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff3e0;
    border-left: 5px solid #ff9800;
    border-radius: 8px;
}

main ol li {
    margin-bottom: 10px;
    font-size: 16px;
}
   
.one{margin-left: 70px;
     height: 250px;
     width: 500px;
}
.one:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
.two{padding:0px;
margin: 0px;}
.three{margin-left: 70px;}
.four{margin: 0px;}
.five{margin-left: 70px;
      height: 250px;
     width: 500px;
}
.five:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
.six{margin: 0px;}
.seven{margin-left: 70px;
       height: 250px;
     width: 500px;
}
.seven:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
.eight{margin: 0px;}
.nine{margin-left: 70px;
      height: 250px;
      width: 500px;
    }
      .nine:hover{
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
.ten{margin: 0px;}
.eleven{margin-left: 70px;
        height: 250px;
        width: 500px;
}
.eleven:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
.twelve{margin: 0px;}
.thirteen{margin: 60px;
}

.ww{
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    padding: 40px 0 60px 0;
    margin: 0;
    border-radius: 0 0 40px 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.facilities-title {
  text-align: center;
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 1px;
  font-weight: 700;
}

.facilities-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 32px 24px 24px 24px;
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;

  background: linear-gradient(135deg, #fff 60%, #ffe0f7 100%);
}
.facility-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  z-index: 2;
}
.facility-card img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  border: 4px solid #f8b500;
  background: #fffbe7;
}
.facility-card h3 {
  font-size: 1.25rem;
  color: #f8b500;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: center;
}
.facility-card p {
  color: #444;
  font-size: 1rem;
  text-align: center;
  line-height: 1.5;
}

.vv{
    background-color: rgba(100,120,80,0.04);
}


.ob{
  background: linear-gradient(120deg, #e3f2fd 0%, #fce4ec 100%);
  color: #222;
  margin: 0;
  font-family: 'Times New Roman', Times, serif;
  min-height: 150px;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #ddd;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
  max-width: 600px;
  width: 90%;
  text-align: center;
  line-height: 25px;
  font-size: 20px;
}


.vvv h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.button-group {
  margin-bottom: 30px;
}

.bttn, .btnn {
  padding: 15px 30px;
  font-size: 1rem;
  margin: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bttn {
  background-color: #007BFF;
  color: white;
}

.bttn:hover {
  background-color: #0056b3;
}

.btnn {
  background-color: #6c757d;
  color: white;
}

.btnn:hover {
  background-color: #5a6268;
}

.photo {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-right: 100px;
}

label{
    display: inline-block;
    width: 100px;
}



.footer {
  background-color: #0e0f2b;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.footer-logo .logo {
  width: 32px;
  height: 32px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 140px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-weight: bold;
  color: white;
}

.footer-column a {
  display: block;
  margin-bottom: 8px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column a:hover {
  color: #fff;
}
 
         /* img{
            float: right;
            margin-top: 40px;
            margin-right: 30px;
            width: 1000px;
            height: 200px;
         }
         h1{
            margin-left: 80px;
        
         } */
  
        /* .one{
            margin-left: 150px;
            margin-top: 50px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-size:larger;
        } */
        .twoo{
          font-size: 30px;
          margin-top: 40px;
            color: #356;
            font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        }
        .grid-container{
            display:flex;
            grid-template-rows: repeat(3);
            gap: 80px;
            
        }
        .grid-item{
            margin-top: 70px;
            margin-left: 120px;
            background-color:aqua;
            width: 340px;
            height: 200px;
            border-radius: 4px;
            padding:20px ;
        }
        .grid-item:hover {
      transform: scale(1.03);
      z-index: 7;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
        .grid-items{
            margin-top: 70px;
            margin-left: 70px;;
            background-color:aqua;
            width: 340px;
            height:200px ;
            border-radius: 4px;
            padding: 20px;}

            .grid-items:hover {
           transform: scale(1.05);
         z-index: 10;
         box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
        
        .grid-itemss{
            margin-top: 70px;
            margin-left: 100px;
            background-color:aqua;
            margin-left: 2px;
            width: 340px;
            height: 200px;
            border-radius: 4px;
            padding: 20px;
        }
        .grid-itemss:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
        .button{
            margin-top: 50px;
            background-color: dodgerblue;
            border-radius: 4px;
            padding: 10px;
        }
        .button:hover {
      transform: scale(1.05);
      z-index: 10;
      box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    }
 
 



.vvv h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.button-group {
  margin-bottom: 30px;
}

.bttn, .btnn {
  padding: 15px 30px;
  font-size: 1rem;
  margin: 10px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bttn {
  background-color: #007BFF;
  color: white;
}

.bttn:hover {
  background-color: #0056b3;
}

.btnn {
  background-color: #6c757d;
  color: white;
}

.btnn:hover {
  background-color: #5a6268;
}

.photo {
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
 .form{
            font-size:30px ;
        }
        .button{
            width: 130px;
            font-size: 25px;
        }
        .about{
          margin-top: 50px;
        }
        .abouts{
          font-size: 30px;
          margin-top: 20px;
          margin-left: 50px;
          margin-right: 50px;
          text-align: justify;
        }
   .num{

    margin-left: 70px;
    
   }