* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Hero Section */
        .hero-section {
            padding: 80px 40px;
            color: white;
            text-align: center;
        }
                  .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/Hero-pic1.png') center center no-repeat;
  background-size: cover; /* ya 'contain' agar full image chahiye bina crop */
  z-index: -1; /* optional: image ko background me rakhne ke liye */
   }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto 20px;
            opacity: 0.95;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 60px auto 0;
        }
        

        .stat-box {
            background: rgba(255,255,255,0.15);
            padding: 30px 20px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Main Content */
        .content-wrapper {
            background: #ffecb2;
        }

        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px 40px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 20px;
            text-align: center;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6b7280;
            text-align: center;
            margin-bottom: 10px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Two Column Layout */
        .two-column-section {
            background: white;
            padding: 60px 40px;
        }

        .two-column {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .column-content h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 25px;
        }

        .column-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #4b5563;
            margin-bottom: 20px;
        }

        .info-box {
            background: #ffbf0033;
            border-left: 5px solid #ffc000;
            padding: 35px;
            border-radius: 12px;
        }

        .info-box h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #FFC800;
            margin-bottom: 25px;
        }

        .info-box ul {
            list-style: none;
        }

        .info-box li {
            padding: 12px 0;
            color: #4b5563;
            font-size: 1.05rem;
            display: flex;
            align-items: start;
            gap: 12px;
        }

        .info-box li:before {
            content: '✓';
            color: #ffc000;
            font-weight: 700;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* Comparison Section */
        .comparison-section {
            background: #ffecb2;
            padding: 60px 40px;
        }

        .comparison-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .comparison-card {
            background: white;
            border-radius: 16px;
            padding: 45px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .comparison-card.litpro {
            border-top: 5px solid #10b981;
        }

        .comparison-card.others {
            border-top: 5px solid #ef4444;
        }

        .comparison-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .comparison-card.litpro h3 {
            color: #10b981;
        }

        .comparison-card.others h3 {
            color: #ef4444;
        }

        .comparison-list {
            list-style: none;
        }

        .comparison-list li {
            padding: 18px 0;
            border-bottom: 1px solid #f3f4f6;
            font-size: 1rem;
            color: #4b5563;
            display: flex;
            align-items: start;
            gap: 15px;
            line-height: 1.7;
        }

        .comparison-list li:last-child {
            border-bottom: none;
        }

        .icon-check {
            color: #10b981;
            font-weight: 700;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .icon-cross {
            color: #ef4444;
            font-weight: 700;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        /* Video Section */
        .video-section {
            background: white;
            padding: 50px 40px;
        }

        .video-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .video-card {
            background: #ffecb2;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s;
        }

        .video-card:hover {
            transform: translateY(-8px);
        }

        .video-thumbnail {
            width: 100%;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
        }

        .video-thumbnail.interview {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .video-thumbnail.ted {
            background: linear-gradient(135deg, #dc2626 0%, #f87171 100%);
        }

        .play-button {
            width: 90px;
            height: 90px;
            background: rgba(255,255,255,0.25);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            font-size: 2.5rem;
            color: white;
        }

        .video-info {
            padding: 30px;
        }

        .video-info h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 12px;
        }

        .video-info p {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
        }

        /* Benefits Section */
        .benefits-section {
            background: #ffecb2;
            padding: 50px 40px;
        }

        .benefits-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .benefit-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            text-align: center;
            transition: transform 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 3rem;
        }

        .benefit-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .benefit-card p {
            font-size: 1rem;
            color: #6b7280;
            line-height: 1.7;
        }

        /* Stats Banner */
        .stats-banner {
            background: linear-gradient(135deg, #ffc000 0%, #8b5cf6 100%);
            padding: 80px 40px;
            color: white;
        }

        .stats-banner-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .stats-banner h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 60px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2.5rem;
            backdrop-filter: blur(10px);
        }

        .stat-value {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 1.1rem;
            opacity: 0.95;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: white;
            padding: 80px 40px;
        }

        .testimonial-slider {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
        }

        .testimonial-card {
            background: #ffecb2;
            padding: 35px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .testimonial-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .testimonial-placeholder {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .testimonial-content {
            font-style: italic;
            color: #4b5563;
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1f2937;
        }

        /* Team Section */
        .team-section {
            background: #ffecb2;
            padding: 50px 40px;
        }

        .team-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .team-member {
            background: white;
            border-radius: 16px;
            padding: 35px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .member-photo {
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #ffc000;
        }

        .member-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .member-role {
            font-size: 1rem;
            color: #6b7280;
            margin-bottom: 15px;
        }

        .member-bio {
            font-size: 0.95rem;
            color: #9ca3af;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FF8C00 0%, #FFC000 100%);;
            padding: 80px 40px;
            text-align: center;
            color: #ffffff;
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            line-height: 1.8;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }


        .btn-secondary {
            padding: 18px 45px;
            background: transparent;
            color: rgb(255, 255, 255);
            border: 2px solid rgb(255, 255, 255);
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgb(255, 255, 255);
            color: #ffc000;
        }

        /* Contact Section */
        .contact-section {
            background: white;
            padding: 80px 40px;
        }

        .contact-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .contact-card {
            background: #ffc80060;
            padding: 40px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }

        .contact-icon {
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
        }

        .contact-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 15px;
        }

        .contact-card p {
            font-size: 1.05rem;
            color: #4b5563;
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .contact-card a {
            color: #000000;
            text-decoration: none;
            font-weight: 600;
        }

        /* Footer */
        footer {
            background: #1f2937;
            color: white;
            padding: 60px 40px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-section p {
            font-size: 1rem;
            color: #d1d5db;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section li {
            margin-bottom: 14px;
        }

        .footer-section a {
            color: #d1d5db;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            text-align: center;
            color: #9ca3af;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: #374151;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: background 0.3s;
        }

        .social-link:hover {
            background: #ffc000;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-stats,
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .two-column,
            .comparison-grid,
            .video-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid,
            .testimonial-slider,
            .team-grid,
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-section{
                padding: 40px 20px;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
            font-size: 0.8rem;
            font-weight: 400;
            margin: 0 auto 20px;
        }
            .two-column {
                gap: 20px;
            }

            .two-column-section{
                padding: 20px 20px;
            }
            .column-content h2 {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }   
            .column-content p {
            font-size: 0.8rem;
            line-height: 1.9;
            color: #4b5563;
            margin-bottom: 10px;
        }
            .comparison-section{
                padding: 0px 05px;
            }
            .section-title{
                margin-bottom: 10px;
            }
            .content-section {
                padding: 20px 10px;
            }
            .section-subtitle{
                margin-bottom: 0px;
            }

            .section-title {
                font-size: 2.5rem;
            }
            .video-section{
                padding: 0px 05px;
            }
            .benefits-grid{
                grid-template-columns: repeat(2, 1fr);
                gap: 10PX;
            }
            .benefit-icon{
                width: 70px;
                height: 70px;
                font-size: 2.5rem;
            }
            .benefits-section, .team-section{
                padding: 20px 05px;
            }
            .benefit-card{
                padding: 20px;
            }
            .benefit-card h4 {
                font-size: 1rem;
            }
            .benefit-card p {
                font-size: 0.65rem;
            }
                

            .hero-stats,
            .stats-grid,
            .testimonial-slider,
            .team-grid,
            .contact-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }
              .testimonials-section {
            background: white;
            padding: 10px 05px;
        }

          /* CTA Section */
        .cta-section {
            padding: 40px 40px;
        }

        .cta-content {
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 5px;
            line-height: 2rem;
        }
        .btn-secondary{
            padding: 10px 25px;
        }

        .cta-content p {
            font-size: .975rem;
            margin-bottom: 10px;
            line-height: 1.8;
            opacity: 0.95;
        }
        .contact-section{
            padding: 20px 10px;
        }
           .contact-card {
            background: #ffc80060;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            font-size: 1.85rem;
            margin-bottom: 15px;
        }
        .contact-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .contact-card p {
            font-size: 0.85rem;
            margin-bottom: 5px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

            .nav-menu {
                display: none;
            }

            nav {
                padding: 15px 20px;
            }
        }