 :root {
     --whatsapp-green: #25D366;
     --whatsapp-dark-green: #128C7E;
     --whatsapp-teal: #075E54;
     --whatsapp-light-green: #DCF8C6;
     --whatsapp-bg: #ECE5DD;
 }

 body {
     background-image: url('https://www.toptal.com/designers/subtlepatterns/uploads/email-pattern.png');
     background-attachment: fixed;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 .navbar {
     background: linear-gradient(135deg, var(--whatsapp-teal), var(--whatsapp-dark-green));
     box-shadow: 0 2px 20px rgba(7, 94, 84, 0.3);
 }

 .navbar-brand {
     font-weight: bold;
     font-size: 1.5rem;
     color: white !important;
 }

 .hero-section {
     background: linear-gradient(45deg, var(--whatsapp-green), var(--whatsapp-dark-green), var(--whatsapp-teal), var(--whatsapp-green));
     background-size: 400% 400%;
     animation: gradient-shift 8s ease infinite;
     padding: 100px 0;
     color: white;
     position: relative;
     overflow: hidden;
 }

 @keyframes gradient-shift {
     0% {
         background-position: 0% 50%;
     }

     25% {
         background-position: 100% 50%;
     }

     50% {
         background-position: 100% 100%;
     }

     75% {
         background-position: 0% 100%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('https://www.toptal.com/designers/subtlepatterns/uploads/email-pattern.png');
     opacity: 0.1;
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: bold;
     margin-bottom: 1.5rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     opacity: 0.95;
 }

 .cta-button {
     background: white;
     color: var(--whatsapp-dark-green);
     border: none;
     padding: 15px 40px;
     font-size: 1.2rem;
     font-weight: bold;
     border-radius: 50px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
     transition: all 0.3s ease;
 }

 .cta-button:hover {
     transform: translateY(-5px) scale(1.05);
     box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
     color: var(--whatsapp-teal);
     animation: button-pulse 0.8s ease infinite;
 }

 .feature-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     margin-bottom: 2rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border: 3px solid transparent;
     position: relative;
     overflow: hidden;
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, var(--whatsapp-green), var(--whatsapp-dark-green));
 }

 .feature-card:hover {
     transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
     box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
     border-color: var(--whatsapp-light-green);
 }

 .feature-card {
     transform-style: preserve-3d;
 }

 .feature-icon {
     font-size: 3rem;
     color: var(--whatsapp-green);
     margin-bottom: 1rem;
 }

 .feature-title {
     color: var(--whatsapp-teal);
     font-weight: bold;
     margin-bottom: 1rem;
 }

 @keyframes button-pulse {

     0%,
     100% {
         box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 15px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
     }
 }

 @keyframes bubble-bounce {

     0%,
     100% {
         transform: translateX(0);
     }

     25% {
         transform: translateX(-3px);
     }

     75% {
         transform: translateX(3px);
     }
 }

 .demo-section {
     background: var(--whatsapp-bg);
     padding: 80px 0;
 }

 .phone-mockup {
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     cursor: pointer;
 }

 .phone-mockup:hover {
     transform: scale(1.05) translateY(-10px);
     box-shadow: 0 30px 80px rgba(37, 211, 102, 0.3);
 }

.slideshow-swiper {
    width: 100%;
    max-width: 500px;  /* Increased from 400px */
    margin: 0 auto;
    height: 500px;     /* Increased from 400px */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible;
}

.slideshow-swiper .swiper-wrapper {
    background: transparent !important;
    border: none !important;
}

.slideshow-swiper .swiper-slide {
    background: transparent !important;
    border: none !important;
}

.slideshow-swiper .swiper-slide {
    width: 70%;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.slideshow-swiper .swiper-slide-active {
    opacity: 1;
}

.slideshow-swiper .slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.infinite-scroll-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    width: 600%;  /* 6 images × 100% each */
    height: 100%;
    animation: infinite-scroll 18s linear infinite;
}

