nav ul li{
    float: right;
    margin: 5px;
    padding: 5px 15px;
    border-radius: 5px;
    background: white;
    width: 10%;
    list-style: none;
    text-align: center;
    margin-top: 40px;
    margin-right: 25px;
    transition: all 0.3s ease; /* Smooth effect */
  transform: scale(1);       /* Default scale */



}
nav{
	background-image:url("upper bg img.jpg") ;
	border-radius: 30px;
	height: 110px;

}



nav ul li:hover {
  background: white;
  border: 2px solid black;
  transform: scale(1.1); /* Makes it 10% bigger (~4–5px visually) */
}

.section-title{
	text-align: center;
	margin-top: 100px;
	font-size: 40px;
}
.plan-card{
	  float: left;
	  margin: 100px;
    padding: 5px 15px;
    border-radius: 18px;
    background:lightblue;
    width: 10%;
    list-style: none;
    text-align: center;
    margin-right: 100px;
width: 200px;
height: 350px;
}
.logo{
 width: 135px;
 height: 135px;
 border-radius: 23px;
}
ul{
	list-style: none;
}

.about{
    text-align: center;
}
.about-para{
    text-align: center;
    margin-left: 280px;
    margin-right: 280px;
    padding: 10px 10px;
}





/* Container */
.fioroo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Title */
.fioroo-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #222;
}

/* Grid Layout */
.fioroo-plan-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* Plan Card */
.fioroo-plan-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  padding: 30px 25px;
  text-align: center;
  flex: 1 1 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fioroo-plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* Highlighted (Featured) Plan */
.fioroo-featured {
  border: 2px solid #007bff;
  background-color: #eaf5ff;
}

/* Plan Details */
.fioroo-plan-name {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 10px;
}

.fioroo-plan-price {
  font-size: 28px;
  font-weight: bold;
  color: #111;
  margin: 20px 0;
}

.fioroo-plan-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.fioroo-plan-features li {
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

/* Button */
.fioroo-btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.fioroo-btn:hover {
  background-color: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .fioroo-plan-grid {
    flex-direction: column;
    align-items: center;
  }

  .fioroo-plan-card {
    width: 100%;
    max-width: 500px;
  }
}

.header-background{
    height: 70px;
    background-image: url("upper bg img.jpg");
    text-align: center;
}



/*Fooooter CSS Main Start*/
  

    footer {
      background-color: #2C3E50;
      color: #fff;
      padding: 40px 20px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
    }

    .about, .links, .contact {
      flex: 1;
      margin: 10px;
    }

    .about h3, .links h3, .contact h3 {
      color: #F39C12;
      font-size: 1.4em;
      margin-bottom: 15px;
    }

    .about p {
      font-size: 0.9em;
      line-height: 1.6;
    }

    .links ul, .contact ul {
      list-style-type: none;
    }

    .links ul li, .contact ul li {
      margin-bottom: 10px;
    }

    .links ul li a, .contact ul li a {
      color: #bdc3c7;
      text-decoration: none;
      font-size: 1.1em;
    }

    .links ul li a:hover, .contact ul li a:hover {
      color: #F39C12;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: #fff;
      text-decoration: none;
      font-size: 1.5em;
    }

    .social-icons a:hover {
      color: #F39C12;
    }

    .footer-bottom {
      width: 100%;
      text-align: center;
      margin-top: 20px;
      font-size: 0.8em;
      color: #bdc3c7;
    }


/*Fooooter CSS Main End*/







/*BloG CSS Start*/

 :root {
      --primary-color: #2b2d42;
      --secondary-color: #8d99ae;
      --bg-color: #edf2f4;
      --card-bg: #fff;
      --text-color: #2b2d42;
      --accent-color: #ef233c;
    }

    body {
      color: var(--text-color);
    }

    header {
      background: var(--primary-color);
      color: #fff;
      padding: 2rem 1rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
    }

    header p {
      font-size: 1.1rem;
      color: var(--secondary-color);
    }

    .blog-container {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 0 1rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .blog-post {
      background-color: var(--card-bg);
      padding: 1.5rem;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-post:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .blog-post h2 {
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--primary-color);
    }

    .blog-post p {
      font-size: 0.95rem;
      color: #555;
    }

    .read-more {
      display: inline-block;
      margin-top: 1rem;
      color: var(--accent-color);
      text-decoration: none;
      font-weight: bold;
    }

    .read-more:hover {
      text-decoration: underline;
    }



    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
    }
    
    
    
    
    
    
    
    
    .hero{
		  background: linear-gradient(
    to bottom,
    #4a90e2,     /* Bluish */
    #6ec6ff,     /* Light Blue */
    #a5d8ff,     /* Sky Blue */
    #dcefff,     /* Very Light Blue */
    #ffffff      /* White at the bottom */
  );
  margin: 0;
	}

	.top-heading {
  animation: blinkWhiteYellow 1.5s infinite alternate ease-in-out;
  color: white; /* initial color */
}

@keyframes blinkWhiteYellow {
  0% {
    color: white;
  }
  100% {
    color: yellow;
  }
}
