/* Global Styles */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

p {
  margin-bottom: 20px;
}

a {
  text-decoration: none;
  color: #337ab7;
}

a:hover {
  color: #23527c;
}

/* Navigation Bar */

nav {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

nav img {
  height: 52px;
}

.links-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.links-container a {
  margin: 0 15px;
  font-size: 16px;
  color: #333;
}

.links-container a:hover {
  color: #007bff;
}

.open-sidebar-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
}

/* Hero Section */

.hero {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1494500764479-0c8f2919a3d8?crop=entropy&cs=tinysrgb&fit=crop&fm=jpg&h=500&ixid=MnwxfDB8MXxyYW5kb218MHx8bGFuZHNjYXBlfHx8fHx8MTY2MjEyMDE3MQ&ixlib=rb-1.2.1&q=80&utm_campaign=api-credit&utm_medium=referral&utm_source=unsplash_source&w=500');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.hero .content {
  z-index: 1;
  text-align: center;
}

/* Marquee Section */

.marquee {
  background-color: #337ab7;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.marquee p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}

/* Gallery Section */

.gallery {
  padding: 50px;
  background-color: #ffffffe8;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery .images {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 40px;
}

.gallery img {
   height: 250px; /* images size adjust   */
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.636);
  transition: transform 0.3s ease;
}

.gallery img:hover {
   transform: scale(1.15); /* adjust the hover size  */
  box-shadow: 0 0 20px rgb(0, 0, 0); /* adjust the shadow color  */
}

/* Plans Section */

.plans {
  padding: 40px 20px;
  background-color: #fff;
}

.plans h2 {
  text-align: center;
  margin-bottom: 20px;
}

.plans .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.plans .card {
  margin: 20px;
  width: calc(33.33% - 40px);
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

#card1:hover {
  box-shadow: 0 0 10px rgb(2, 27, 248);
}

#card2:hover {
  
  box-shadow: 0 0 10px rgb(166, 3, 220);
}

#card3:hover{
  
  box-shadow: 0 0 10px #cec112;
}

.card:hover {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.plans .card h2 {
  margin-bottom: 10px;
}

.plans .card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.plans .card li {
  margin-bottom: 10px;
}

.plans .card li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

button{
  background: linear-gradient(135deg,#ff0000, #000000);
}
button:hover{
  background: linear-gradient(135deg,#000000, #ff0000);
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contact-image {
  width: 40%;
  margin: 20px;
}

.contact-image img {
  width: 100%;
  height: auto;
}

.contact-form {
  width: 50%;
}

.contact-form h2 {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

#thankYouMessage {
  margin-top: 20px;
  font-weight: bold;
  color: #007bff;
}

@media screen and (max-width: 768px) {
  .plans .card {
    width: calc(50% - 40px);
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-image,
  .contact-form {
    width: 100%;
    margin: 10px 0;
  }
}

@media screen and (max-width: 480px) {
  .plans .card {
    width: 100%;
    margin: 10px 0;
  }
  .gallery .images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
  .gallery img:hover {
    transform: scale(1.05); /* adjust the hover size  */
   box-shadow: 0 0 10px  rgb(255, 33, 33); /* adjust the shadow color  */
 }
 
}
footer{
  margin: 0;
  padding: 0%;
  margin-top: 100px;
}