   html {
      scroll-behavior: smooth;
    }

    body, html {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     /* background: #f5f5f5;*/
    }
    
    html {
  font-size: clamp(1rem, 2vw, 1.5rem);
}

    canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
     background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      z-index: 10;
      display: flex;
      justify-content: center;
      padding: 10px 0;
      backdrop-filter: blur(10px);
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: #0077ff;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #0055aa;
    }

    .accordion {
      max-width: 100%;
      margin: 0px auto 40px;
      padding: 0px 10px 10px 10px;
    /* background-color: rgba(255, 255, 255, 0.9);*/
      border-radius: 10px;
      /*box-shadow: 0 0 20px rgba(0,0,0,0.1);*/
    }

    summary {
      font-size: 1rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 16px;
      background-color: #e0e0e0;
      color: #333;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    details[open] summary {
      background-color: #d5d5d5;
    }

    .icon-wrapper {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    summary i.fa-icon {
      color: #0077ff;
      width: 20px;
      text-align: center;
    }

    summary i.toggle-arrow {
      color: #0077ff;
      transition: transform 0.3s ease;
    }

    details[open] summary i.toggle-arrow {
      transform: rotate(90deg);
    }

    details {
      background-color: #ffffff;
      border-radius: 6px;
      overflow: hidden;
      transition: all 0.4s ease;
    }

    details p {
      padding: 12px 16px;
      color: #444;
      border-top: 1px solid #ccc;
      margin: 0;
      animation: slideFade 0.4s ease-in-out;
    }

    @keyframes slideFade {
      from {
        opacity: 0;
        transform: translateY(-8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    /*Portfolio*/



/*Clients*/

.clients-list {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .client-link {
      display: block;
      padding: 10px;
      margin-bottom: 15px;
      background-color: #f4f4f4;
      border-radius: 8px;
      color: #333;
      text-decoration: none;
      font-family: 'Arial', sans-serif;
      transition: all 0.3s ease;
    }

    .client-link:hover {
      background-color: #3498db;
      color: #fff;
      transform: translateY(-5px);
    }

    .client-name {
      font-weight: bold;
      /*font-size: 1em;*/
    }

    .client-link:before {
      content: '🔗'; /* Optional icon */
      margin-right: 10px;
    }

    .clients-list li {
      margin-bottom: 10px;
    }

    /* Optional: Add shadow and border for a "card" effect */
    .client-link {
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .client-link:hover {
      box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }
    
    /*Portfolio*/
    
    .portblock-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: auto;
  
}

.portblock-wrapper
{
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
color: white;
}

.portblock-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.portblock-wrapper a:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.2);
}

.portblock-wrapper i {
  font-size: 1.2rem;
}

/*Services*/
.services {
  max-width: 900px;
  margin: 40px auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.services h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: #222;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-list li {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-left: 4px solid #007BFF;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s ease;
  font-size: 1rem;
  line-height: 1.3;
}

.service-list li:hover {
  background: #eef6ff;
}

.icon {
  flex-shrink: 0;
  margin-right: 12px;
  font-size: 1rem;
  color: #007BFF;
  line-height: 1.3;
}

.portblock-container,
.service-list,.alt-contact,
.trialwrap
{
  padding-bottom: 10px;
}

/*Bio*/

.bio-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 16px;
     /*padding: 2rem;*/
      max-width: 100%;
      width: 100%;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
      color: #333;
      animation: fadeIn 1s ease;
    }

    .bio-card p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .bio-card i {
      color: #007BFF;
      margin-right: 8px;
    }

    .link {
      color: #007BFF;
      text-decoration: none;
      font-weight: 500;
    }

    .link:hover {
      text-decoration: underline;
    }

    .download-link {
      font-size: 1rem;
      font-weight: 500;
      color: #007BFF;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      transition: all 0.3s ease;
      padding: 0 0 2rem 1rem;
    }

    .download-link i {
      margin-right: 6px;
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .download-link:hover {
      color: #0056b3;
      text-decoration: underline;
    }

    .download-link:hover i {
      transform: translateY(-2px);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /*Certification*/
    ul.cert-wrap {
max-width: 100%;
margin: auto;
padding: 0;
list-style: none;
}
.cert-wrap li {
background: #fff;
margin: 10px 0;
padding: 12px 16px;
border-radius: 6px;
display: flex;
align-items: center;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.cert-wrap i {
color: #007acc;
margin-right: 10px;
font-size: 1rem;
min-width: 24px;
text-align: center;
}
.cert-wrap a {
color: #005f99;
text-decoration: none;
font-weight: 500;
margin-left: 4px; 
}
.cert-wrap a:hover {
text-decoration: underline;
}

/*Courses*/

.course-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.course-list li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease;
}

.course-list li:hover {
  background-color: #f0f8ff;
}

.icon {
  font-size: 1rem;
  margin-right: 10px;
  color: #4caf50;
}

.course-list a {
  color: #0077b6;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-left: 5px;
}

.course-list a:hover {
  color: #005fa3;
}

.course-list li a {
  text-transform: capitalize;
}
.trialwrap {
            width: 90%;
            margin: 0 auto;
        }

        /* Grid Layout with two blocks per row */
        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);  /* Two columns per row */
            gap: 20px;
            margin-top: 20px;
        }

        .card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            font-size: 1.2rem;
            color: #333;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .card a {
            text-decoration: none;
            color: inherit;
        }

        .card i {
            margin-right: 10px;
            color: #4CAF50;
        }
        
         /*Collaboration*/
 
 collaboration-section {
   display: grid;
   gap: 1.5rem;
   max-width: 800px;
   margin: auto;
 }
 
 .collaboration-card {
   background-color: #f9f9f9;
   border-left: 6px solid #3b82f6;
   border-radius: 12px;
   padding: 1.5rem;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
 }
 
 .collaboration-card h3 {
   margin-top: 0;
   color: #1f2937;
   font-size: 1.25rem;
   margin-bottom: 0.75rem;
 }
 
 .collaboration-card ul {
   list-style: none;
   padding-left: 0;
   margin: 0;
 }
 
 .collaboration-card li {
   margin-bottom: 0.5rem;
   padding-left: 1.5rem;
   position: relative;
   color: #374151;
 }
 
 .collaboration-card li::before {
   content: '•';
   position: absolute;
   left: 0;
   color: #3b82f6;
   font-size: 1.25rem;
   line-height: 1;
 }
  .faq-container {
   max-width: 100%;
   margin: auto;
   background: #fff;
   border-radius: 12px;
   padding: 30px 40px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }
 
 .faq-item {
   border-bottom: 1px solid #eee;
   padding: 15px 0;
 }
 
 .faq-question {
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-weight: 600;
   cursor: pointer;
   color: #222;
   font-size: 1.05rem;
 }
 
 .faq-question i {
   color: #007bff;
   margin-right: 10px;
 }
 
 .faq-answer {
   margin-top: 10px;
   margin-left: 25px;
   color: #444;
   font-size: 0.98rem;
   line-height: 1.5;
   display: none;
 }
 
 .faq-answer.positive {
   color: #4caf50;
 }
 
 .faq-answer.negative {
   color: #e74c3c;
 }
 
 .faq-item.open .faq-answer {
   display: block;
 }
 
 .faq-item.open .toggle-icon {
   transform: rotate(180deg);
 }
 
 .toggle-icon {
   transition: transform 0.3s ease;
 }
 /*Payment*/

.method-list {
  list-style: none;
  padding: 0;
}

.method-list li {
  padding: 12px 16px;
  margin-bottom: 12px;
  background-color: #f0f4f8;
  border-radius: 8px;
  color: #333;
  transition: background-color 0.3s ease;
}

.method-list li:hover {
  background-color: #e1ebf4;
}

.method-name {
  font-weight: 600;
  font-size: 1rem;
}
/*Contact*/

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #111;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px #00f1ff44;
}
.contact-form h2 {
  text-align: center;
  color: #00f1ff;
}
.contact-form label {
  color: #ccc;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  background: #222;
  color: #fff;
}
.contact-form button {
  background: #00f1ff;
  color: #000;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}
.contact-form button:hover {
  background: #00c0d1;
}
.alt-contact {
  margin-top: 25px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
  justify-items: center;
}

/*Gallery*/
   .slider {
      position: relative;
      max-width: 100%;
      text-align: center;
      height: 450px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 0 20px rgba(255,255,255,0.1);
    }

    .slides {
      display: flex;
      transition: transform 0.5s ease-in-out;
      height: 100%;
    }

    .slides img {
      height: 100%;
      object-fit: contain;
      border-radius: 12px;
    }

    .nav {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0;
      pointer-events: none; /* Prevent accidental blocking */
    }

    .nav button {
      background: rgba(0,0,0,0.5);
      border: none;
      color: white;
      /*font-size: 2em;*/
      cursor: pointer;
      padding: 5px 10px;
      border-radius: 8px;
      transition: opacity 0.3s ease;
      pointer-events: all;
      opacity: 1;
    }

    .nav button.hidden {
      opacity: 0;
      pointer-events: none;
    }
    /*footer*/
    
.footer {
  width: 100%;
  text-align: center;
  padding: 10px 0 10px 0;
  background-color: #111;
  color: white;
  font-size: 1rem;
}

.footer a.footer-link {
  color: deepskyblue;
  text-decoration: none;
}

.footer a.footer-link:hover {
  text-decoration: underline;
}
/*header*/
header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5rem 1rem 1rem 1rem;
      position: relative;
      z-index: 2;
    }
    .logo {
     width: 100%;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: black;
      font-weight: bold;
      
    }
    .logo img
    {
      max-width: 300px;
      
    }
    .section {
      padding: 5rem 2rem 2rem 2rem;
      max-width: 100%
      margin: auto;
    }
  
.bug-toast {
    
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1000;
    animation: floatIn 1s ease forwards;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .bug-toast.hide {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
  }

  .bug-icon {
    font-size: 1.5rem;
    display: inline-block;
    animation: scurry 4s ease-in-out infinite;
  }

  .bug-toast strong {
    color: #000;
  }

  .close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.3s ease;
  }

  .close-btn:hover {
    color: #ff6b6b;
  }

  @keyframes floatIn {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes scurry {
    0%   { transform: translate(0, 0); }
    25%  { transform: translate(5px, 2px); }
    50%  { transform: translate(0px, 5px); }
    75%  { transform: translate(-5px, 3px); }
    100% { transform: translate(0, 0); }
  }