* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Segoe UI", sans-serif;
    }

    body {
      background: #dddddd;
      background-size: 400% 400%;
      animation: adcaGradient 10s ease infinite;
      overflow-x: hidden;
    }

    :root {
      --color-primary: #ff7a00;
      --color-secondary: #5a5f7c;
    }

    @keyframes adcaGradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* PARTICLES */
    #adca-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    /* LAYOUT */
    .adca-wrapper {
      padding: 60px 20px;
      padding-top: 150px;
    }

    .adca-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      gap: 40px;
      align-items: center;
      justify-content: space-between;
    }

    /* LEFT */
    .adca-left {
      flex: 1;
    }



    .adca-title {
      font-size: 42px;
      font-weight: 700;
      color: #111827;

    }

    .adca-title span {
      color: #6c63ff;
      background: linear-gradient(270deg, #1f3c88, #2e86c1, #f39c12, #e67e22);
      background-size: 400% 400%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradientText 6s ease infinite;
    }

    @keyframes gradientText {
      0% {
        background-position: 0%
      }

      50% {
        background-position: 100%
      }

      100% {
        background-position: 0%
      }
    }


    .adca-description {
      margin: 20px 0;
      color: #555;
      line-height: 1.6;
    }

    .adca-features {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 25px;
      font-size: 14px;
    }

    /* BUTTONS */
    .adca-buttons {
      display: flex;
      gap: 15px;
    }

    .adca-btn-primary,
    .adca-btn-full {
      background: #f39c12;
      color: white;
      border: none;
      padding: 12px 30px;
      border-radius: 50px;
      cursor: pointer;
      transition: 0.3s;
    }

    .adca-btn-primary:hover,
    .adca-btn-full:hover {
      /* box-shadow: 0 0 20px rgba(108, 99, 255, 0.6); */
      background: linear-gradient(270deg, #1f3c88, #e67e22);
      transform: translateY(-2px);
    }

    .adca-btn-secondary {
      border: 1px solid #e67e22;
      background: transparent;
      color: #e67e22;
      padding: 12px 22px;
      border-radius: 8px;
      cursor: pointer;
    }

    /* CARD */
    .adca-card {
      flex: 0.9;
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      transition: 0.4s;
      width: 100%;
      max-width: 440px;
    }

    .adca-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    }

    .adca-price {
      font-size: 32px;
      font-weight: bold;
    }

    .adca-subtext {
      color: #777;
      margin-bottom: 20px;
    }

    .adca-divider {
      height: 1px;
      background: #eee;
      margin: 20px 0;
    }

    .adca-card-list li {
      margin-bottom: 12px;
    }

    /* ANIMATION */
    .adca-animate {
      opacity: 0;
      transform: translateY(40px);
      animation: fadeUp 0.8s ease forwards;
    }

    .adca-animate.delay {
      animation-delay: 0.3s;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .adca-container {
        flex-direction: column;
        /* text-align: center; */
      }
    }

    .acad-wrapper {
      padding: 60px 20px;
      background: #f7f8fc;
    }

    .acad-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      gap: 30px;
    }

    /* LEFT */
    .acad-left {
      flex: 2;
    }

    .acad-badge {
      background: #e3ecff;
      color: #2d5bff;
      padding: 8px 14px;
      border-radius: 20px;
      font-size: 12px;
      display: inline-block;
      margin-bottom: 20px;
    }

    .acad-title {
      font-size: 40px;
      font-weight: 700;
      color: #0f172a;
    }

    .acad-title span {
      color: #6c63ff;
    }

    .acad-desc-box {
      background: white;
      padding: 25px;
      border-radius: 14px;
      margin-top: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .acad-desc-box p {
      color: #555;
      margin-bottom: 15px;
    }

    /* FEATURES */
    .acad-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      margin-top: 20px;
    }

    .acad-card {
      padding: 18px;
      border-radius: 12px;
      background: #f9fafc;
    }

    .acad-blue {
      border-left: 4px solid #3b82f6;
    }

    .acad-green {
      border-left: 4px solid #22c55e;
    }

    .acad-yellow {
      border-left: 4px solid #f59e0b;
    }

    .acad-purple {
      border-left: 4px solid #8b5cf6;
    }

    /* RIGHT */
    .acad-right {
      flex: 1;
    }

    .acad-learn,
    .acad-tools {
      background: white;
      padding: 20px;
      border-radius: 14px;
      margin-bottom: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    }

    .top {
      margin-top: 172px;
    }

    .acad-learn ul {
      list-style: none;
    }

    .acad-learn li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
    }

    /* TAGS */
    .acad-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .acad-tags span {
      border: 1px solid #d1d5db;
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 13px;
      background: #f9fafb;
    }

    /* BOTTOM STRIP */




    /* RESPONSIVE */
    @media (max-width: 900px) {
      .acad-container {
        flex-direction: column;
      }

      .acad-features {
        grid-template-columns: 1fr;
      }


    }

    .details {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .details span {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 15px;
      color: #555;
      border-bottom: 1px solid #eee;
      padding-bottom: 8px;
    }

    .details strong {
      color: #111;
      font-weight: 600;
    }

    /* .details {
      display: flex;
      flex-direction: column;
      gap: 15px;
      font-size: 14px;
      color: #475569;
    }

    .details span strong {
      color: #0f172a;
    } */
    .features {
      display: flex;
      gap: 20px;
      margin: 20px 0;
      flex-wrap: wrap;
    }

    .features div {
      font-size: 14px;
      color: #333;
    }

    /* MAIN BAR */
    .cad-feature-bar {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      background: #fff;
      border-radius: 14px;
      padding: 16px 10px;
      box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin: auto;
      margin-top: 30px;
    }

    /* ITEM */
    .cad-feature-item {
      flex: 1;
      text-align: center;
      position: relative;
      padding: 12px 8px;
      transition: 0.3s;
    }

    /* DIVIDER */
    .cad-feature-item:not(:last-child)::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: #e5e7eb;
    }

    /* ICON */
    .cad-icon svg {
      width: 28px;
      height: 28px;
      display: block;
      margin: 0 auto 8px;
    }

    /* TEXT */
    .cad-feature-item p {
      font-size: 13px;
      color: #2f3a4a;
      line-height: 1.3;
      font-weight: 500;
    }

    /* HOVER */
    .cad-feature-item:hover {
      background: #fafafa;
      border-radius: 10px;
    }

    /* 📱 TABLET */
    @media (max-width: 992px) {
      .cad-feature-bar {
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px;
      }

      .cad-feature-item {
        flex: 0 0 30%;
        background: #fff;
        border-radius: 10px;
      }

      .cad-feature-item::after {
        display: none;
      }

      .top {
        margin-top: 22px;
      }
    }

    /* 📱 MOBILE */
    @media (max-width: 576px) {
      .cad-feature-item {
        flex: 0 0 48%;
      }

    }

   

    /* HEADER */
    .acx-header {
      width: 100%;
      background: transparent;
      border: none;
      padding: 18px 20px;
      text-align: left;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      position: relative;
    }

    /* ARROW */
    .acx-header::after {
      content: "›";
      position: absolute;
      right: 20px;
      font-size: 22px;
      transform: rotate(0deg);
      transition: 0.3s;
    }

    /* ACTIVE */
    .acx-module.active .acx-header::after {
      transform: rotate(90deg);
    }

    /* CONTENT */
    .acx-content {
      max-height: 0;
      overflow: hidden;
      background: #fafafa;
      transition: all 0.4s ease;
    }

    /* LIST */
    .acx-content ul {
      padding: 15px 25px 20px;
      list-style: none;
      /* 🔥 ye line important hai */
      margin: 0;
    }

    .acx-content li {
      margin: 10px 0;
      font-size: 16px;
      color: #444;
      position: relative;
      padding-left: 18px;
    }

    /* BULLET */
    .acx-content li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 6px;
      height: 6px;
      background: #e53935;
      border-radius: 50%;
    }

    /* RESPONSIVE */
    @media (max-width:768px) {
      .acx-title {
        font-size: 24px;
      }
      .acad-title {
    font-size: 30px;
  }
      .acx-header {
        font-size: 15px;
        padding: 15px;
      }
      .adca-title {
    font-size: 28px;
  }
    }
    

@media (max-width: 480px) {
  .acad-title {
    font-size: 24px;
  }
  .adca-title {
    font-size: 24px;
  }
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.apply-form button {
  margin-top: 10px;
}