.scroll-image {
    width: 14.666%;  /* 100% / 6 images, but now fills container */
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;  /* Full opacity for better visibility */
}

.scroll-image:hover {
    opacity: 1;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);  /* Move exactly half the track width */
    }
}

 .stats-section {
     background: linear-gradient(135deg, var(--whatsapp-teal), var(--whatsapp-dark-green));
     color: white;
     padding: 80px 0;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: bold;
     color: var(--whatsapp-light-green);
 }

 .floating-whatsapp {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: white;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 1000;
     animation: pulse 2s infinite;
     border: 3px solid var(--whatsapp-green);
 }

 .floating-whatsapp:hover {
     transform: scale(1.1);
     border-color: var(--whatsapp-dark-green);
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
     }

     100% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     }
 }

 .section-title {
     color: var(--whatsapp-teal);
     font-weight: bold;
     margin-bottom: 3rem;
     position: relative;
     display: inline-block;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--whatsapp-green), var(--whatsapp-dark-green));
     border-radius: 2px;
 }

 .pricing-card {
     background: white;
     border-radius: 20px;
     padding: 2rem;
     text-align: center;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .pricing-card.featured {
     transform: scale(1.05);
     border: 3px solid var(--whatsapp-green);
 }

 .pricing-card.featured::before {
     content: 'MOST POPULAR';
     position: absolute;
     top: 20px;
     right: -30px;
     background: var(--whatsapp-green);
     color: white;
     padding: 8px 40px;
     font-size: 0.8rem;
     font-weight: bold;
     transform: rotate(45deg);
 }

 .pricing-card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 25px 50px rgba(37, 211, 102, 0.2);
 }

 .price {
     font-size: 3rem;
     font-weight: bold;
     color: var(--whatsapp-green);
     margin: 1rem 0;
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .feature-card {
         margin-bottom: 1rem;
     }
 }

 .floating-icons {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     overflow: hidden;
     pointer-events: none;
     z-index: 1;
 }

 .floating-icon {
     position: absolute;
     font-size: 2rem;
     color: rgba(255, 255, 255, 0.1);
     animation-duration: 8s;
     animation-iteration-count: infinite;
     animation-timing-function: ease-in-out;
 }

 .icon-1 {
     top: 10%;
     left: 10%;
     animation: float-1 8s ease-in-out infinite;
 }

 .icon-2 {
     top: 20%;
     right: 15%;
     animation: float-2 10s ease-in-out infinite reverse;
 }

 .icon-3 {
     bottom: 30%;
     left: 5%;
     animation: float-3 12s ease-in-out infinite;
 }

 .icon-4 {
     top: 40%;
     right: 25%;
     animation: float-4 9s ease-in-out infinite reverse;
 }

 .icon-5 {
     bottom: 20%;
     right: 10%;
     animation: float-5 11s ease-in-out infinite;
 }

 .icon-6 {
     top: 60%;
     left: 20%;
     animation: float-6 7s ease-in-out infinite reverse;
 }

 .icon-7 {
     top: 15%;
     left: 40%;
     animation: float-7 13s ease-in-out infinite;
 }

 .icon-8 {
     bottom: 40%;
     right: 35%;
     animation: float-8 6s ease-in-out infinite reverse;
 }

 .icon-9 {
     top: 70%;
     left: 15%;
     animation: float-9 14s ease-in-out infinite;
 }

 .icon-10 {
     top: 25%;
     left: 60%;
     animation: float-10 16s ease-in-out infinite reverse;
 }

 .icon-11 {
     bottom: 15%;
     left: 45%;
     animation: float-11 18s ease-in-out infinite;
 }

 .icon-12 {
     top: 35%;
     left: 80%;
     animation: float-12 20s ease-in-out infinite reverse;
 }

 .icon-13 {
     bottom: 50%;
     right: 5%;
     animation: float-13 15s ease-in-out infinite;
 }

 .icon-14 {
     top: 80%;
     right: 20%;
     animation: float-14 17s ease-in-out infinite reverse;
 }

 .icon-15 {
     top: 5%;
     left: 70%;
     animation: float-15 19s ease-in-out infinite;
 }

 .icon-16 {
     bottom: 10%;
     left: 70%;
     animation: float-16 21s ease-in-out infinite reverse;
 }

 .icon-17 {
     top: 50%;
     left: 5%;
     animation: float-17 22s ease-in-out infinite;
 }

 .icon-18 {
     bottom: 60%;
     right: 50%;
     animation: float-18 24s ease-in-out infinite reverse;
 }

 .icon-19 {
     top: 90%;
     left: 30%;
     animation: float-19 26s ease-in-out infinite;
 }

 .icon-20 {
     bottom: 5%;
     right: 60%;
     animation: float-20 28s ease-in-out infinite reverse;
 }

 @keyframes float-1 {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg);
     }

     25% {
         transform: translateY(-20px) rotate(90deg);
     }

     50% {
         transform: translateY(-10px) rotate(180deg);
     }

     75% {
         transform: translateY(-30px) rotate(270deg);
     }
 }

 @keyframes float-2 {

     0%,
     100% {
         transform: translateX(0px) scale(1);
     }

     33% {
         transform: translateX(15px) scale(1.2);
     }

     66% {
         transform: translateX(-10px) scale(0.8);
     }
 }

 @keyframes float-3 {

     0%,
     100% {
         transform: translateY(0px) translateX(0px);
     }

     25% {
         transform: translateY(-15px) translateX(10px);
     }

     50% {
         transform: translateY(-25px) translateX(-5px);
     }

     75% {
         transform: translateY(-10px) translateX(15px);
     }
 }

 @keyframes float-4 {

     0%,
     100% {
         transform: rotate(0deg) translateY(0px);
     }

     50% {
         transform: rotate(180deg) translateY(-20px);
     }
 }

 @keyframes float-5 {

     0%,
     100% {
         transform: scale(1) translateY(0px);
     }

     25% {
         transform: scale(1.1) translateY(-12px);
     }

     50% {
         transform: scale(0.9) translateY(-18px);
     }

     75% {
         transform: scale(1.05) translateY(-8px);
     }
 }

 @keyframes float-6 {

     0%,
     100% {
         transform: translateX(0px) rotate(0deg);
     }

     33% {
         transform: translateX(-20px) rotate(120deg);
     }

     66% {
         transform: translateX(10px) rotate(240deg);
     }
 }

 @keyframes float-7 {

     0%,
     100% {
         transform: translateY(0px) translateX(0px) scale(1);
     }

     50% {
         transform: translateY(-25px) translateX(20px) scale(1.3);
     }
 }

 @keyframes float-8 {

     0%,
     100% {
         transform: rotate(0deg) scale(1);
     }

     25% {
         transform: rotate(90deg) scale(0.8);
     }

     50% {
         transform: rotate(180deg) scale(1.2);
     }

     75% {
         transform: rotate(270deg) scale(0.9);
     }
 }

 @keyframes float-9 {

     0%,
     100% {
         transform: rotate(0deg) translateY(0px) scale(1);
     }

     33% {
         transform: rotate(120deg) translateY(-15px) scale(1.1);
     }

     66% {
         transform: rotate(240deg) translateY(-8px) scale(0.9);
     }
 }

 @keyframes float-10 {

     0%,
     100% {
         transform: translateX(0px) translateY(0px);
     }

     50% {
         transform: translateX(25px) translateY(-30px);
     }
 }

 @keyframes float-11 {

     0%,
     100% {
         transform: scale(1) rotate(0deg);
     }

     25% {
         transform: scale(1.2) rotate(90deg);
     }

     50% {
         transform: scale(0.8) rotate(180deg);
     }

     75% {
         transform: scale(1.1) rotate(270deg);
     }
 }

 @keyframes float-12 {

     0%,
     100% {
         transform: translateY(0px) translateX(0px) rotate(0deg);
     }

     50% {
         transform: translateY(-20px) translateX(-15px) rotate(180deg);
     }
 }

 @keyframes float-13 {

     0%,
     100% {
         transform: translateY(0px) scale(1);
     }

     33% {
         transform: translateY(-10px) scale(1.3);
     }

     66% {
         transform: translateY(-25px) scale(0.7);
     }
 }

 @keyframes float-14 {

     0%,
     100% {
         transform: rotate(0deg) translateX(0px);
     }

     25% {
         transform: rotate(90deg) translateX(10px);
     }

     50% {
         transform: rotate(180deg) translateX(-5px);
     }

     75% {
         transform: rotate(270deg) translateX(15px);
     }
 }

 @keyframes float-15 {

     0%,
     100% {
         transform: translateY(0px) translateX(0px) scale(1);
     }

     50% {
         transform: translateY(-35px) translateX(20px) scale(1.4);
     }
 }

 @keyframes float-16 {

     0%,
     100% {
         transform: scale(1) translateY(0px);
     }

     25% {
         transform: scale(0.6) translateY(-5px);
     }

     50% {
         transform: scale(1.5) translateY(-20px);
     }

     75% {
         transform: scale(0.9) translateY(-12px);
     }
 }

 @keyframes float-17 {

     0%,
     100% {
         transform: rotate(0deg) translateY(0px);
     }

     33% {
         transform: rotate(120deg) translateY(-18px);
     }

     66% {
         transform: rotate(240deg) translateY(-30px);
     }
 }

 @keyframes float-18 {

     0%,
     100% {
         transform: translateX(0px) scale(1);
     }

     50% {
         transform: translateX(30px) scale(1.6);
     }
 }

 @keyframes float-19 {

     0%,
     100% {
         transform: translateY(0px) rotate(0deg) scale(1);
     }

     25% {
         transform: translateY(-8px) rotate(45deg) scale(1.2);
     }

     50% {
         transform: translateY(-22px) rotate(90deg) scale(0.8);
     }

     75% {
         transform: translateY(-14px) rotate(135deg) scale(1.1);
     }
 }

 @keyframes float-20 {

     0%,
     100% {
         transform: translateX(0px) translateY(0px) rotate(0deg);
     }

     33% {
         transform: translateX(-12px) translateY(-16px) rotate(120deg);
     }

     66% {
         transform: translateX(8px) translateY(-28px) rotate(240deg);
     }
 }

 /* Mini Chat Styles */

 .chat-button-logo {
     width: 35px;
     height: 35px;
     object-fit: contain;
     border-radius: 50%;
 }

 /* Mini Chat Styles */
 .mini-chat {
     position: fixed;
     bottom: 100px;
     right: 30px;
     width: 350px;
     height: 500px;
     background: white;
     border-radius: 20px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
     z-index: 1001;
     display: flex;
     flex-direction: column;
     transform: scale(0) translateY(20px);
     opacity: 0;
     transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     overflow: hidden;
 }

 .mini-chat.chat-open {
     transform: scale(1) translateY(0);
     opacity: 1;
 }

 .mini-chat-header {
     background: var(--whatsapp-dark-green);
     color: white;
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-weight: bold;
 }

 .chat-close {
     background: none;
     border: none;
     color: white;
     font-size: 24px;
     cursor: pointer;
     padding: 0;
     width: 30px;
     height: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
     transition: background 0.2s ease;
 }

 .chat-close:hover {
     background: rgba(255, 255, 255, 0.2);
 }

 .mini-chat-body {
     flex: 1;
     padding: 20px;
     overflow-y: auto;
     background: #f0f0f0;
 }

 .chat-message {
     margin-bottom: 15px;
     animation: message-appear 0.3s ease;
 }

 .bot-message .message-content {
     background: var(--whatsapp-light-green);
     color: #333;
     padding: 12px 16px;
     border-radius: 18px 18px 18px 4px;
     max-width: 80%;
     word-wrap: break-word;
     position: relative;
 }

 .user-message .message-content {
     background: var(--whatsapp-green);
     color: white;
     padding: 12px 16px;
     border-radius: 18px 18px 4px 18px;
     max-width: 80%;
     margin-left: auto;
     text-align: right;
     word-wrap: break-word;
 }

 .mini-chat-footer {
     border-top: 1px solid #eee;
     background: white;
 }

 .quick-actions {
     padding: 15px 20px 10px;
     display: flex;
     gap: 8px;
     overflow-x: auto;
     white-space: nowrap;
 }

 .quick-actions::-webkit-scrollbar {
     height: 4px;
 }

 .quick-actions::-webkit-scrollbar-track {
     background: #f1f1f1;
     border-radius: 2px;
 }

 .quick-actions::-webkit-scrollbar-thumb {
     background: var(--whatsapp-green);
     border-radius: 2px;
 }

 .quick-actions::-webkit-scrollbar-thumb:hover {
     background: var(--whatsapp-dark-green);
 }

 .quick-btn {
     background: var(--whatsapp-green);
     color: white;
     border: none;
     padding: 8px 12px;
     border-radius: 20px;
     font-size: 12px;
     cursor: pointer;
     transition: all 0.2s ease;
     flex-shrink: 0;
     white-space: nowrap;
 }

 .quick-btn:hover {
     background: var(--whatsapp-dark-green);
     transform: translateY(-2px);
 }

 .chat-input-container {
     display: flex;
     padding: 15px 20px;
     gap: 10px;
 }

 .chat-input {
     flex: 1;
     border: 2px solid #eee;
     border-radius: 25px;
     padding: 12px 20px;
     outline: none;
     font-size: 14px;
     transition: border-color 0.2s ease;
 }

 .chat-input:focus {
     border-color: var(--whatsapp-green);
 }

 .send-btn {
     background: var(--whatsapp-green);
     color: white;
     border: none;
     border-radius: 50%;
     width: 45px;
     height: 45px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
 }

 .send-btn:hover {
     background: var(--whatsapp-dark-green);
     transform: scale(1.1);
 }

 @keyframes message-appear {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @media (max-width: 768px) {
     .mini-chat {
         width: calc(100vw - 40px);
         right: 20px;
         left: 20px;
         bottom: 100px;
     }
 }

 .floating-whatsapp {
     position: fixed;
     bottom: 30px;
     right: 30px;
     background: white;
     color: white;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 1000;
     animation: pulse 2s infinite;
     border: 3px solid var(--whatsapp-green);
 }

 .floating-whatsapp:hover {
     transform: scale(1.1);
     border-color: var(--whatsapp-dark-green);
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     }

     50% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
     }

     100% {
         box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
     }
 }

 .typing-dots {
     display: inline-flex;
     align-items: center;
     gap: 3px;
     padding: 8px 0;
 }

 .typing-dots span {
     width: 8px;
     height: 8px;
     background-color: #999;
     border-radius: 50%;
     animation: typing 1.4s infinite ease-in-out;
 }

 .typing-dots span:nth-child(1) {
     animation-delay: 0s;
 }

 .typing-dots span:nth-child(2) {
     animation-delay: 0.2s;
 }

 .typing-dots span:nth-child(3) {
     animation-delay: 0.4s;
 }

 @keyframes typing {

     0%,
     60%,
     100% {
         transform: translateY(0);
         opacity: 0.4;
     }

     30% {
         transform: translateY(-10px);
         opacity: 1;
     }
 }

 /* Enhance existing message styles */
 .chat-message {
     margin-bottom: 15px;
     animation: message-appear 0.3s ease;
     opacity: 0;
     animation-fill-mode: forwards;
 }

 @keyframes message-appear {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Error message style */
 .error-message .message-content {
     background: #ffebee;
     color: #c62828;
     border-left: 4px solid #f44336;
 }

 .send-icon {
     width: 20px;
     height: 20px;
     filter: brightness(0) invert(1);
     /* Makes the icon white */
 }

 /* Alternative if you want to keep original colors */
 .send-icon-original {
     width: 20px;
     height: 20px;
 }

 @media (max-width: 991px) {
     .navbar-toggler {
         position: relative;
     }

     .navbar-toggler::after {
         content: '';
         position: absolute;
         right: -60px;
         top: 50%;
         transform: translateY(-50%);
         z-index: 1000;
     }
 }

 /* Video Section Styles */
 .video-section {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     padding: 80px 0;
     position: relative;
 }

 .video-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('https://www.toptal.com/designers/subtlepatterns/uploads/email-pattern.png');
     opacity: 0.05;
     z-index: 1;
 }

 .video-container {
     position: relative;
     z-index: 2;
 }

 .video-frame {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
     transition: all 0.4s ease;
     border: 3px solid var(--whatsapp-light-green);
 }

 .video-frame:hover {
     transform: translateY(-10px);
     box-shadow: 0 35px 80px rgba(37, 211, 102, 0.2);
 }

 .video-header {
     background: linear-gradient(135deg, var(--whatsapp-teal), var(--whatsapp-dark-green));
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     color: white;
 }

 .video-controls {
     display: flex;
     gap: 8px;
 }

 .video-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
 }

 .video-dot.red {
     background: #ff5f57;
 }

 .video-dot.yellow {
     background: #ffbd2e;
 }

 .video-dot.green {
     background: #28ca42;
 }

 .video-title {
     font-weight: bold;
     font-size: 0.9rem;
 }

 .video-brand {
     font-size: 1.2rem;
     color: var(--whatsapp-light-green);
 }

 .video-wrapper {
     position: relative;
     padding-bottom: 56.25%;
     /* 16:9 aspect ratio */
     height: 0;
     overflow: hidden;
 }

 .video-wrapper iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
 }

 .play-button {
     width: 80px;
     height: 80px;
     background: rgba(255, 255, 255, 0.2);
     border: 3px solid white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     margin-bottom: 20px;
     transition: all 0.3s ease;
 }

 .play-button:hover {
     transform: scale(1.1);
     background: rgba(255, 255, 255, 0.3);
 }

 .video-info {
     text-align: center;
 }

 .video-info h4 {
     margin-bottom: 10px;
     font-weight: bold;
 }

 .video-feature {
     background: white;
     padding: 20px;
     border-radius: 15px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     border: 2px solid transparent;
 }

 .video-feature:hover {
     transform: translateY(-5px);
     border-color: var(--whatsapp-green);
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
 }

 .video-feature i {
     font-size: 2rem;
     margin-bottom: 10px;
 }

 .video-feature h6 {
     font-weight: bold;
     color: var(--whatsapp-teal);
     margin-bottom: 5px;
 }

 /* Mobile Responsiveness */
 @media (max-width: 768px) {
     .video-header {
         padding: 12px 15px;
         flex-direction: column;
         gap: 10px;
     }

     .video-title {
         font-size: 0.8rem;
     }

     .video-feature {
         margin-bottom: 20px;
     }

     .play-button {
         width: 60px;
         height: 60px;
         font-size: 1.5rem;
     }
 }

 /* Hide overlay on mobile to ensure video is accessible */
 @media (max-width: 768px) {
     .video-overlay {
         display: none;
     }
 }

 /* Animated Background Elements */
 .animated-background {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     overflow: hidden;
     pointer-events: none;
     z-index: 1;
 }

 .message-bubble {
     position: absolute;
     width: 40px;
     height: 40px;
     background: rgba(37, 211, 102, 0.1);
     border: 2px solid rgba(37, 211, 102, 0.3);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--whatsapp-green);
     font-size: 16px;
 }

 .bubble-1 {
     top: 10%;
     left: 5%;
     animation: float-message 8s ease-in-out infinite;
 }

 .bubble-2 {
     top: 70%;
     right: 10%;
     animation: float-message 12s ease-in-out infinite reverse;
 }

 .bubble-3 {
     top: 30%;
     left: 80%;
     animation: send-message 6s ease-in-out infinite;
 }

 .bubble-4 {
     bottom: 20%;
     left: 15%;
     animation: notification-bounce 4s ease-in-out infinite;
 }

 .bubble-5 {
     top: 50%;
     right: 5%;
     animation: delivered-check 10s ease-in-out infinite;
 }

 .message-line {
     position: absolute;
     height: 2px;
     background: linear-gradient(90deg,
             transparent 0%,
             rgba(37, 211, 102, 0.3) 20%,
             rgba(37, 211, 102, 0.6) 50%,
             rgba(37, 211, 102, 0.3) 80%,
             transparent 100%);
     width: 200px;
 }

 .line-1 {
     top: 25%;
     left: -200px;
     animation: message-travel 8s ease-in-out infinite;
 }

 .line-2 {
     top: 60%;
     right: -200px;
     animation: message-travel 10s ease-in-out infinite reverse;
 }

 .line-3 {
     top: 80%;
     left: -200px;
     animation: message-travel 12s ease-in-out infinite;
 }

 .notification-ping {
     position: absolute;
     width: 20px;
     height: 20px;
     background: var(--whatsapp-green);
     border-radius: 50%;
     opacity: 0;
 }

 .ping-1 {
     top: 15%;
     right: 20%;
     animation: ping-animation 6s ease-in-out infinite;
 }

 .ping-2 {
     bottom: 30%;
     left: 25%;
     animation: ping-animation 8s ease-in-out infinite 2s;
 }

 .ping-3 {
     top: 45%;
     left: 10%;
     animation: ping-animation 10s ease-in-out infinite 4s;
 }

 /* Animation Keyframes */
 @keyframes float-message {

     0%,
     100% {
         transform: translateY(0px) translateX(0px) rotate(0deg);
         opacity: 0.6;
     }

     25% {
         transform: translateY(-20px) translateX(10px) rotate(90deg);
         opacity: 1;
     }

     50% {
         transform: translateY(-10px) translateX(-5px) rotate(180deg);
         opacity: 0.8;
     }

     75% {
         transform: translateY(-30px) translateX(15px) rotate(270deg);
         opacity: 1;
     }
 }

 @keyframes send-message {
     0% {
         transform: translateX(0) scale(1);
         opacity: 0.6;
     }

     50% {
         transform: translateX(-100px) scale(1.2);
         opacity: 1;
     }

     100% {
         transform: translateX(-200px) scale(0.8);
         opacity: 0;
     }
 }

 @keyframes notification-bounce {

     0%,
     100% {
         transform: scale(1);
         opacity: 0.6;
     }

     25% {
         transform: scale(1.3);
         opacity: 1;
     }

     50% {
         transform: scale(1.1);
         opacity: 0.8;
     }

     75% {
         transform: scale(1.2);
         opacity: 1;
     }
 }

 @keyframes delivered-check {

     0%,
     100% {
         transform: rotate(0deg) scale(1);
         opacity: 0.6;
     }

     50% {
         transform: rotate(360deg) scale(1.5);
         opacity: 1;
         color: var(--whatsapp-dark-green);
     }
 }

 @keyframes message-travel {
     0% {
         left: -200px;
         opacity: 0;
         width: 200px;
     }

     50% {
         opacity: 1;
         width: 300px;
     }

     100% {
         left: 100%;
         opacity: 0;
         width: 150px;
     }
 }

 @keyframes ping-animation {
     0% {
         transform: scale(0);
         opacity: 1;
     }

     50% {
         transform: scale(1);
         opacity: 0.8;
     }

     100% {
         transform: scale(3);
         opacity: 0;
     }
 }

 /* Pulse effect for message bubbles */
 .message-bubble::before {
     content: '';
     position: absolute;
     top: -5px;
     left: -5px;
     right: -5px;
     bottom: -5px;
     background: rgba(37, 211, 102, 0.2);
     border-radius: 50%;
     animation: pulse-ring 3s ease-out infinite;
 }

 @keyframes pulse-ring {
     0% {
         transform: scale(0.8);
         opacity: 0.8;
     }

     100% {
         transform: scale(2);
         opacity: 0;
     }
 }

 /* Mobile adjustments */
 @media (max-width: 768px) {
     .message-bubble {
         width: 30px;
         height: 30px;
         font-size: 12px;
     }

     .message-line {
         width: 150px;
     }

     .notification-ping {
         width: 15px;
         height: 15px;
     }

     /* Reduce animation intensity on mobile */
     .bubble-1,
     .bubble-2,
     .bubble-3,
     .bubble-4,
     .bubble-5 {
         animation-duration: 12s;
     }
 }

 /* Pause animations when user prefers reduced motion */
 @media (prefers-reduced-motion: reduce) {

     .message-bubble,
     .message-line,
     .notification-ping {
         animation: none;
     }
 }
