
        :root {
            --color-dark: #000000;
            --color-charcoal: #1a1a1a;
            --color-accent: #00b4d8;
            --color-accent-light: #48cae4;
            --color-light: #f5f5f0;
            --color-white: #ffffff;
            --color-gray: #4a4a4a;
            --color-border: #d4d4d0;
            
            --font-display: 'Poppins', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            
            --radius: 0.5rem;
            --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--color-dark);
            background: var(--color-white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: var(--spacing-sm);
        }
        
        h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
        h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
        h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
        h4 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
        
        p {
            font-size: clamp(1rem, 2vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-gray);
        }
        
        /* Layout */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        
        .container-narrow {
            max-width: 960px;
            margin: 0 auto;
            padding: 0 var(--spacing-md);
        }
        
        section {
            padding: var(--spacing-xl) 0;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--color-border);
            transition: var(--transition);
        }
        
        nav.scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }
        
        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem var(--spacing-md);
        }
        
        .logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--color-dark);
            text-decoration: none;
            letter-spacing: -0.02em;
            margin-top: 10px;
            margin-left: -150px;
        }
        
        .logo span {
            color: var(--color-accent);
        }
        
        .nav-links {
            display: flex;
            gap: var(--spacing-md);
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--color-charcoal);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--color-accent);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            transition: var(--transition);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--color-dark);
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            font-size: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary {
            background: var(--color-accent);
            color: var(--color-white);
        }
        
        .btn-primary:hover {
            background: var(--color-accent-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 180, 216, 0.3);
        }
        
        .btn-secondary {
            background: var(--color-white);
            color: var(--color-dark);
            border: 2px solid var(--color-dark);
        }
        
        .btn-secondary:hover {
            background: var(--color-dark);
            color: var(--color-white);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 50px;
            background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            margin-bottom: -150px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(0, 180, 216, 0.08) 100%);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 2000px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-tag {
            display: inline-block;
            padding: 0.5rem 1.25rem;
            background: rgba(0, 180, 216, 0.1);
            color: var(--color-accent);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: var(--spacing-md);
            letter-spacing: 0.5px;
        }
        
        .hero h1 {
            margin-bottom: var(--spacing-md);
            color: var(--color-dark);
            font-weight: 500;
            font-size: 62px;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: var(--spacing-md);
            max-width: 550px;
        }
        
        .hero-buttons {
            display: flex;
            gap: var(--spacing-sm);
            flex-wrap: wrap;
        }
        
        /* Problem-Solution Section */
        .problem-solution {
            background: var(--color-dark);
            color: var(--color-white);
        }
        
        .problem-solution h2 {
            color: var(--color-white);
            margin-bottom: var(--spacing-md);
        }
        
        .problem-solution p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .ps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }
        
        .ps-card img {
           
            padding:0;
            background: rgba(0, 0, 0, 0.05);
            border-radius: var(--radius);
            border: 1px solid rgba(0, 0, 0, 0.1);
            
           
        }
        
        .ps-card img:hover {
             transition:transform .4s;
             transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
        }
      

        
        
        .ps-card h3 {
            color: var(--color-white);
            margin-bottom: var(--spacing-sm);
        }
        
        /* Services Grid */

         .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 100px;
            margin-top: var(--spacing-lg);
            margin-left: 120px;
            margin-right: 80px;

        }


        .services-grided {
              display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        


         /* Services Grid */

         .services-gridold{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 100px;
            margin-top: var(--spacing-lg);
            margin-left: 120px;
            margin-right: 80px;

        }



        
        .service-card{
            padding: var(--spacing-md);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .service-card1{
             display:inline-flex;
            gap: 30px;
            width: 1220px;
        }
        .service-card1 img{ border-radius: var(--radius);}
        .service-card img{ border-radius: var(--radius);}

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--color-accent);
            transition: var(--transition);
        }
        
        .service-card:hover::before {
            height: 100%;
        }
        
        .service-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transform: translateY(-5px);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .service-card h3 {
            color: var(--color-dark);
            margin-bottom: var(--spacing-sm);
        }
        
        .service-features {
            list-style: none;
            margin-top: var(--spacing-sm);
        }
        
        .service-features li {
            padding: 0.5rem 0;
            color: var(--color-gray);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .service-features li::before {
            content: '✓';
            color: var(--color-accent);
            font-weight: bold;
        }
        
        /* Portfolio Preview */
        .portfolio-preview {
            background: var(--color-light);
        }
        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
            
        }
        
        .portfolio-item {
            height: 500px;
            aspect-ratio: 2/3;
            background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .portfolio-item2{
           width:750px;
           height: 400px;
            
            background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .portfolio-item3 {
            height: 400px;
            width: 330px;
            aspect-ratio: 2/3;
            background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
            margin-left: 415px;
        }

        
        .portfolio-item:hover {
           transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

         .portfolio-item2:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
         .portfolio-item3:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
        }
        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: var(--spacing-md);
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: var(--color-white);
            transform: translateY(20px);
            opacity: 0;
            transition: var(--transition);
        }
        
        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
            opacity: 1;
        }
        
        .portfolio-overlay h4 {
            color: var(--color-white);
            margin-bottom: 0.25rem;
        }
        
        .portfolio-overlay p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }
        
        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .testimonial-card {
            padding: var(--spacing-md);
            background: var(--color-white);
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            transition: var(--transition);
        }
        
        .testimonial-card:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .testimonial-stars {
            color: #fbbf24;
            font-size: 1.25rem;
            margin-bottom: var(--spacing-sm);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: var(--spacing-sm);
            color: var(--color-charcoal);
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--spacing-sm);
            margin-top: var(--spacing-sm);
        }
        
        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-white);
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .testimonial-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }
        
        .testimonial-info p {
            font-size: 0.85rem;
            color: var(--color-gray);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
            color: var(--color-white);
            text-align: center;
        }
        
        .cta-section h2 {
            color: var(--color-white);
            margin-bottom: var(--spacing-sm);
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.25rem;
            margin-bottom: var(--spacing-md);
        }
        
        .cta-section .btn-secondary {
            background: var(--color-white);
            color: var(--color-accent);
            border: none;
        }
        
        .cta-section .btn-secondary:hover {
            background: var(--color-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
        footer {
            background: var(--color-dark);
            color: var(--color-white);
            padding: var(--spacing-lg) 0 var(--spacing-md);
        }
        
        .footer h4{

            padding-left: 100px;
        }



        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
        }
        
        .footer-section h4 {
            color: var(--color-white);
            margin-bottom: var(--spacing-sm);
        }
        
        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: var(--transition);
        }
        
        .footer-section a:hover {
            color: var(--color-accent);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: var(--spacing-md);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Process Steps */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .process-step {
            text-align: center;
            padding: var(--spacing-md);
            position: relative;
        
        }
        .process2{
            margin-left: 380px;
            width: 340px;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--color-accent);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto var(--spacing-sm);
            font-family: var(--font-display);
        }

        .process-center{
           display: inline-flex;
           margin-left: 340px;
           margin-top: -100px;
           gap: 80px;
        }




        .process-step h3 {
            margin-bottom: var(--spacing-sm);
        }
        
        /* Contact Form */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            margin-top: var(--spacing-lg);
        }
        
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: var(--spacing-sm);
        }
        
        .form-group {
            display: flex;
            flex-direction: column;
        }
        
        .form-group label {
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--color-dark);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            padding: 0.875rem;
            border: 1px solid var(--color-border);
            border-radius: var(--radius);
            font-family: var(--font-body);
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .contact-info {
            padding: var(--spacing-md);
            background: var(--color-light);
            border-radius: var(--radius);
        }
        
        .contact-info-item {
            margin-bottom: var(--spacing-md);
        }
        
        .contact-info-item h4 {
            margin-bottom: 0.5rem;
        }
        
        .contact-info-item a {
            color: var(--color-accent);
            text-decoration: none;
            font-weight: 600;
        }
        
        /* Section Header */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto var(--spacing-lg);
        }
        
        .section-tag {
            color: var(--color-accent);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.875rem;
            margin-bottom: var(--spacing-sm);
        }
        
        /* Page Hero */
        .page-hero {
            padding: 140px 0 var(--spacing-xl);
            background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
            text-align: center;
        }
        
        .page-hero h1 {
            margin-bottom: var(--spacing-sm);
        }
        
        /* Service Detail */
        .service-detail {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
            padding-bottom: var(--spacing-lg);
            border-bottom: 1px solid var(--color-border);
        }
        
        .service-detail-content h3 {
            margin-top: var(--spacing-md);
            margin-bottom: var(--spacing-sm);
        }
        
        .service-detail-sidebar {
            background: var(--color-light);
            padding: var(--spacing-md);
            border-radius: var(--radius);
            height: fit-content;
            position: sticky;
            top: 100px;
        }
        
        .sidebar-item {
            margin-bottom: var(--spacing-md);
        }
        
        .sidebar-item h4 {
            margin-bottom: 0.5rem;
        }
        
        .sidebar-item p {
            font-size: 0.95rem;
        }
        
        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }
        
        .stat-item {
            text-align: center;
            padding: var(--spacing-md);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: var(--font-display);
            color: var(--color-accent);
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: var(--color-gray);
            font-weight: 600;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 72px;
                left: 0;
                right: 0;
                background: var(--color-white);
                flex-direction: column;
                padding: var(--spacing-md);
                gap: var(--spacing-sm);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: var(--transition);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .contact-grid,
            .service-detail {
                grid-template-columns: 1fr;
            }
            
            .service-detail-sidebar {
                position: static;
            }
        }
        
        /* Hidden by default - shown via navigation */
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }









        
 /* lucky adding marquee*/
 .oueservices{
    padding-left:630px;
 }

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  overflow-x: hidden;
}

