/* Global Styles */

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 1000;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 90px;           /* Increased from 68px */
    height: 90px;          /* Increased from 68px */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    font-size: 3.2rem;     /* Increased from 2.6rem */
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .whatsapp-btn {
        width: 100px;       /* Bigger on mobile */
        height: 100px;
        font-size: 3.8rem;
        bottom: 18px;
        right: 12px;
    }
}



/* Cartoon Hero Image Styles */

.hero-img-watchlyy {
    position: absolute;
    right: 0;
    bottom: 0;
    left: auto;
    z-index: 2;
    pointer-events: none;
    width: 28vw;
    max-width: 200px;
    min-width: 75px;
    opacity: 0.88;
    transform: rotate(-40deg);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0 1vw 1vw 0;
}
@media (max-width: 991.98px) {
    .hero-img-watchlyy {
        right: 0;
        left: auto;
        bottom: 0;
        top: auto;
        width: 36vw;
        max-width: 120px;
        min-width: 60px;
        padding: 0 0.5vw 0.5vw 0;
    }
}
@media (max-width: 767.98px) {
    .hero-img-watchlyy {
        right: 8vw;
        left: auto;
        bottom: 4vw;
        top: auto;
        width: 40vw;
        max-width: 90px;
        min-width: 38px;
        padding: 0 0.2vw 0.2vw 0;
    }
}

.cartoon-hero-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.2s;
}
.shake {
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes shake {
    10%, 90% { transform: translateX(-2px); }
    20%, 80% { transform: translateX(4px); }
    30%, 50%, 70% { transform: translateX(-8px); }
    40%, 60% { transform: translateX(8px); }
}
@media (max-width: 767.98px) {
    .cartoon-hero-img {
        max-height: 220px;
        margin-bottom: 1rem;
    }
    .hero-btn-group {
        flex-direction: column !important;
        align-items: stretch !important;
        margin-bottom: 1.5rem !important;
        position: relative;
        z-index: 10;
    }
    .hero-btn-group .btn-lg {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 0.75rem;
        box-sizing: border-box;
        z-index: 11;
        touch-action: manipulation;
        box-shadow: 0 2px 8px rgba(33,52,72,0.12);
        position: relative;
    }
    .hero-btn-group .btn-lg:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 575.98px) {
    .cartoon-hero-img {
        max-height: 340px;
        cursor: pointer;
        margin-top: 0;
        margin-bottom: 0;
        display: block;
    }
}
@media (max-width: 768px) {
    #cartoon-hero-img {
        max-height: 220px;
        margin-top: 24px;
        margin-bottom: 16px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        position: relative;
    }
}
@media (max-width: 480px) {
    #cartoon-hero-img {
        max-height: 160px;
        margin-top: 32px;
        margin-bottom: 12px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        position: relative;
    }
}
:root {
    --primary-color: #213448;
    --secondary-color: #547792;
    --accent-color: #94b4c1;
    --background-color: #ecefca;
    --dark-color: #213448;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding-top: 76px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 95vh;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
}
@media (max-width: 991.98px) {
    .hero-section {
        height: 110vh;
        min-height: 600px;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        height: 100vh;
        min-height: 520px;
        padding-bottom: 2rem;
    }
}
@media (max-width: 575.98px) {
    .hero-section {
        height: 105vh;
        min-height: 480px;
    }
}
@media (max-width: 767.98px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
        padding-bottom: 2rem;
    }
}

/* Features Section */
.features {
    padding: 60px 0;
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: #ecefca;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #94b4c1, #94b4c1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(94, 180, 193, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.feature-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #333;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    color: #666;
}

.feature-list li i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #94b4c1, #94b4c1);
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a2a3a;
    transform: translateY(-2px);
}

/* About Section */
.about {
    background: linear-gradient(to right, rgba(94, 180, 193, 0.05), rgba(94, 180, 193, 0.1));
}

