 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #000;
     color: #fff;
     line-height: 1.6;
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 /* Navigation */
 nav {
     position: fixed;
     top: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.95);
     backdrop-filter: blur(10px);
     z-index: 1000;
     padding: 1rem 0;
     transition: all 0.3s ease;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .logo {
     display: inline-block;
 }

 .logo img {
     height: 40px;
     /* adjust size as needed */
     width: auto;
     vertical-align: middle;
 }


 .nav-links {
     display: flex;
     list-style: none;
     gap: 2rem;
 }

 .nav-links a {
     color: #fff;
     text-decoration: none;
     transition: color 0.3s ease;
     position: relative;
 }

 .nav-links a:hover {
     color: #c2fe06;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 0;
     height: 2px;
     background: #c2fe06;
     transition: width 0.3s ease;
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 /* Hero Section */
 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23c2fe06" stroke-width="0.1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     animation: float 20s ease-in-out infinite;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-20px);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 800px;
     margin: 0 auto;
 }

 .hero h1 {
     font-size: 4rem;
     font-weight: 700;
     margin-bottom: 1rem;
     background: linear-gradient(45deg, #c2fe06, #fff);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: glow 2s ease-in-out infinite alternate;
 }

 @keyframes glow {
     from {
         filter: drop-shadow(0 0 20px #c2fe06);
     }

     to {
         filter: drop-shadow(0 0 30px #c2fe06);
     }
 }

 .hero p {
     font-size: 1.5rem;
     margin-bottom: 2rem;
     color: #ccc;
 }

 .cta-button {
     display: inline-block;
     padding: 15px 30px;
     background: linear-gradient(45deg, #c2fe06, #a8d905);
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: bold;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     margin: 0 auto;
 }

 .cta-button:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(194, 254, 6, 0.3);
 }

 /* Services Section */
 .services {
     padding: 100px 0;
     background: #111;
 }

 .section-title {
     text-align: center !important;
     font-size: 3rem !important;
     margin-bottom: 3rem !important;
     color: #c2fe06 !important;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .service-card {
     background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
     padding: 2rem;
     border-radius: 20px;
     border: 1px solid #333;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(194, 254, 6, 0.1), transparent);
     transition: left 0.5s ease;
 }

 .service-card:hover::before {
     left: 100%;
 }

 .service-card:hover {
     transform: translateY(-10px);
     border-color: #c2fe06;
     box-shadow: 0 20px 40px rgba(194, 254, 6, 0.1);
 }

 .service-icon {
     width: 60px;
     height: 60px;
     background: #c2fe06;
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
     font-size: 1.5rem;
     color: #000;
 }

 .service-card h3 {
     font-size: 1.5rem;
     margin-bottom: 1rem;
     color: #c2fe06;
 }

 .service-card p {
     color: #ccc;
     line-height: 1.6;
     margin-bottom: 1.5rem;
     flex-grow: 1;
 }

 .service-btn {
     display: inline-block;
     padding: 10px 20px;
     background: rgba(194, 254, 6, 0.2);
     color: #c2fe06;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
     text-align: center;
     border: 1px solid #c2fe06;
     margin-top: auto;
     width: fit-content;
     align-self: center;
 }

 .service-btn:hover {
     background: rgba(194, 254, 6, 0.3);
     transform: translateY(-2px);
 }

 /* Portfolio Section */
 .portfolio {
     padding: 100px 0;
     background: #000;
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .portfolio-item {
     background: #1a1a1a;
     border-radius: 20px;
     overflow: hidden;
     transition: all 0.3s ease;
     border: 1px solid #333;
     display: flex;
     flex-direction: column;
 }

 .portfolio-item:hover {
     transform: scale(1.05);
     border-color: #c2fe06;
 }

 .portfolio-image {
     height: 200px;
     background-size: cover;
     background-position: center;
 }

 .portfolio-content {
     padding: 2rem;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .portfolio-item h3 {
     color: #c2fe06;
     margin-bottom: 1rem;
     font-size: 1.5rem;
 }

 .portfolio-item p {
     margin-bottom: 1.5rem;
     color: #ccc;
     flex-grow: 1;
 }

 .portfolio-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 1rem;
     margin: 1.5rem 0;
     padding: 0 1rem;
     /* Adds space so borders don't touch edges */
 }

 .stat {
     text-align: center;
     padding: 1rem;
     background: rgba(194, 254, 6, 0.1);
     border-radius: 10px;
     border: 1px solid rgba(194, 254, 6, 0.2);
     box-sizing: border-box;
     /* Ensures padding + border fit inside box */
 }

 .stat-number {
     font-size: 1.5rem;
     font-weight: bold;
     color: #c2fe06;
     line-height: 1;
 }

 .stat-label {
     font-size: 0.8rem;
     color: #ccc;
     margin-top: 0.5rem;
 }

 .results-btn {
     display: inline-block;
     padding: 10px 20px;
     background: rgba(194, 254, 6, 0.2);
     color: #c2fe06;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
     text-align: center;
     border: 1px solid #c2fe06;
     margin-top: auto;
     width: fit-content;
     align-self: center;
 }

 .results-btn:hover {
     background: rgba(194, 254, 6, 0.3);
     transform: translateY(-2px);
 }



 /* Testimonials Section */
 .testimonials {
     padding: 100px 0;
     background: #000;
 }

 .testimonial-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
     margin-top: 3rem;
 }

 .testimonial-card {
     background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
     padding: 2rem;
     border-radius: 20px;
     border: 1px solid #333;
     position: relative;
     display: flex;
     flex-direction: column;
 }

 .testimonial-text {
     font-style: italic;
     margin-bottom: 1.5rem;
     color: #ccc;
     font-size: 1.1rem;
     line-height: 1.6;
     flex-grow: 1;
 }

 .testimonial-author {
     color: #c2fe06;
     font-weight: bold;
     font-size: 1.1rem;
 }

 .testimonial-company {
     color: #999;
     font-size: 0.9rem;
     margin-bottom: 1.5rem;
 }

 /* CTA Section */
 .cta-section {
     padding: 100px 0;
     background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
     text-align: center;
 }

 .cta-content {
     max-width: 700px;
     margin: 0 auto;
 }

 .cta-section h2 {
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     color: #c2fe06;
 }

 .cta-section p {
     font-size: 1.2rem;
     margin-bottom: 2rem;
     color: #ccc;
 }


 /* Contact Section */
 .contact {
     padding: 60px 0;
     background: #111;
     min-height: calc(100vh - 120px);
     /* Adjusted height */
     display: flex;
     align-items: center;
 }

 .contact-content {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-top: 1.5rem;
     width: 100%;
 }

 .contact-info {
     display: flex;
     flex-direction: column;
     gap: 1.2rem;
 }

 .contact-info h3 {
     color: #c2fe06;
     font-size: 1.5rem;
     margin-bottom: 0.3rem;
 }

 .contact-info p {
     color: #ccc;
     margin-bottom: 0.8rem;
     font-size: 0.9rem;
 }

 .benefits-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 0.6rem;
 }

 .benefits-list li {
     display: flex;
     align-items: center;
     gap: 0.6rem;
     color: #ccc;
     font-size: 0.9rem;
 }

 .benefits-list li::before {
     content: '✓';
     color: #c2fe06;
     font-weight: bold;
 }

 .contact-form {
     display: flex;
     flex-direction: column;
     gap: 0.8rem;
     background: #1a1a1a;
     padding: 1.5rem;
     border-radius: 15px;
     border: 1px solid #333;
 }

 .form-group {
     display: flex;
     flex-direction: column;
 }

 .form-group label {
     color: #c2fe06;
     margin-bottom: 0.3rem;
     font-weight: 500;
     font-size: 0.9rem;
 }

 .form-group input,
 .form-group textarea,
 .form-group select {
     padding: 12px;
     background: #0a0a0a;
     border: 1px solid #333;
     border-radius: 8px;
     color: #fff;
     transition: border-color 0.3s ease;
     font-family: inherit;
     font-size: 0.9rem;
 }

 .form-group input:focus,
 .form-group textarea:focus,
 .form-group select:focus {
     outline: none;
     border-color: #c2fe06;
 }

 .submit-btn {
     padding: 12px 25px;
     background: #c2fe06;
     color: #000;
     border: none;
     border-radius: 8px;
     font-weight: bold;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 0.5rem;
     font-size: 0.9rem;
 }

 .submit-btn:hover {
     background: #a8d905;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(194, 254, 6, 0.2);
 }

 /* Modal */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 2000;
     align-items: center;
     justify-content: center;
 }

 .modal-content {
     background: #1a1a1a;
     padding: 1.5rem;
     border-radius: 15px;
     max-width: 90%;
     width: 100%;
     border: 1px solid #333;
     position: relative;
     margin: 0 1rem;
 }

 .close-modal {
     position: absolute;
     top: 15px;
     right: 15px;
     font-size: 1.3rem;
     color: #ccc;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-modal:hover {
     color: #c2fe06;
 }

 .modal h3 {
     color: #c2fe06;
     margin-bottom: 1rem;
     font-size: 1.5rem;
 }

 /* Medium devices (tablets, 768px and up) */
 @media (min-width: 768px) {
     .contact {
         padding: 80px 0;
         min-height: calc(100vh - 160px);
     }

     .contact-content {
         grid-template-columns: 1fr 1fr;
         gap: 3rem;
     }

     .contact-info h3 {
         font-size: 1.7rem;
     }

     .contact-info p,
     .benefits-list li {
         font-size: 1rem;
     }

     .contact-form {
         padding: 2rem;
     }
 }

 /* Large devices (desktops, 992px and up) */
 @media (min-width: 992px) {
     .contact {
         padding: 100px 0;
         min-height: calc(100vh - 200px);
     }

     .contact-content {
         gap: 4rem;
     }

     .contact-info h3 {
         font-size: 1.8rem;
     }

     .modal-content {
         max-width: 500px;
         max-height: auto;
         margin-top: 100px;
         margin-bottom: 100px;
         padding: 2rem;
     }

     .modal h3 {
         font-size: 1.8rem;
     }
 }

 /* Thank You Message */
 .thank-you {
     display: none;
     text-align: center;
     padding: 2rem;
 }

 .thank-you h3 {
     color: #c2fe06;
     font-size: 2rem;
     margin-bottom: 1rem;
 }

 .thank-you p {
     color: #ccc;
     margin-bottom: 1.5rem;
 }

 /* Footer */


 /* Mobile Responsive */
 @media (max-width: 768px) {
     .nav-links {
         display: none;
     }

     .hero h1 {
         font-size: 2.5rem;
     }

     .hero p {
         font-size: 1.2rem;
     }

     .section-title {
         font-size: 2rem;
     }

     .dashboard-container {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     /* .dashboard-image {
                order: -1;
                height: 300px;
            } */

     .contact-content {
         grid-template-columns: 1fr;
         gap: 2rem;
     }

     .portfolio-stats {
         grid-template-columns: 1fr;
     }



     /* Microsites Section */
     .microsites {
         padding: 100px 0;
         background: #000;
         position: relative;
     }

     .microsites-container {
         position: relative;
         margin: 0 auto;
         max-width: 1200px;
     }

     .microsites-slider-wrapper {
         overflow: hidden;
         margin: 0 50px;
     }

     .microsites-slider {
         display: flex;
         transition: transform 0.5s ease;
         gap: 30px;
         padding: 20px 0;
     }

     .microsite-card {
         min-width: calc(33.333% - 20px);
         flex: 0 0 calc(33.333% - 20px);
         background: #1a1a1a;
         border-radius: 15px;
         overflow: hidden;
         border: 1px solid #333;
         transition: all 0.3s ease;
     }

     .microsite-card:hover {
         transform: translateY(-10px);
         box-shadow: 0 20px 40px rgba(194, 254, 6, 0.1);
         border-color: #c2fe06;
     }

     .microsite-preview {
         position: relative;
         width: 100%;
         aspect-ratio: 2560 / 1422;
         /* Keeps correct proportions */
         background-size: cover;
         background-position: center;
         border-radius: 10px;
         /* Optional */
         overflow: hidden;
         /* Optional: hides overflow if content inside */
     }


     .microsite-overlay {
         position: absolute;
         bottom: 0;
         left: 0;
         right: 0;
         background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
         padding: 20px;
     }

     .microsite-overlay h3 {
         color: #c2fe06;
         font-size: 1rem;
         margin-bottom: 0.5rem;
     }

     .microsite-overlay p {
         color: #ccc;
         font-size: 0.9rem;
     }

     .microsite-content {
         padding: 20px;
         text-align: center;
     }

     .explore-btn {
         display: inline-block;
         padding: 12px 25px;
         background: rgba(194, 254, 6, 0.2);
         color: #c2fe06;
         text-decoration: none;
         border-radius: 50px;
         font-weight: 500;
         transition: all 0.3s ease;
         border: 1px solid #c2fe06;
     }

     .explore-btn:hover {
         background: rgba(194, 254, 6, 0.3);
         transform: translateY(-2px);
     }

     .microsite-slider-btn {
         position: absolute;
         top: 50%;
         transform: translateY(-50%);
         background: #c2fe06;
         border: none;
         color: #000;
         width: 50px;
         height: 50px;
         border-radius: 50%;
         display: flex;
         align-items: center;
         justify-content: center;
         cursor: pointer;
         z-index: 10;
         transition: all 0.3s ease;
         box-shadow: 0 4px 15px rgba(194, 254, 6, 0.3);
     }

     .microsite-slider-btn:hover {
         transform: translateY(-50%) scale(1.1);
         box-shadow: 0 6px 20px rgba(194, 254, 6, 0.4);
     }

     .microsite-slider-btn svg {
         width: 24px;
         height: 24px;
     }

     .microsite-slider-prev {
         left: 0;
     }

     .microsite-slider-next {
         right: 0;
     }

     .microsite-slider-btn[disabled] {
         opacity: 0.3;
         cursor: not-allowed;
         transform: translateY(-50%);
     }

     /* Scroll indicator */
     .scroll-indicator {
         max-width: 800px;
         margin: 30px auto 0;
         padding: 0 50px;
     }

     .scroll-track {
         height: 4px;
         background: #333;
         border-radius: 2px;
         position: relative;
         overflow: hidden;
     }

     .scroll-thumb {
         height: 100%;
         background: #c2fe06;
         border-radius: 2px;
         width: 20%;
         transition: transform 0.3s ease;
     }
 }

 /* Responsive Microsites */
 @media (max-width: 992px) {
     .microsite-card {
         min-width: calc(50% - 15px);
         flex: 0 0 calc(50% - 15px);
     }

     .scroll-thumb {
         width: 33.33%;
     }
 }

 @media (max-width: 768px) {
     .microsite-card {
         min-width: calc(100% - 0px);
         flex: 0 0 calc(100% - 0px);
     }

     .microsites-slider-wrapper {
         margin: 0 30px;
     }

     .microsite-slider-btn {
         width: 40px;
         height: 40px;
     }

     .scroll-thumb {
         width: 50%;
     }
 }

 /* Footer */
 footer {
     background: #000;
     padding: 3rem 0;
     text-align: center;
     border-top: 1px solid #333;
     font-family: Arial, sans-serif;
 }

 .footer-content {
     display: flex;
     flex-direction: column;
     gap: 2rem;
     align-items: center;
 }

 .footer-info {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 1.5rem;
     margin-bottom: 1rem;
 }

 .contact-button {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background-color: #c2fe06;
     color: #000;
     padding: 0.6rem 1.2rem;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .contact-button:hover {
     background-color: #a8e005;
     transform: translateY(-2px);
 }

 .contact-button i {
     color: #000;
 }

 .footer-links {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 1.5rem;
     margin-bottom: 1rem;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: #c2fe06;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 1.5rem;
     margin-bottom: 1rem;
 }

 .social-links a {
     color: #ffffff;
     font-size: 1.5rem;
     transition: all 0.3s ease;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     text-decoration: none;
 }

 .social-links a:hover {
     color: #c2fe06;
     transform: translateY(-3px);
 }

 .copyright {
     color: #666;
     font-size: 0.9rem;
     margin-top: 1rem;
     max-width: 800px;
     line-height: 1.5;
 }

 .section-title {
     text-align: center !important;
     font-size: 3rem !important;
     margin-bottom: 3rem !important;
     color: #c2fe06 !important;
 }

 /* Mobile Responsive */
 @media (max-width: 768px) {
     .footer-info {
         flex-direction: column;
         gap: 1rem;
     }

     .footer-links {
         gap: 1rem;
     }

     .contact-button {
         padding: 0.5rem 1rem;
         font-size: 0.9rem;
     }

     .social-links {
         gap: 1rem;
     }

     .social-links a {
         font-size: 1.2rem;
         width: 35px;
         height: 35px;
     }
 }

 .videos {
     padding: 100px 0;
     background: #111;
 }

 .video-gallery-container {
     position: relative;
     margin: 0 auto;
     max-width: 1200px;
     overflow: hidden;
 }

 .video-slider {
     display: flex;
     transition: transform 0.5s ease;
     gap: 30px;
     padding: 20px 0;
 }

 .video-slide {
     min-width: calc(33.333% - 20px);
     flex: 0 0 calc(33.333% - 20px);
 }

 .video-container {
     position: relative;
     border-radius: 15px;
     overflow: hidden;
     background: #1a1a1a;
     border: 1px solid #333;
     transition: all 0.3s ease;
     aspect-ratio: 9/16;
 }

 .video-player {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     cursor: pointer;
     background: #000;
 }

 .video-container:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(194, 254, 6, 0.2);
     border-color: #c2fe06;
 }

 .video-controls {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
     padding: 15px;
     display: flex;
     align-items: center;
     gap: 10px;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .video-container:hover .video-controls {
     opacity: 1;
 }

 /* Play/Pause Button */
 .video-play-btn,
 .video-fullscreen-btn {
     background: rgba(194, 254, 6, 0.8);
     border: none;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
 }

 .video-play-btn::before,
 .video-play-btn::after,
 .video-fullscreen-btn::before {
     content: '';
     position: absolute;
     background-color: #000;
 }

 /* Play icon (triangle) */
 .video-play-btn.paused::before {
     width: 0;
     height: 0;
     border-top: 8px solid transparent;
     border-left: 12px solid #000;
     border-bottom: 8px solid transparent;
     left: 11px;
 }

 /* Pause icon (two bars) */
 .video-play-btn:not(.paused)::before,
 .video-play-btn:not(.paused)::after {
     width: 4px;
     height: 12px;
     top: 9px;
 }

 .video-play-btn:not(.paused)::before {
     left: 9px;
 }

 .video-play-btn:not(.paused)::after {
     left: 17px;
 }

 /* Fullscreen icon */
 .video-fullscreen-btn::before {
     width: 12px;
     height: 12px;
     border: 2px solid #000;
     top: 7px;
     left: 7px;
 }

 .video-play-btn:hover,
 .video-fullscreen-btn:hover {
     background: #c2fe06;
     transform: scale(1.1);
 }

 /* Central play button overlay */
 .video-play-overlay {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     background: rgba(194, 254, 6, 0.9);
     border: none;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 5;
 }

 .video-play-overlay::before {
     content: '';
     position: absolute;
     width: 0;
     height: 0;
     border-top: 12px solid transparent;
     border-left: 20px solid #000;
     border-bottom: 12px solid transparent;
     left: 22px;
     top: 18px;
 }

 .video-play-overlay:hover {
     background: #c2fe06;
     transform: translate(-50%, -50%) scale(1.1);
 }

 .video-play-overlay.hidden {
     opacity: 0;
     pointer-events: none;
 }

 .video-progress {
     flex: 1;
     height: 5px;
     background: rgba(255, 255, 255, 0.3);
     border-radius: 3px;
     cursor: pointer;
 }

 .video-progress-filled {
     height: 100%;
     background: #c2fe06;
     border-radius: 3px;
     width: 0%;
 }

 .video-title {
     position: absolute;
     top: 20px;
     left: 20px;
     color: white;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
     font-size: 1.2rem;
     max-width: 80%;
 }

 /* Navigation buttons - Updated with SVG styling */
 .video-slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(194, 254, 6, 0.7);
     border: none;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: all 0.3s ease;
     padding: 0;
 }

 .video-slider-btn svg {
     width: 24px;
     height: 24px;
     stroke: #000;
     stroke-width: 2;
     stroke-linecap: round;
     stroke-linejoin: round;
 }

 .video-slider-btn:hover {
     background: #c2fe06;
     transform: translateY(-50%) scale(1.1);
 }

 .video-slider-prev {
     left: -0px;
 }

 .video-slider-next {
     right: -0px;
 }

 .video-slider-next svg {
     transform: rotate(180deg);
 }

 /* Video Fullscreen */
 .video-fullscreen {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.9);
     z-index: 10000;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .video-fullscreen video {
     max-width: 90%;
     max-height: 90vh;
     width: auto;
     height: auto;
 }

 .video-fullscreen-close {
     position: absolute;
     top: 30px;
     right: 30px;
     color: white;
     font-size: 2rem;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .video-fullscreen-close:hover {
     color: #c2fe06;
 }

 /* Responsive Video Gallery */
 @media (max-width: 992px) {
     .video-slide {
         min-width: calc(50% - 15px);
         flex: 0 0 calc(50% - 15px);
     }
 }

 @media (max-width: 768px) {
     .video-slide {
         min-width: calc(100% - 0px);
         flex: 0 0 calc(100% - 0px);
     }

     .video-slider-btn {
         width: 35px;
         height: 35px;
     }

     .video-slider-btn svg {
         width: 20px;
         height: 20px;
     }

     .video-slider-prev {
         left: -15px;
     }

     .video-slider-next {
         right: -15px;
     }

     .video-controls {
         opacity: 1;
         padding: 10px;
     }

     .video-play-overlay {
         width: 50px;
         height: 50px;
     }

     .video-play-overlay::before {
         border-top-width: 10px;
         border-left-width: 16px;
         border-bottom-width: 10px;
         left: 18px;
         top: 15px;
     }
 }

 /* Results Dashboard Section */
 .dashboard {
     padding: 60px 20px;
     /* Added horizontal padding for mobile */
     background: #111;
 }

 .dashboard-container {
     display: grid;
     grid-template-columns: 1fr;
     gap: 3rem;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .dashboard-content {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
 }

 .dashboard-image-container {
     display: flex;
     justify-content: center;
     /* Center the image horizontally */
     width: 100%;
 }

 .dashboard-image {
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     border: 1px solid #333;
     aspect-ratio: 992/328;
     /* Modern way to maintain aspect ratio */
     width: 100%;
     max-width: 992px;
     /* Maximum size matching your image width */
     position: relative;
     margin: 0 auto;
     /* Center the element */
 }

 .dashboard-slide {
     position: absolute;
     width: 100%;
     height: 100%;
     background-size: contain;
     /* Changed to contain to ensure full image visibility */
     background-repeat: no-repeat;
     background-position: center;
     opacity: 0;
     /* transition: opacity 1s ease-in-out; */
 }

 .dashboard-slide.active {
     opacity: 1;
 }

 /* Stats styles remain the same as before */
 .dashboard-stats {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 1rem;
     margin-top: 1rem;
 }

 .stat {
     background: rgba(255, 255, 255, 0.05);
     padding: 1rem;
     border-radius: 8px;
     text-align: center;
 }

 .stat-number {
     font-size: 1.8rem;
     font-weight: 700;
     color: #c2fe06;
     margin-bottom: 0.3rem;
 }

 .stat-label {
     font-size: 0.9rem;
     color: #ccc;
 }

 /* Laptop/Desktop styles */
 @media (min-width: 992px) {
     .dashboard {
         padding: 100px 0;
     }

     .dashboard-container {
         grid-template-columns: 1fr 1fr;
     }

     /* No need for special image sizing - aspect-ratio handles it */
 }

 /* Mobile adjustments */
 @media (max-width: 767px) {
     .stat-number {
         font-size: 1.5rem;
     }

     .dashboard {
         padding: 60px 15px;
     }
 }

 /* Microsites Section */
 .microsites {
     padding: 100px 0;
     background: #000;
     position: relative;
 }

 .microsites-container {
     position: relative;
     margin: 0 auto;
     max-width: 1200px;
 }

 .microsites-slider-wrapper {
     overflow: hidden;
     margin: 0 50px;
 }

 .microsites-slider {
     display: flex;
     transition: transform 0.5s ease;
     gap: 30px;
     padding: 20px 0;
 }

 .microsite-card {
     min-width: calc(33.333% - 20px);
     flex: 0 0 calc(33.333% - 20px);
     background: #1a1a1a;
     border-radius: 15px;
     overflow: hidden;
     border: 1px solid #333;
     transition: all 0.3s ease;
 }

 .microsite-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(194, 254, 6, 0.1);
     border-color: #c2fe06;
 }

 .microsite-preview {
     position: relative;
     width: 100%;
     aspect-ratio: 2560 / 1422;
     /* Keeps correct proportions */
     background-size: cover;
     background-position: center;
     border-radius: 10px;
     /* Optional */
     overflow: hidden;
     /* Optional: hides overflow if content inside */
 }

 .microsite-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
     padding: 20px;
 }

 .microsite-overlay h3 {
     color: #c2fe06;
     font-size: 1.3rem;
     margin-bottom: 0.5rem;
 }

 .microsite-overlay p {
     color: #ccc;
     font-size: 0.9rem;
 }

 .microsite-content {
     padding: 20px;
     text-align: center;
 }

 .explore-btn {
     display: inline-block;
     padding: 12px 25px;
     background: rgba(194, 254, 6, 0.2);
     color: #c2fe06;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 500;
     transition: all 0.3s ease;
     border: 1px solid #c2fe06;
 }

 .explore-btn:hover {
     background: rgba(194, 254, 6, 0.3);
     transform: translateY(-2px);
 }

 .microsite-slider-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: #c2fe06;
     border: none;
     color: #000;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(194, 254, 6, 0.3);
 }

 .microsite-slider-btn:hover {
     transform: translateY(-50%) scale(1.1);
     box-shadow: 0 6px 20px rgba(194, 254, 6, 0.4);
 }

 .microsite-slider-btn svg {
     width: 24px;
     height: 24px;
 }

 .microsite-slider-prev {
     left: 0;
 }

 .microsite-slider-next {
     right: 0;
 }

 .microsite-slider-btn[disabled] {
     opacity: 0.3;
     cursor: not-allowed;
     transform: translateY(-50%);
 }

 /* Scroll indicator */
 .scroll-indicator {
     max-width: 800px;
     margin: 30px auto 0;
     padding: 0 50px;
 }

 .scroll-track {
     height: 4px;
     background: #333;
     border-radius: 2px;
     position: relative;
     overflow: hidden;
 }

 .scroll-thumb {
     height: 100%;
     background: #c2fe06;
     border-radius: 2px;
     width: 20%;
     transition: transform 0.3s ease;
 }

 /* Responsive Microsites */
 @media (max-width: 992px) {
     .microsite-card {
         min-width: calc(50% - 15px);
         flex: 0 0 calc(50% - 15px);
     }

     .scroll-thumb {
         width: 33.33%;
     }
 }

 @media (max-width: 768px) {
     .microsite-card {
         min-width: calc(100% - 0px);
         flex: 0 0 calc(100% - 0px);
     }

     .microsites-slider-wrapper {
         margin: 0 30px;
     }

     .microsite-slider-btn {
         width: 40px;
         height: 40px;
     }

     .scroll-thumb {
         width: 50%;
     }
 }

 /* Clients Section */
 .clients-section {
     padding: 80px 0;
     background: #000;
     overflow: hidden;
     position: relative;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: #fff;
 }

 .section-subtitle {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 3rem;
     color: #ccc;
     font-size: 1.1rem;
 }

 .clients-banner {
     width: 100%;
     overflow: hidden;
     position: relative;
     padding: 20px 0;
 }

 .clients-track {
     display: flex;
     align-items: center;
     gap: 40px;
     width: max-content;
     animation: scroll 30s linear infinite;
 }

 .client-logo {
     flex-shrink: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 15px 0;
     transition: all 0.3s ease;
 }

 .client-logo img {
     max-width: 180px;
     max-height: 90px;
     width: auto;
     height: auto;
     /* filter: grayscale(100%) brightness(0.8); */
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .client-logo:hover img {
     filter: grayscale(0%) brightness(1);
     opacity: 1;
     transform: scale(1.10);
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .client-logo img {
         max-width: 130px;
     }

     .clients-track {
         gap: 30px;
     }
 }

 @media (max-width: 992px) {
     .section-title {
         font-size: 2.2rem;
     }

     .section-subtitle {
         font-size: 1rem;
     }

     .client-logo img {
         max-width: 110px;
     }

     .clients-track {
         gap: 25px;
     }
 }

 @media (max-width: 768px) {
     .clients-section {
         padding: 60px 0;
     }

     .section-title {
         font-size: 2rem;
     }

     .client-logo img {
         max-width: 90px;
         max-height: 50px;
     }

     .clients-track {
         gap: 20px;
         animation-duration: 20s;
     }
 }

 @media (max-width: 576px) {
     .section-title {
         font-size: 1.8rem;
     }

     .section-subtitle {
         font-size: 0.9rem;
         margin-bottom: 2rem;
     }

     .client-logo img {
         max-width: 70px;
         max-height: 40px;
     }

     .clients-track {
         gap: 15px;
     }
 }

 /* Pause animation on hover */
 .clients-banner:hover .clients-track {
     animation-play-state: paused;
 }

 /* Website Portfolio Section */
 .website-portfolio {
     padding: 100px 0;
     background: #000;
     color: #fff;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 1rem;
     color: #fff;
 }

 .section-subtitle {
     text-align: center;
     max-width: 800px;
     margin: 0 auto 3rem;
     color: #ccc;
     font-size: 1.1rem;
 }

 .portfolio-filter {
     display: flex;
     justify-content: center;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 40px;
 }

 .filter-btn {
     padding: 10px 25px;
     background: rgba(194, 254, 6, 0.1);
     color: #c2fe06;
     border: 1px solid #c2fe06;
     border-radius: 50px;
     cursor: pointer;
     transition: all 0.3s ease;
     font-weight: 500;
 }

 .filter-btn:hover,
 .filter-btn.active {
     background: rgba(194, 254, 6, 0.3);
     transform: translateY(-2px);
 }

 .filter-btn.active {
     background: #c2fe06;
     color: #000;
     font-weight: 600;
 }

 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
     gap: 30px;
     margin: 0 auto;
 }

 .portfolio-item {
     transition: all 0.5s ease;
 }

 .portfolio-card {
     background: #1a1a1a;
     border-radius: 15px;
     overflow: hidden;
     border: 1px solid #333;
     transition: all 0.3s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .portfolio-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(194, 254, 6, 0.1);
     border-color: #c2fe06;
 }

 .portfolio-image {
     width: 100%;
     aspect-ratio: 2556 / 1416;
     background-size: cover;
     background-position: center;
     position: relative;
 }

 .portfolio-overlay {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
     padding: 20px;
 }

 .portfolio-overlay h3 {
     color: #c2fe06;
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
 }

 .portfolio-overlay p {
     color: #ccc;
     font-size: 1rem;
     margin-bottom: 10px;
 }

 .portfolio-tech {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
     margin-top: 10px;
 }

 .portfolio-tech span {
     background: rgba(194, 254, 6, 0.1);
     color: #c2fe06;
     padding: 4px 12px;
     border-radius: 50px;
     font-size: 0.8rem;
     border: 1px solid rgba(194, 254, 6, 0.3);
 }

 .portfolio-actions {
     padding: 20px;
     display: flex;
     gap: 15px;
     margin-top: auto;
 }

 .view-btn,
 .details-btn {
     flex: 1;
     text-align: center;
     padding: 12px;
     border-radius: 5px;
     font-weight: 500;
     transition: all 0.3s ease;
     text-decoration: none;
 }

 .view-btn {
     background: rgba(194, 254, 6, 0.2);
     color: #c2fe06;
     border: 1px solid #c2fe06;
 }

 .view-btn:hover {
     background: rgba(194, 254, 6, 0.3);
     transform: translateY(-2px);
 }

 .details-btn {
     background: rgba(255, 255, 255, 0.1);
     color: #fff;
     border: 1px solid #555;
 }

 .details-btn:hover {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
 }

 .portfolio-cta {
     text-align: center;
     margin-top: 60px;
 }

 .portfolio-cta p {
     font-size: 1.2rem;
     margin-bottom: 20px;
     color: #fff;
 }

 .cta-btn {
     display: inline-block;
     padding: 15px 40px;
     background: #c2fe06;
     color: #000;
     text-decoration: none;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
     border: 2px solid #c2fe06;
 }

 .cta-btn:hover {
     background: transparent;
     color: #c2fe06;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(194, 254, 6, 0.2);
 }

 /* Responsive Design */
 @media (max-width: 1200px) {
     .portfolio-grid {
         grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
     }
 }

 @media (max-width: 768px) {
     .portfolio-grid {
         grid-template-columns: 1fr;
         max-width: 500px;
         margin: 0 auto;
     }

     .portfolio-filter {
         gap: 10px;
     }

     .filter-btn {
         padding: 8px 15px;
         font-size: 0.9rem;
     }

     .portfolio-actions {
         flex-direction: column;
         gap: 10px;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 2rem;
     }

     .section-subtitle {
         font-size: 1rem;
     }

     .portfolio-overlay h3 {
         font-size: 1.3rem;
     }

     .portfolio-overlay p {
         font-size: 0.9rem;
     }

     .portfolio-tech span {
         font-size: 0.7rem;
     }
 }

 /* Mobile Menu Button - Hidden by default */
 .mobile-menu-btn {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 21px;
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 1000;
     cursor: pointer;
 }

 .mobile-menu-btn span {
     display: block;
     height: 3px;
     width: 100%;
     background: #c2fe06;
     border-radius: 3px;
     transition: all 0.3s ease;
 }

 /* Mobile Sidebar - Hidden by default */
 .mobile-sidebar {
     position: fixed;
     top: 0;
     right: -300px;
     width: 280px;
     height: 100vh;
     background: #000;
     border-left: 1px solid #333;
     z-index: 1001;
     transition: right 0.3s ease;
     overflow-y: auto;
 }

 .mobile-sidebar-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     border-bottom: 1px solid #333;
 }

 .mobile-sidebar-header .logo {
     color: #c2fe06;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .close-btn {
     color: #fff;
     font-size: 1.8rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-btn:hover {
     color: #c2fe06;
 }

 .mobile-nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-nav li {
     border-bottom: 1px solid #222;
 }

 .mobile-nav a {
     display: block;
     padding: 15px 20px;
     color: #fff;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .mobile-nav a:hover {
     color: #c2fe06;
     background: rgba(194, 254, 6, 0.1);
 }

 .mobile-sidebar-footer {
     padding: 20px;
     margin-top: auto;
 }

 .call-btn {
     display: block;
     padding: 12px;
     background: #c2fe06;
     color: #000;
     text-align: center;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .call-btn:hover {
     background: #b0e600;
 }

 /* Overlay */
 .mobile-sidebar-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 /* Active states */
 .mobile-sidebar.active {
     right: 0;
 }

 .mobile-sidebar-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 /* Transform hamburger to X when active */
 .mobile-menu-btn.active span:nth-child(1) {
     transform: translateY(9px) rotate(45deg);
 }

 .mobile-menu-btn.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-btn.active span:nth-child(3) {
     transform: translateY(-9px) rotate(-45deg);
 }

 /* Show only on phones */
 @media (max-width: 767px) {
     .mobile-menu-btn {
         display: flex;
     }
 }

 /* Mobile Menu Button - Hidden by default */
 .mobile-menu-btn {
     display: none;
     flex-direction: column;
     justify-content: space-between;
     width: 30px;
     height: 21px;
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 1000;
     cursor: pointer;
 }

 .mobile-menu-btn span {
     display: block;
     height: 3px;
     width: 100%;
     background: #c2fe06;
     border-radius: 3px;
     transition: all 0.3s ease;
 }

 /* Mobile Sidebar - Hidden by default */
 .mobile-sidebar {
     position: fixed;
     top: 0;
     right: -300px;
     width: 280px;
     height: 100vh;
     background: #000;
     border-left: 1px solid #333;
     z-index: 1001;
     transition: right 0.3s ease;
     overflow-y: auto;
 }

 .mobile-sidebar-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 20px;
     border-bottom: 1px solid #333;
 }

 .mobile-sidebar-header .logo {
     color: #c2fe06;
     font-weight: bold;
     font-size: 1.2rem;
 }

 .close-btn {
     color: #fff;
     font-size: 1.8rem;
     cursor: pointer;
     transition: color 0.3s ease;
 }

 .close-btn:hover {
     color: #c2fe06;
 }

 .mobile-nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-nav li {
     border-bottom: 1px solid #222;
 }

 .mobile-nav a {
     display: block;
     padding: 15px 20px;
     color: #fff;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .mobile-nav a:hover {
     color: #c2fe06;
     background: rgba(194, 254, 6, 0.1);
 }

 .mobile-sidebar-footer {
     padding: 20px;
     margin-top: auto;
 }

 .call-btn {
     display: block;
     padding: 12px;
     background: #c2fe06;
     color: #000;
     text-align: center;
     text-decoration: none;
     border-radius: 5px;
     font-weight: bold;
     transition: all 0.3s ease;
 }

 .call-btn:hover {
     background: #b0e600;
 }

 /* Overlay */
 .mobile-sidebar-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.7);
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 /* Active states */
 .mobile-sidebar.active {
     right: 0;
 }

 .mobile-sidebar-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 /* Transform hamburger to X when active */
 .mobile-menu-btn.active span:nth-child(1) {
     transform: translateY(9px) rotate(45deg);
 }

 .mobile-menu-btn.active span:nth-child(2) {
     opacity: 0;
 }

 .mobile-menu-btn.active span:nth-child(3) {
     transform: translateY(-9px) rotate(-45deg);
 }

 /* Show only on phones */
 @media (max-width: 767px) {
     .mobile-menu-btn {
         display: flex;
     }
 }

 /* WhatsApp Widget */
 .whatsapp-widget {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 999;
 }

 .whatsapp-link {
     display: block;
     text-decoration: none;
     transition: transform 0.3s ease;
 }

 .whatsapp-link:hover {
     transform: scale(1.1);
 }

 .chat-icon {
     width: 60px;
     height: 60px;
     background: #25D366;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
 }

 .chat-icon svg {
     width: 30px;
     height: 30px;
     fill: white;
 }

 .pulse-ring {
     position: absolute;
     width: 80px;
     height: 80px;
     border: 2px solid #25D366;
     border-radius: 50%;
     animation: pulse 2s infinite;
     opacity: 0;
     top: -10px;
     left: -10px;
 }

 .live-badge {
     position: absolute;
     top: -10px;
     right: -10px;
     background: #c2fe06;
     color: #000;
     font-size: 10px;
     font-weight: bold;
     padding: 3px 6px;
     border-radius: 12px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 @keyframes pulse {
     0% {
         transform: scale(0.8);
         opacity: 0.7;
     }

     70% {
         transform: scale(1.2);
         opacity: 0;
     }

     100% {
         transform: scale(0.8);
         opacity: 0;
     }
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .whatsapp-widget {
         bottom: 20px;
         right: 20px;
     }

     .chat-icon {
         width: 50px;
         height: 50px;
     }

     .chat-icon svg {
         width: 25px;
         height: 25px;
     }

     .pulse-ring {
         width: 70px;
         height: 70px;
     }

     .live-badge {
         font-size: 9px;
         padding: 2px 5px;
         top: -8px;
         right: -8px;
     }
 }

 /* Running Banner Styles */
 .running-banner {
     width: 100%;
     overflow: hidden;
     background: #000;
     border-top: 1px solid #333;
     border-bottom: 1px solid #333;
     position: relative;
     z-index: 100;
 }

 .banner-track {
     display: flex;
     white-space: nowrap;
     animation: scroll 20s linear infinite;
     padding: 12px 0;
 }

 .banner-track span {
     color: #c2fe06;
     font-weight: 600;
     font-size: 14px;
     letter-spacing: 1px;
     text-transform: uppercase;
     margin: 0 40px;
     position: relative;
 }

 .banner-track span::after {
     content: "·";
     position: absolute;
     right: -30px;
     color: rgba(194, 254, 6, 0.5);
 }

 @keyframes scroll {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(-50%);
     }
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .banner-track {
         padding: 10px 0;
         animation-duration: 15s;
     }

     .banner-track span {
         font-size: 12px;
         margin: 0 30px;
     }
 }

 @media (max-width: 480px) {
     .banner-track {
         padding: 8px 0;
         animation-duration: 12s;
     }

     .banner-track span {
         font-size: 11px;
         margin: 0 20px;
     }
 }
 
 /* Digital Portfolio Section */
  .digital-portfolio {
    padding: 80px 0;
    background: #000;
    color: #fff;
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
  }

  .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ccc;
    font-size: 1.1rem;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .portfolio-item {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
  }

  .portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 254, 6, 0.1);
    border-color: #c2fe06;
  }

  .video-thumbnail {
    position: relative;
    padding-top: 141.5%; /* 1418/1002 aspect ratio */
    overflow: hidden;
  }

  .video-thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .portfolio-item:hover .video-thumbnail video {
    transform: scale(1.03);
  }

  .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .portfolio-item:hover .play-overlay {
    opacity: 1;
  }

  .portfolio-info {
    padding: 20px;
    text-align: center;
  }

  .portfolio-info h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }

  .view-link {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(194, 254, 6, 0.2);
    color: #c2fe06;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #c2fe06;
    box-shadow: 0 0 15px #c2fe06; /* Glow effect */
}


  .view-link:hover {
    background: rgba(194, 254, 6, 0.3);
    transform: translateY(-2px);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
    .portfolio-grid {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .digital-portfolio {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .portfolio-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8rem;
    }
    
    .section-subtitle {
      font-size: 0.9rem;
    }
    
    .video-thumbnail {
      padding-top: 140%; /* Slightly adjust aspect ratio for mobile */
    }
  }