.added {
    background-color: blue;
}

:root {
      --primary: #4361ee;
      --primary-light: #4895ef;
      --primary-lighter: #4cc9f0;
      --secondary: #3a0ca3;
      --accent: #f72585;
      --success: #4ade80;
      --warning: #f59e0b;
      --dark: #1a1b27;
      --darker: #0f1018;
      --light: #f2f8f8;
      --lighter: #f8faf8;
      --gray: #6c757d;
      --gray-light: #f8f6f7;
    }
    header {
  background-color: #f5f5f5;
  padding: 10px 20px;
  position: relative;
}

.header-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-left {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.logo-left img {
  width: 80px;
  height: auto;
}

.header-text-center {
  text-align: center;
}

.header-text-center h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-text-center p {
  margin: 0;
  font-size: 1rem;
  color: #666;
}

   
     /* Reset & base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

     body {
      font-family: 'Inter', sans-serif;
      background-color: var(--light);
      color: var(--dark);
      min-height: 100vh;
      line-height: 1.6;

    }

  /* Header */
    header {
      padding: 2rem 1rem;
      text-align: center;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      color: rgb(252, 251, 251);
      position: relative;
      overflow: hidden;
    }

    header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
    }
 

    header h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      position: relative;
    }

   
    header p {
      font-size: 1.2rem;
      font-weight: 300;
      opacity: 0.9;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
    }

   /* Navigation */
    nav {
      background-color: var(--lighter);
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo i {
      font-size: 1.8rem;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .menu-toggle:hover {
      transform: scale(1.1);
    }
    .banner{
      border-image: round;
    }
    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    nav a {
      color: var(--dark);
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
    }

    nav a:not(.portal-link):hover {
      color: var(--primary);
    }

    nav a:not(.portal-link)::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    nav a:not(.portal-link):hover::after {
      width: 100%;
    } 

     .portal-link {
      background: linear-gradient(to right, var(--primary), var(--primary-light));
      color: white !important;
      padding: 0.6rem 1.5rem;
      border-radius: 30px;
      font-weight: 600;
      box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
      transition: all 0.3s ease;
    }

    .portal-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(67, 97, 238, 0.4);
      background: linear-gradient(to right, var(--primary-light), var(--primary));
    }

    /* Main content */
    main {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Hero Section */
    .hero {
      /*background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(72, 149, 239, 0.1));
     background-image: url(banner.jpg);*/
      text-align: center;
      padding: 4rem 2rem;
      margin: 2rem auto;
      border-radius: 16px;
      border: 1px solid rgba(67, 97, 238, 0.2);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%);
      animation: rotate 20s linear infinite;
      z-index: -1;
    }

    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--dark);
      font-weight: 700;
    }

    .hero p {
      font-size: 1.1rem;
      line-height: 1.7;
      max-width: 700px;
      margin: 0 auto 2.5rem;
      color: var(--gray);
    }

    .btn-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      background: linear-gradient(to right, var(--primary), var(--primary-light));
      color: rgb(243, 247, 243);
      padding: 0.8rem 2rem;
      border: none;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(67, 97, 238, 0.3);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: (0 8px 25px rgb67, 97, 238, 0.4);
      background: linear-gradient(to right, var(--primary-light), var(--primary));
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      box-shadow: none;
    }

    .btn-outline:hover {
      background: rgba(67, 97, 238, 0.1);
      color: var(--primary);
      border-color: var(--primary);
    }

    .btn-accent {
      background: linear-gradient(to right, var(--accent), #f7559a);
    }

    .btn-accent:hover {
      background: linear-gradient(to right, #f7559a, var(--accent));
      box-shadow: 0 8px 25px rgba(247, 37, 133, 0.4);
    }

    /* Sections */
    .section {
      background-color: var(--lighter);
      border-radius: 16px;
      padding: 3rem 2rem;
      margin: 0 auto 3rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--gray-light);
    }

    .section h3 {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
      color: var(--dark);
      font-weight: 700;
      position: relative;
    }

    .section h3::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--accent));
      border-radius: 2px;
    }

    /* Cards */
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .card {
      background-color: var(--lighter);
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.4s ease;
      border: 1px solid var(--gray-light);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--primary), var(--accent));
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .card h4 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: var(--dark);
      font-weight: 600;
    }

    .card p {
      font-size: 0.95rem;
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    .card-icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    /* Features */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .feature {
      text-align: center;
      padding: 1.5rem;
      background-color: var(--lighter);
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      border: 1px solid var(--gray-light);
    }

    .feature:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 1rem;
    }

    .feature h4 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--dark);
    }

    .feature p {
      color: var(--gray);
      font-size: 0.95rem;
    }

    /* Stats */
    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .stat-item {
      text-align: center;
      padding: 1.5rem;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: var(--gray);
      font-size: 1rem;
    }

    /* Testimonials */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .testimonial {
      background-color: var(--lighter);
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--gray-light);
    }

    .testimonial-content {
      font-style: italic;
      color: var(--gray);
      margin-bottom: 1rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: var(--primary-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgb(248, 250, 249);
      font-weight: bold;
    }

    .author-info h5 {
      color: var(--dark);
      margin-bottom: 0.2rem;
    }

    .author-info p {
      color: var(--gray);
      font-size: 0.8rem;
    }

    /* Footer */
    footer {
      background-color: var(--darker);
      color: var(--light);
      padding: 4rem 1rem 2rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .footer-column h4 {
      color: rgb(243, 245, 243);
      margin-bottom: 1.5rem;
      font-size: 1.2rem;
      position: relative;
      padding-bottom: 0.5rem;
    }

    .footer-column h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--primary-light);
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-column a:hover {
      color: var(--primary-light);
    }

    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .social-links a {
      color: white;
      background: rgba(255, 255, 255, 0.1);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .copyright {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
      header h1 {
        font-size: 2.5rem;
      }
      
      .hero h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
      }
      
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem 0;
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .menu-toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 1rem;
      }
      
      .btn-group {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
      }
    }

    @media (max-width: 576px) {
      header h1 {
        font-size: 2rem;
      }
      
      header p {
        font-size: 1rem;
      }
      
      .hero h2 {
        font-size: 1.8rem;
      }
      
      .section h3 {
        font-size: 1.6rem;
      }
    }

    
