

body {
    font-family: 'Arial', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.cursive{
    font-family: cursive, Sans-serif ;
    font-size: 3em;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow around the header */
    border-radius: 8px;
}

header h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0c4b6e; /* Accent color */
    margin-bottom: 10px;
}

header p {
    font-size: 1.2rem;
    color: #555;
}

/* Main Section */
.main {
    margin-bottom: 40px;
}

/* Services Section */
section {
    padding: 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

section h2 {
    font-size: 2rem;
    color: #0c4b6e;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); /* Subtle shadow for each service box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
    transform: translateY(-5px); /* Slight hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Darker shadow on hover */
}

.service h3 {
    font-size: 1.5rem;
    color: #0c4b6e;
    margin-bottom: 10px;
}

.service p {
    font-size: 1rem;
    color: #555;
}

/* Plans Section */
.plans {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.plan {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); /* Subtle shadow for each plan box */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    animation: bounce 2.5s infinite;

}

.plan:hover {
    transform: translateY(-5px); /* Slight hover effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5); /* Darker shadow on hover */
}

.plan h3 {
    font-size: 1.6rem;
    color: #0c4b6e;
    margin-bottom: 10px;
}

.plan p {
    font-size: 1rem;
    color: #555;
}


@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}


/* Side Panel for Plan Details */
#side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: -4px 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 9999;
    border-radius: 8px;
\}


.visible {
    display: inline-block;
}

#close-panel {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

#plan-details {
    margin-top: 20px;
    font-size: 1rem;
    color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2rem;
    }

    header p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .service h3, .plan h3 {
        font-size: 1.3rem;
    }

    .service p, .plan p {
        font-size: 1rem;
    }
}




@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-6px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}





#plan-details ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;

}
#plan-details li {
    font-size: 16px;
    margin-bottom: 2vh;
    display: list-item;
}

#plan-details details {
  margin-top: 1rem;
}

#plan-details p {
  margin: 0.5rem 0;
  text-align: center;
  margin-bottom: 2vh;
}