.marquee {
  overflow: hidden;
  padding: 20px 0;
  width: 100%;
}


.marquee-track {
  display: inline-flex;
  will-change: transform;
}

.cardnew{
  width: 250px;
  height: 400px;
  margin: 0 15px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cardnew img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cardnew-title {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white ;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.cardnew:hover {
  transform: scale(1.08);
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
}


.marquee-track {
  display: inline-flex;
  will-change: transform;
  animation: scrollLeft 20s linear infinite;
}

/* Keyframes for left movement */
@keyframes scrollLeft {
  0% {
    transform: translateX();
  }
  100% {
    transform: translateX(-60%);
  }
}
/* lucky adding marquee*/






/* lucky adding*/
.hero-right {
    height: 100vh;
    width: 250vh;
    display: flex;
    gap: 10px;
    margin-bottom: -100px;
    padding-bottom: -100px;
    overflow: hidden;
    position: relative;
    animation: fadeRight 1s 0.3s ease both;
  }
  @keyframes fadeRight {
    from { opacity: 0; transform: translateX(60px); }
    to   { opacity: 1; transform: translateX(0); }
  }

  /* fades */
  .hero-right::before,
  .hero-right::after {
    content: '';
    position: absolute; left: 0; right: 0; z-index: 10; pointer-events: none;
  }
  .hero-right::before {
    top: 0; height: 120px;
    background: linear-gradient(to bottom, var(--green-dark) 20%, transparent);
  }
  .hero-right::after {
    bottom: 0; height: 120px;
    background: linear-gradient(to top, var(--green-dark) 20%, transparent);
  }

  .mcol {
    display: flex; flex-direction: column; gap: 10px;
    flex: 1; overflow:hidden;
  }
  .mcol-inner {
    display: flex; flex-direction: column; gap: 10px;
  }
  .mcol:nth-child(1) .mcol-inner { animation: mUp 15s linear infinite; }
  .mcol:nth-child(2) .mcol-inner { animation: mDown 15s linear infinite; }
  .mcol:nth-child(3) .mcol-inner { animation: mUp 15s linear infinite; }

  @keyframes mUp{
    from { transform: translateY(0); }
    to   { transform: translateY(-50%); }
  }
  @keyframes mDown {
    from { transform: translateY(-50%); }
    to   { transform: translateY(0); }
  }

  .mcard {
    border-radius: var(--card-r);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  .mcard:hover { transform: scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.5); z-index: 20; }


  .mcard.tall   { height: 400px; }
  .mcard.mid    { height: 400px; }
  .mcard.short  { height: 400px; }

  /* Card styles */
  .c-pharmacy {
    background: linear-gradient(145deg, #e8ede8, #d4dbd4);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 0px;
  }
  .c-pharmacy .label { font-size: 13px; font-weight: 700; color: #1a3020; line-height: 1.3; }
  .c-pharmacy .sublabel { font-size: 11px; color: rgba(26,48,32,0.6); }
  .c-pharmacy .icon { font-size: 48px; position: absolute; top: 16px; right: 16px; }



  .c-bolt {
   background: linear-gradient(145deg, #e8ede8, #d4dbd4);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 0px;
  }



  .c-bolt .b-name { font-size: 28px; font-weight: 900; color: #1a2810; letter-spacing: -1px; }
  .c-bolt .b-flash {
    width: 36px; height: 36px; background: #e8f542;
    clip-path: polygon(60% 0%, 40% 45%, 70% 45%, 30% 100%, 50% 55%, 20% 55%);
  }

  .c-oyster {
    background: linear-gradient(145deg, #f0ebe3, #e8e0d8);
    display: flex; flex-direction: column; justify-content: center; padding: 0px; gap: 8px;
  }
  
/* lucky adding*/


.realminds{
     background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 64px 24px 80px;
      margin-bottom:-50px;


       --bg: #0e0e0e;
      --card-bg: #1a1a1a;
      --card-hover: #222222;
      --accent: #00a8ff;
      --text: #ffffff;
      --muted: #a0a0a0;
      --border: #2a2a2a;
      --border-hover: #00a8ff;
}
  .eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.6s 0.1s forwards;
    }

   

    /* ── GRID ── */
    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 14px;
      width: 100%;
      max-width: 1160px;
      margin-top: 56px;
    }

    /* Tall featured card spans 2 rows */
    .card--featured {
      grid-row: span 2;
    }

    /* ── CARD BASE ── */
    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 20px 32px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
      opacity: 0;
      height: 245px;
      width: 400px;
    }

    /* Staggered entry animations */
    .card:nth-child(1) { animation: fadeUp 0.6s 0.4s forwards; }
    .card:nth-child(2) { animation: fadeUp 0.6s 0.5s forwards; }
    .card:nth-child(3) { animation: fadeUp 0.6s 0.6s forwards; }
    .card:nth-child(4) { animation: fadeUp 0.6s 0.65s forwards; }
    .card:nth-child(5) { animation: fadeUp 0.6s 0.7s forwards; }

    .card:hover {
      background: var(--card-hover);
      border-color: var(--border-hover);
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(200, 241, 53, 0.10), 0 4px 20px rgba(0,0,0,0.4);
    }



    /* ── FEATURED CARD ── */
    .card--featured {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0;
      overflow: hidden;
      background: #111;
      min-height: 500px;
      width: 400px;
    }

    .card--featured .photo-area {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 32px 0;
      overflow: hidden;
    }

    /* Neon blob behind person */
    .blob {
      position: absolute;
      width: 220px;
      height: 220px;
      background: var(--accent);
      border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
      top: 30px;
      left: 50%;
      transform: translateX(-45%);
      filter: blur(2px);
      transition: transform 0.5s ease, filter 0.5s ease;
      z-index: 0;
    }

    .card--featured:hover .blob {
      transform: translateX(-45%) scale(1.08);
      filter: blur(4px);
    }

  

   

   
  

    /* Tool logos row */
    .tool-logos {
      display: flex;
      gap: 16px;
      align-items: center;
      justify-content: center;
      padding: 20px 0 10px;
      position: relative;
      z-index: 2;
    }

    .tool-logo {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      transition: background 0.25s, transform 0.25s;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .card--featured:hover .tool-logo {
      background: rgba(200,241,53,0.12);
      transform: translateY(-2px);
    }

    .card--featured .card-body {
      padding: 24px 32px 32px;
      border-top: 1px solid var(--border);
    }

    /* ── REGULAR CARD ELEMENTS ── */
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: background 0.3s, border-color 0.3s;
    }


    .card-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--muted);
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.3s;
    }

    .card:hover .card-icon svg { stroke: var(--accent); }

    .card-title {
      font-family:'Poppins', sans-serif;
      font-size: 1.15rem;
      color:white;
      font-weight: 100;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
      transition: color 0.3s;
    }

   

    /* Arrow that appears on hover */
    .card-arrow {
      position: absolute;
      bottom: 24px;
      right: 24px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.7) rotate(-45deg);
      transition: opacity 0.3s, transform 0.3s;
    }

    
    /* ── ANIMATION ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .grid {
        grid-template-columns: 1fr 1fr;
      }
      .card--featured {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 320px;
        flex-direction: row;
      }
      .card--featured .photo-area { padding: 20px; }
    }

    @media (max-width: 600px) {
      .grid { grid-template-columns: 1fr; }
      .card--featured { grid-column: span 1; flex-direction: column; }
    }

       



 