
  
.edufy-about-section {
      padding: 80px 10% 60px;
      color: #fff;
      max-width: 900px;
    }

    .edufy-about-section h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      margin-top: 100px;
    }

    .edufy-about-section p {
      font-size: 1.1rem;
      line-height: 1.6;
      color: #ccc;
    }

    /* Breadcrumb */
    .edufy-breadcrumb {
      margin-top: 40px;
      font-size: 0.95rem;
     
    }

    .edufy-breadcrumb a {
      color: #00e5ff;
      text-decoration: none;
    }

    .edufy-breadcrumb a:hover {
      text-decoration: underline;
    }

    .edufy-breadcrumb span {
      color: #ccc;
      margin: 0 8px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .edufy-header {
        flex-direction: column;
        gap: 15px;
      }

      /* Hide navbar on mobile */
      .edufy-nav {
        display: none;
      }

      .edufy-btn {
        margin-top: 10px;
      }

      .edufy-about-section {
        padding: 60px 8% 40px;
        text-align: center;
      }

      .edufy-about-section h1 {
        font-size: 2.2rem;
      }

      .edufy-about-section p {
        font-size: 1rem;
      }
    }
    section.about {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 10%;
      gap: 40px;
      flex-wrap: wrap;
          
    }

    .about-text {
      flex: 1 1 500px;
    }

    .about-text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      color: #efefef;
    }

    .about-text h3 {
      font-size: 1.5rem;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .highlight {
      color: #00e5ff; /* different color for CloudEdufy */
    }

    .about-text p {
      margin-bottom: 15px;
      line-height: 1.6;
      color: #e3e3e3;
    }

    .read-more {
      background: #00e5ff;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 600;
      color: #fff;
      transition: 0.3s ease;
    }

    .read-more:hover {
      background: #0E0A2C;
      color: #fff;
    }

    .more-text {
      display: none;
      margin-top: 20px;
    }

    .about-img {
      flex: 1 1 400px;
      text-align: center;
    }

    .about-img img {
      max-width: 100%;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Responsive */
    @media (max-width: 992px) {
      section.about {
        padding: 40px 8%;
      }
    }

    @media (max-width: 768px) {
      section.about {
        flex-direction: column;
        text-align: center;
      }

      .about-text {
        order: 2;
      }

      .about-img {
        order: 1;
      }

      .about-text h2 {
        font-size: 1.8rem;
      }

      .about-text h3 {
        font-size: 1.3rem;
      }
    }

    

    /* ===== SECTION HEADING ===== */
    .values-section {
      padding: 60px 8%;
      text-align: center;
    }

    .values-circle-heading {
      display: inline-block;
      border: 3px solid #00e5ff;
      border-radius: 50%;
      padding: 20px 40px;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #fff;
    }

    .values-subheading {
      font-size: 1.4rem;
      margin-bottom: 50px;
    }

    .values-subheading .highlight {
      color: #00e5ff;
      font-weight: 600;
    }

    /* ===== VALUE CARDS ===== */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    .value-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 25px;
      text-align: left;
      backdrop-filter: blur(12px);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .value-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 8px 30px rgba(0, 229, 255, 0.25);
      border-color: #00e5ff;
    }

    .value-card h3 {
      font-size: 1.2rem;
      margin-bottom: 12px;
      color: #00e5ff;
    }

    .value-card p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #ddd;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .values-circle-heading {
        font-size: 1.4rem;
        padding: 15px 30px;
      }

      .values-subheading {
        font-size: 1.1rem;
      }

      .value-card h3 {
        font-size: 1rem;
      }

      .value-card p {
        font-size: 0.9rem;
      }
    }
  
    

    /* ===== SECTION ===== */
    .vision-section-container {
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .vision-header-box {
      text-align: center;
      margin-bottom: 40px;
    }

    .vision-title-main {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #00e5ff;
    }

    .vision-subtitle-text {
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 500;
    }

    .vision-intro-text {
      font-size: 1rem;
      max-width: 800px;
      margin: 0 auto;
      color: #dcdcdc;
    }

    .vision-intro-text .vision-highlight {
      color: #00e5ff;
      font-weight: 600;
    }

    /* ===== GRID ===== */
    .vision-grid-layout {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
    }

    /* ===== CARDS ===== */
    .vision-card-box {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 25px;
      text-align: left;
      transition: all 0.4s ease;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .vision-card-box h3 {
      font-size: 1.3rem;
      margin-bottom: 12px;
      color: #00e5ff;
    }

    .vision-card-box p {
      font-size: 0.95rem;
      color: #eaeaea;
    }

    /* Hover Polymorphic Effect */
    .vision-card-box:hover {
      transform: translateY(-10px) scale(1.03);
      background: rgba(0, 229, 255, 0.1);
      border: 1px solid #00e5ff;
      box-shadow: 0 8px 20px rgba(0,229,255,0.3);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .vision-title-main {
        font-size: 2rem;
      }

      .vision-subtitle-text {
        font-size: 1.1rem;
      }

      .vision-card-box {
        padding: 20px;
      }
    }

    @media (max-width: 480px) {
      .vision-title-main {
        font-size: 1.8rem;
      }

      .vision-intro-text {
        font-size: 0.9rem;
      }

      .vision-card-box h3 {
        font-size: 1.1rem;
      }
    }

    /* ===== Section Wrapper ===== */
    .aws-training-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 50px 10%;
      gap: 40px;
      flex-wrap: wrap;
    }

    /* ===== Left Image ===== */
    .aws-training-image {
      flex: 1;
      min-width: 280px;
      text-align: center;
    }

    .aws-training-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    }

    /* ===== Right Text ===== */
    .aws-training-content {
      flex: 1;
      min-width: 280px;
    }

    .aws-training-content h2 {
      font-size: 18px;
      margin-bottom: 10px;
      color: #f7f7f7;
    }

    .aws-training-content h3 {
      font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
    margin-top: 20px;
    }

    .aws-training-content h3 .aws-highlight {
      color: #ff9900; /* AWS brand orange */
    }

    .aws-training-content p {
      font-size: 16px;
      line-height: 1.6;
      color: #dedede;
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 992px) {
      .aws-training-section {
        padding: 40px 5%;
        gap: 30px;
      }
    }

    @media (max-width: 768px) {
      .aws-training-section {
        flex-direction: column;
        text-align: center;
      }

      .aws-training-content h2 {
        font-size: 24px;
      }

      .aws-training-content h3 {
        font-size: 20px;
      }

      .aws-training-content p {
        font-size: 15px;
      }
    }
  

    /* Section */
    .aws-courses-section {
      padding: 60px 8%;
      text-align: center;
    }

    .aws-courses-section h2 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #f2f2f2;
    }

    .aws-courses-section h3 {
     font-size: 32px;
    margin-bottom: 80px;
    font-weight: 600;
    }

    .aws-courses-section h3 .aws-course-highlight {
      color: #00e5ff; /* AWS orange */
    }

    /* Grid Layout */
    .aws-courses-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }

    /* Card */
    .aws-course-card {
      background: rgba(255, 255, 255, 0.05);;
      border-radius: 12px;
      padding: 60px 20px 20px; /* extra top padding for floating image */
      position: relative;
      text-align: left;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .aws-course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Floating Image */
    .aws-course-card img {
      width: 110px;
      height: 110px;
      object-fit: contain;
      position: absolute;
      top: -45px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 50%;
      background: #fff;
      padding: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /* Number */
    .aws-course-number {
      font-size: 20px;
      font-weight: bold;
      color: #00e5ff;
      margin-bottom: 10px;
    }

    /* Title */
    .aws-course-title {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
    }

    /* Description */
    .aws-course-description {
      font-size: 15px;
      line-height: 1.6;
      color: #dfdede;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .aws-courses-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .aws-courses-grid {
        grid-template-columns: 1fr;
      }
      .aws-courses-section h2 {
        font-size: 26px;
      }
      .aws-courses-section h3 {
        font-size: 20px;
      }
    }




.faq-container {
  max-width: 700px;
  margin: auto;
}

.faq {
  background: #efefef;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  transition: background 0.3s;
  background: #02081700;
  
}



.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}

