 :root {
      --primary: #00c4cc;
      --primary-dark: #009ea3;
      --bg-light: #fefefe;
      --bg-section: #f2f7f9;
      --text: #333;
      --text-muted: #777;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
	a{
		text-decoration:none;
	}
    body, html {
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--bg-light);
      color: var(--text);
      scroll-behavior: smooth;
    }

    header {
      background-color: #fff;
      padding: 1rem 2rem;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04);
      position: sticky;
      top: 0;
      z-index: 10000;
      display: flex;
      justify-content: space-between;
      align-items: center;
	   border-bottom: 1px solid #23c5c5;
    }

    .logo {
      font-size: 1.7rem;
      font-weight: bold;
      color: var(--primary-dark);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: var(--primary-dark);
    }

    nav a.signup {
      background-color: var(--primary);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-weight: 600;
      transition: background 0.3s;
    }

    nav a.signup:hover {
      background-color: var(--primary-dark);
    }

    .menu-toggle {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
    }

    .hero {
      background: linear-gradient(135deg, var(--primary), #00b1ba);
      color: white;
      padding: 4rem 2rem;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .hero button {
      padding: 0.75rem 2rem;
      background-color: #fff;
      color: var(--primary-dark);
      border: none;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
    }

    .hero button:hover {
      background-color: #f1f1f1;
      transform: translateY(-2px);
    }

    .categories {
      background-color: var(--bg-section);
      padding: 2rem 2rem;
      text-align: center;
    }

    .categories h2 {
      font-size: 2rem;
      margin-bottom: 2.5rem;
      color: var(--primary-dark);
    }
	.category-card-link{
	text-decoration: none;
    color: #000;
	}
    .category-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      justify-content: center;
    }

    .category-card {
      background-color: white;
      padding: 1.8rem;
      width: 220px;
      border-radius: 16px;
      box-shadow: 0 6px 14px rgba(0,0,0,0.06);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
      cursor: pointer;
    }

    .category-card i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 0.6rem;
    }

    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    }

    .footer {
	 background: #152c41;
	 padding:10px;
    }
	.footer-ul{
	padding-left:10px;
	list-style-type:none;
}
.footer-ul li{
	float:none;
	margin-right: 10px;
	
}
.footer-ul li > .ftr-a{
	font-family: Helvetica;
	letter-spacing: 0.7px;
	line-height: 1.5;
	 text-decoration:none;
	 font-size: 15px;
	 color: #e8e8e8;
}
	
.ftr-a{
	color:#fff;
}
.footer-ul li{
	float:left;
	margin-right: 10px;
}
.footer-ul li > .ftr-a{
	
	font-family: Helvetica;
	letter-spacing: 0.7px;
}
.cb{
	clear:both;
}
.cpyrght {
color: #ccc8c8;
}
	.logo-link{
		text-decoration:none;
		color: var(--primary-dark);
	}
	 @media (max-width: 992px) {
		 header{
			 display:block;
		 }
		 .logo{
			 text-align:center;
		 }
		 nav{
			display: block;
			margin-top: 10px;
			width: 100%;
		 }
		 nav ul {
			justify-content: center;
		}
	 }
    @media (max-width: 768px) {
		header{
			 display:flex;
		 }
		 nav{
			 display:flex;
			
		 }
      nav ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 1rem;
        width: 200px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      }

      nav ul.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }

    @media (max-width: 600px) {
      .category-card {
        width: 100%;
      }

      .hero h1 {
        font-size: 2.3rem;
      }
	      .footer {
        width: 100%;
        min-height: 30px;
        background: #152c41;
        clear: both;
        padding: 10px;
		}
.footer-ul li{
	float:none;
	margin-right: 10px;
}
	
      .category-card {
        width: 220px;
      }
    }