.about-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 180, 193, 0.1);
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.about h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about .lead {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #ecefca 0%, #94b4c1 100%);
    padding: 80px 0;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    background: #ecefca;
    margin-bottom: 30px;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-card.popular {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    font-size: 0.85em;
    border-bottom-left-radius: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.recommended-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #94b4c1;
    color: #213448;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 0 0 10px 10px;
    z-index: 2;
    text-align: center;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-card .card-title {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.pricing-card .price {
    font-size: 3em;
    color: var(--primary-color);
    margin: 25px 0;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.pricing-card .currency {
    font-size: 0.4em;
    margin-top: 8px;
    font-weight: 600;
}

.pricing-card .period {
    font-size: 0.3em;
    color: var(--secondary-color);
    margin-top: 12px;
    font-weight: 500;
}

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.pricing-card .features-list li {
    padding: 10px 0;
    color: #547792;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .features-list i {
    color: #94b4c1;
    font-size: 1.2em;
}

.pricing-card .btn-lg {
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.pricing-card .btn-lg:hover {
    transform: scale(1.05);
}

.pricing-card.popular .btn-lg {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pricing-card.popular .btn-lg:hover {
    background-color: #1a2a3a;
    border-color: #1a2a3a;
}

.pricing-card .card-body {
    padding: 40px 30px;
}

/* Payment Methods Section */
.payment-methods {
    margin-top: 60px;
    padding: 30px;
    background: #ecefca;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-methods i {
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 0 2rem;
}

.footer h5 {
    color: #ecefca;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer p {
    margin-bottom: 1rem;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer .social-links {
    text-align: center;
    margin-top: 2rem;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ecefca;
    margin: 0 0.5rem;
    transition: all 0.3s;
}

.footer .social-links a:hover {
    background: var(--primary-color);
    color: #ecefca;
    text-decoration: none;
}

.footer .copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
    }
}
.display-3 {
    font-size: 2rem;
    line-height: 1.15;
}
@media (min-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
}
@media (min-width: 992px) {
    .display-3 {
        font-size: 3rem;
    }
}
.hero-section .lead {
    font-size: 1rem;
}
@media (min-width: 768px) {
    .hero-section .lead {
        font-size: 1.15rem;
    }
}
@media (min-width: 992px) {
    .hero-section .lead {
        font-size: 1.2rem;
    }
}

/* Pricing Cards */
.pricing-card {
    background: #ecefca;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    padding: 2rem;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.pricing-card .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--secondary-color);
}

.pricing-card ul {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.pricing-card .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Contact Page Styles */
.contact-form {
    background: #ecefca;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: var(--primary-color);
    color: #ecefca;
    padding: 30px;
    border-radius: 15px;
}

.contact-info i {
    margin-right: 10px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@media (max-width: 768px) {
  .whatsapp-btn {
    width: 48px;
    height: 48px;
    font-size: 22px;
    bottom: 16px;
    right: 16px;
  }
}
@media (max-width: 480px) {
  .whatsapp-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
    bottom: 10px;
    right: 10px;
  }
  .whatsapp-btn::before {
    display: none !important;
  }
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    text-decoration: none;
    background-color: #128C7E;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn::before {
    content: 'Chat with us on WhatsApp';
    position: absolute;
    right: 70px;
    padding: 5px 10px;
    background: #333;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}
@media (max-width: 768px) {
  .whatsapp-btn::before {
    display: none !important;
  }
}

.whatsapp-btn:hover::before {
    opacity: 1;
}

/* Image Styles */
.feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #ecefca;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stat-item {
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-item i {
    color: #00f7ff;
    filter: drop-shadow(0 0 5px rgba(0, 247, 255, 0.5));
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #ecefca;
}

.stat-item p {
    color: #ecefca;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #ecefca;
}

.testimonial-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.testimonial-card .card-body {
    padding: 2rem;
    position: relative;
}

.testimonial-card .card-body::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 60px;
    color: rgba(0, 123, 255, 0.1);
    font-family: serif;
}

.stars {
    color: #ffc107;
}

.rounded-circle {
    border: 3px solid #007bff;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .rounded-circle {
    transform: scale(1.1);
}

/* Reseller Program Section */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card i {
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

.list-unstyled li {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.list-unstyled li:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.list-unstyled li i {
    transition: transform 0.3s ease;
}

.list-unstyled li:hover i {
    transform: scale(1.2);
}
