.bg {
     
      background-image: url('images/bg3.jpeg');
      overflow-x: hidden;
    }

    .hero-section {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      padding: 60px 15px;
    }

    .badge-top {
    
      background-color: #ebe3ff;
      color: #5D2EFF;
      font-size: 14px;
      font-weight: 500;
      border-radius: 20px;
      padding: 6px 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 20px;
      animation: fadeIn 1.5s ease-in-out;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 700;
      color: #000;
      animation: fadeInDown 1s ease-in-out;
    }

    .hero-desc {
      font-size: 16px;
      color: #555;
      margin-top: 15px;
      margin-bottom: 30px;
      animation: fadeIn 1.5s ease-in-out;
    }

    .btn-primary-custom {
      background-color: #5D2EFF;
      color: #fff;
      font-weight: 600;
      border-radius: 30px;
      padding: 10px 22px;
      margin-right: 15px;
      transition: 0.3s;
    }

    .btn-outline-custom {
      border: 2px solid #5D2EFF;
      color: #5D2EFF;
      font-weight: 600;
      border-radius: 30px;
      padding: 10px 22px;
      background: transparent;
      transition: 0.3s;
    }

    .btn-outline-custom:hover {
      background: #5D2EFF;
      color: #fff;
    }

    .hero-img {
      max-width: 100%;
      animation: fadeInRight 1.5s ease-in-out;
      position: relative;
      z-index: 2;
    }

    /* Floating elements */
    .floating-icon {
      position: absolute;
      z-index: 1;
    }

    .icon-top-left {
      top: 20px;
      left: 20px;
      animation: floatBounce 6s infinite ease-in-out;
    }

    .icon-top-right {
      top: 50px;
      right: 80px;
      animation: floatBounce 5s infinite ease-in-out;
    }

    .icon-bottom-left {
      bottom: 40px;
      left: 40px;
      animation: floatBounce 7s infinite ease-in-out;
    }

    .stat-box {
      position: absolute;
      bottom: 80px;
      left: 55%;
      background: #fff;
      padding: 15px 20px;
      border-radius: 12px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      font-size: 13px;
      animation: fadeInUp 2s ease-in-out;
    }

    .stat-box strong {
      color: #5D2EFF;
    }

    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes floatBounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-15px); }
    }

    @media (max-width: 768px) {
      .hero-title {
        font-size: 32px;
      }
      .hero-section {
        text-align: center;
        padding-top: 100px;
      }
      .stat-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 30px;
      }
    }
    /* about */
     /* body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #fef3fc, #e8fff6);
      overflow-x: hidden;
    } */

    .hero-section {
      padding: 80px 20px;
      position: relative;
      animation: fadeInUp 1.5s ease;
    }

    .circle-img {
      width: 240px;
      height: 240px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      animation: zoomIn 1.3s ease;
    }

    .hero-title {
      font-size: 2.5rem;
      font-weight: bold;
      color: #111;
      animation: slideFadeIn 1s ease;
    }

    .hero-text {
      font-size: 16px;
      color: #555;
      margin-top: 10px;
      animation: slideFadeIn 1.5s ease;
    }

    .learn-btn {
      margin-top: 25px;
      background: #5D2EFF;
      color: #fff;
      border-radius: 30px;
      font-weight: 600;
      padding: 10px 24px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: 0.3s ease-in-out;
      animation: fadeIn 2s ease;
    }

    .learn-btn:hover {
      background: #3a19a8;
    }

    .badge-ring {
      position: absolute;
      top: 5%;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 120px;
      background: #f2edff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: #333;
      text-align: center;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 0 15px rgba(93, 46, 255, 0.2);
      z-index: 1;
    }

    .badge-ring i {
      font-size: 18px;
      margin-top: 5px;
    }

    .orbit-icon, .star-icon {
      position: absolute;
      z-index: 0;
      animation: pulse 3s infinite;
      opacity: 0.8;
    }

    .orbit-icon {
      top: 18%;
      right: 6%;
      width: 90px;
    }

    .star-icon {
      top: 80%;
      left: 10%;
      width: 40px;
      animation: float 4s infinite;
    }

    /* Animations */
    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }

    @keyframes slideFadeIn {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
      0% { opacity: 0; }
      100% { opacity: 1; }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); opacity: 0.7; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    @media (max-width: 768px) {
      .hero-section {
        text-align: center;
        padding-top: 60px;
      }

      .hero-title {
        font-size: 1.8rem;
      }

      .badge-ring {
        top: 4%;
        left: 50%;
        transform: translateX(-50%);
      }

      .orbit-icon {
        display: none;
      }
    }
