 body {
      font-family: 'Poppins', sans-serif;
      background-color: white !important;
    }
    
    .hero-section {
      background-image: url('/assets/image/aipage.jpg');
      background-size: cover;
      background-position: center;
      min-height: 100vh;
      display: flex;
      align-items: center;
      color: #2d3748;
    }
    
    .hero-title {
      font-weight: 800;
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
      font-size: 1.3rem;
      margin-bottom: 2rem;
    }
    
    .btn-primary-custom {
      background-color: #6e48aa;
      color: white;
      border-radius: 25px;
      padding: 12px 30px;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
    }
    
    .btn-primary-custom:hover {
      background-color: #4a2f77;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .section-title {
      font-weight: 800;
      margin-bottom: 2rem;
      color: #2d3748;
    }
    
    .section-content {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #4a5568;
    }
    
    .feature-icon {
      font-size: 2.5rem;
      color: #6e48aa;
      margin-bottom: 1rem;
    }
    
    .transform-box {
      background-image: url('/assets/image/ipage-light.jpg');
      border-radius: 20px;
      padding: 60px;
      color: black;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      margin-bottom: -40px;
      position: relative;
      z-index: 2;
    }

    /* Modal Styles */
    .modal-content {
      border-radius: 15px;
      border: none;
    }

    .modal-header {
      border-bottom: none;
      padding: 1.5rem;
    }

    .modal-title {
      font-weight: 700;
      color: #2d3748;
    }

    .modal-body {
      padding: 0 1.5rem;
    }

    .modal-footer {
      border-top: none;
      padding: 1.5rem;
    }

    .modal-footer .btn {
      padding: 10px 20px;
    }
    
    /* Footer Styles */
    .footer-container {
      background-color: #000;
      color: white;
      padding: 100px 0 40px;
      position: relative;
    }
    
    .footer-content {
      padding-top: 60px;
    }
    
    .footer-column {
      margin-bottom: 30px;
    }
    
    .footer-column h5 {
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 18px;
      color: white;
    }

    
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    
    .footer-column ul li {
      margin-bottom: 12px;
      color:white;
    }
    
    .footer-column ul li a {
      color: #aaa;
      text-decoration: none;
      transition: color 0.3s;
    }
    
    .footer-column ul li a:hover {
      color: white;
    }
    
    .footer-bottom {
      border-top: 1px solid #333;
      padding-top: 30px;
      margin-top: 30px;
      transition: width 1s ease-in-out;
    }
    
    .social-icons a {
      color: white;
      margin-left: 15px;
      font-size: 20px;
      transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
      color: #6e48aa;
      transform: translateY(-3px);
    }

     .footer-container p {
      color: white;
    }
    
    /* Bright image styles for footer */
    .testimonial-img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid rgba(255, 255, 255, 0.3);
      background-color: white;
      padding: 2px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      filter: brightness(1.1) contrast(1.1);
    }
    
    .image-container {
      max-width: 800px;
      margin: 80px auto;
    }
    
    .image-wrapper {
      cursor: pointer;
      font-size: 0;
      overflow: hidden;
      padding: 2px;
    }
    
    .image-wrapper img {
      width: 200px; 
      height: 150px;  
      object-fit: cover;
      pointer-events: none;
      transition: all 0.3s ease;
    }
    
    
    @media (max-width: 768px) {
      .hero-title {
        font-size: 2.5rem;
      }
      
      .hero-subtitle {
        font-size: 1.1rem;
      }
      .transform-box {
        padding: 40px 20px;
      }
      
      .footer-content {
        padding-top: 80px;
      }
    }