.faq.active .faq-answer {
  padding: 20px;
  padding-bottom: 70px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 24px;
  transition: transform 0.3s;
}

.faq.active .faq-question::after {
  transform: rotate(45deg);
}


    /* --- Unique class namespace: pcu_ --- */
    

    .pcu_grid {
      display: grid;
      gap: 22px;
      max-width: 1200px;
      margin: 0 auto;
      grid-template-columns: repeat(3, 1fr); /* desktop default */
    }

    .pcu_card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 26px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(2,6,23,0.06);
      transition: transform .18s ease, box-shadow .18s ease;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
    }

    .pcu_card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 30px rgba(2,6,23,0.10);
    }

    /* Keep SVG exactly as provided inside wrapper; size by CSS */
    .pcu_icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 72px;
      height: 72px;
      border-radius: 12px;
      /* subtle neutral bg to sit behind bright SVG fills */
      background: white;
      padding: 6px;
    }
    .pcu_icon svg {
      width: 64px;
      height: 64px;
      display: block;
    }

    .pcu_title {
      margin: 0;
      font-size: 1.08rem;
      font-weight: 700;
      color: white;
    }

    .pcu_text {
      margin: 0;
      font-size: 0.95rem;
      color: #dadada;
      line-height: 1.45;
    }

    /* Responsive breakpoints */
    @media (max-width: 1024px) {
      .pcu_grid {
        grid-template-columns: repeat(2, 1fr); /* tablet */
      }
    }

    @media (max-width: 600px) {
      .pcu_grid {
        grid-template-columns: 1fr; /* mobile */
      }
      .pcu_card {
        padding: 18px;
        min-height: auto;
      }
      .pcu_icon {
        width: 60px;
        height: 60px;
      }
      .pcu_icon svg {
        width: 48px;
        height: 48px;
      }
    }



    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 60px;
      /* bigger gap so avatars don’t collide */
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 100px;
    }


    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      /* adds frosted glass effect */
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
      padding: 30px 20px 70px;
      position: relative;
      text-align: center;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* Initial hidden state */
    .testimonial-card {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Visible state when scrolled into view */
    .testimonial-card.visible {
      opacity: 1;
      transform: translateY(0);
    }


    .testimonial-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    }

    .testimonial-name {
      font-size: 1.25rem;
      font-weight: bold;
      color: #f5f5f5;
      margin-bottom: 6px;
    }

    .testimonial-role {
      font-size: 0.95rem;
      font-weight: 600;
      color: #dbdbdb;
      margin-bottom: 15px;
    }

    .testimonial-quote svg {
      width: 28px;
      height: 28px;
      fill: #00e5ff;
      margin-bottom: 10px;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: #d4d4d4;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .testimonial-stars {
      display: flex;
      justify-content: center;
      gap: 4px;
      margin-bottom: 20px;
    }

    .testimonial-stars svg {
      width: 22px;
      height: 22px;
      fill: #facc15;
    }

    .testimonial-avatar {
      position: absolute;
      bottom: -45px;
      left: 50%;
      transform: translateX(-50%);
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 5px solid #fff;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
      background-size: cover;
      background-position: center;
    }

    /* Media Queries */
    @media (max-width: 992px) {
      .testimonial-grid {
        gap: 70px;
        /* extra space between cards on tablets */
      }
    }

    @media (max-width: 600px) {
      .testimonial-grid {
        gap: 80px;
        /* extra space between stacked cards on mobile */
      }

      .testimonial-card {
        padding: 20px 15px 65px;
      }

      .testimonial-name {
        font-size: 1.1rem;
      }

      .testimonial-role {
        font-size: 0.9rem;
      }

      .testimonial-text {
        font-size: 0.9rem;
      }

      .testimonial-avatar {
        width: 80px;
        height: 80px;
        bottom: -40px;
      }
    }