/* service */
.services-section {
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }

    .services-section h2 {
      font-weight: bold;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .services-section p {
      color: #555;
      max-width: 720px;
      margin: 0 auto 40px;
      font-size: 16px;
    }

    .service-card {
      padding: 40px 25px;
      border-radius: 12px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      min-height: 100%;
      animation: fadeUp 1s ease-in;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }

    .service-icon {
      width: 80px;
      margin-bottom: 20px;
    }

    .card1 { background-color: #e9e8e8; }
    .card2 { background-color: #e9e8e8; }
    .card3 { background-color: #e9e8e8; }
    .card4 { background-color: #e9e8e8; }

    .decor-star {
      position: absolute;
      width: 30px;
      animation: spin 6s linear infinite;
      opacity: 0.7;
    }

    .decor-left {
      left: 30px;
      top: 30px;
    }

    .decor-right {
      right: 30px;
      top: 30px;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .service-card {
        margin-bottom: 20px;
      }
    }
/* images */
.bg {
      background: linear-gradient(to right, #fef3fc, #e8fff6);
      font-family: 'Segoe UI', sans-serif;
    }

    .value-section {
      padding: 80px 20px;
      position: relative;
      text-align: center;
    }

    .value-section h2 {
      font-weight: 700;
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .value-section p {
      max-width: 720px;
      margin: 0 auto 40px;
      font-size: 16px;
      color: #555;
    }

    .left-card {
      border-radius: 12px;
      overflow: hidden;
      position: relative;
      height: 100%;
      animation: fadeInUp 1s ease;
    }

    .left-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* filter: brightness(0.6); */
    }

    .left-card .overlay-text {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: white;
      text-align: left;
    }

    .overlay-text h5 {
      font-weight: bold;
    }

    .learn-btn {
      margin-top: 15px;
      background: #6c2cf8;
      color: white;
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .learn-btn i {
      margin-left: 6px;
    }

    .right-card {
      padding: 25px;
      border-radius: 12px;
      text-align: left;
      animation: fadeInUp 1s ease;
    }

    .right-card h6 {
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 5px;
    }

    .right-card h5 {
      font-weight: bold;
    }

    .icon-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 34px;
      height: 34px;
      background: #000;
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 16px;
    }

    .decor-star {
      position: absolute;
      width: 30px;
      animation: spin 5s linear infinite;
      opacity: 0.7;
    }

    .decor-left {
      left: 30px;
      top: 20px;
    }

    .decor-right {
      right: 30px;
      top: 20px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
      .value-section .row > div {
        margin-bottom: 20px;
      }
    }
    /* service2  */
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .card-link {
      text-decoration: none;
      color: inherit;
    }

    .card-box {
      position: relative;
      overflow: hidden;
      color: #fff;
      height: 320px;
      border-radius: 10px;
      transition: transform 0.5s ease;
    }

    .card-box:hover {
      transform: scale(1.03);
    }

    .card-box::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
      transition: 0.3s;
    }

    .card-content {
      position: absolute;
      bottom: 20px;
      left: 20px;
      z-index: 2;
    }

    .card-title-vertical {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      font-weight: bold;
      font-size: 16px;
    }

    .card-text {
      font-size: 13px;
      max-width: 230px;
    }

    @media (max-width: 768px) {
      .card-title-vertical {
        writing-mode: horizontal-tb;
        transform: rotate(0deg);
      }

      .card-box {
        height: 250px;
      }
    }
 .bg2 {
      background: linear-gradient(to right, #f7f0ff, #e3fdf5);
      font-family: 'Segoe UI', sans-serif;
    }

    .blog-card {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      border: none;
      border-radius: 12px;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .blog-image {
      border-top-left-radius: 12px;
      border-top-right-radius: 12px;
      object-fit: cover;
      height: 200px;
    }

    .blog-meta {
      font-size: 14px;
      color: #555;
    }

    .blog-title {
      font-size: 18px;
      font-weight: 600;
      margin-top: 10px;
    }

    .blog-description {
      font-size: 14px;
      color: #333;
    }

    .read-more {
      font-size: 14px;
      font-weight: 500;
      color: #007BFF;
    }

    @media (max-width: 768px) {
      .blog-image {
        height: 180px;
      }
    }

    .bg1 {
      background: linear-gradient(to right, #ffffff, #ffffff);
      font-family: 'Segoe UI', sans-serif;
    }