/* Seamless Video Styles */
.seamless-video {
    width: 150%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 25px 25px 0 0;
    position: absolute;
    top: 0;
    left: -25%;
    z-index: 1;
    transition: all 0.3s ease;
}

.video-mockup {
    position: relative;
    border-radius: 25px 25px 0 0;
    overflow: visible;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 25px rgba(37, 211, 102, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(37, 211, 102, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-mockup:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.2),
        0 15px 40px rgba(37, 211, 102, 0.2);
}

.seamless-video {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 25px 25px 0 0;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(37, 211, 102, 0.05) 0%,
        rgba(18, 140, 126, 0.05) 50%,
        rgba(7, 94, 84, 0.05) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 25px 25px 0 0;
    z-index: 2;
}

.video-mockup:hover .video-overlay {
    opacity: 1;
}

/* Subtle floating animation */
.video-mockup {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.video-mockup:hover {
    animation: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .seamless-video-container {
        padding: 10px;
        transform: scale(1.1);
        margin: 30px 0;
    }
    
    .video-mockup {
        border-radius: 20px;
        margin-bottom: 30px;
    }
    
    .seamless-video {
        border-radius: 20px 20px 0 0;
    }
    
    .video-overlay {
        border-radius: 20px 20px 0 0;
    }
    
    /* Reduce animation intensity on mobile */
    .video-mockup {
        animation: gentle-float 8s ease-in-out infinite;
    }
    
    @keyframes gentle-float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-2px);
        }
    }
}

/* Chrome Web Store Badge Styles - Right Positioned */
.chrome-badge-container-right {
    position: absolute;
    bottom: 1px;
    right: 1%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.chrome-badge-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.chrome-badge-link:hover {
    transform: translateY(-3px) scale(1.05);
    filter: brightness(1.1);
}

.chrome-badge-img {
    height: 58px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

.chrome-badge-link:hover .chrome-badge-img {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    animation: none;
}

.chrome-trust-text {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.chrome-trust-text i {
    color: #4CAF50;
}

/* Mobile adjustments for Chrome badge */
@media (max-width: 768px) {
    .chrome-badge-container-right {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
        animation: none;
    }
    
    .chrome-badge-img {
        height: 50px;
    }
    
    .chrome-trust-text {
        font-size: 0.8rem;
    }
}