﻿.elementor-icon-list-items {
    border-radius: 8px; /* Rounded corners */
    padding: 0px; /* Padding around the list */
}

.elementor-icon-list-item:hover {
    /*background-color: #214de9;*/ /* Light blue on hover */
    transition: background-color 0.3s; /* Smooth transition */
    color: #fff;
}

.buy-button {
    background: linear-gradient(45deg, #214de9, #597eff, #214de9);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 20px;
}

.video-showcase {
    width: 100%;
    height: 200px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    font-weight: bold;
}

.play-button {
    width: 200px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    border: 1px solid #00aaff; /* Border for play button */
    cursor: pointer; /* Cursor to pointer for play button */
}

    .play-button:after {
        content: '';
        border: solid transparent;
        border-width: 35px 0 35px 38px;
        border-left-color: #597eff; /* Play triangle color */
    }
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

video {
    width: 100%; /* Responsive video */
    max-width: 600px; /* Set maximum width */
}




.card h3 {
    color: #214de9;
}

.card p {
    color: #666;
}

.icon {
    font-size: 40px;
    color: #214de9;
}

</style >


<style >
body {
    font-family: 'Poppins', sans-serif;
    background-color: #F0F5FF;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

    .header h1 {
        font-size: 2.5em;
        color: #003366;
        margin-bottom: 10px;
    }

.highlight {
    color: #214de9;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0px 0;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 0px;
    margin-left: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%; /* Set a fixed width for cards */
    text-align: center;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .card h3 {
        color: #003366;
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 16px;
    }
/*
        .btn {
            background-color: #214de9;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 25px;
            text-decoration: none;
            transition: background-color 0.3s, transform 0.3s;
            margin-top: 10px;
        }*/

.btn:hover {
    transform: translateY(-2px);
}

.icon-wrapper {
    font-size: 40px;
    color: #214de9;
    margin-bottom: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #3498db;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}







/* Google Font */
.fa-cog {
    transform-origin: center;
    animation: spin 1s infinite linear; /* Adjust the speed and type of animation here */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* Intro Section */
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    /*height: 100vh;*/
    text-align: center;
    background: #ffffff;
    padding: 2rem;
}

.containerAbout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1100px;
    text-align: left;
}

.text-content {
    flex: 1;
    padding: 2rem;
}

    .text-content h1 {
        font-size: 3rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

        .text-content h1 span {
            color: #214de9;
        }

    .text-content p {
        font-size: 1.8rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #214de9, #597eff, #214de9);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

    .cta-button:hover {
        background: #214de9;
        color: #fff;
        transform: scale(1.05);
    }

.image-content {
    flex: 1;
    text-align: center;
}

    .image-content img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

</style >
<style >
.social-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.social-icons ul li a {
    color: #214de9;
    font-size: 20px;
    transition: 0.3s ease-in-out;
}

    .social-icons ul li a:hover {
        color: #ffffff;
        transform: scale(1.2);
    }

</style >

<style >
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Poppins,'Inter', sans-serif;
    line-height: 1.6;
    margin-bottom: 0px
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 20px;*/
}

/* Header Section */
.header {
    text-align: center;
}

    .header h1 {
        font-size: 2.8em;
        font-weight: 800;
        color: #2c3e50;
        margin-bottom: 10px;
        background: linear-gradient(45deg, #14161c, #142746);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    .header p {
        font-size: 1.2em;
        color: white;
        font-weight: 400;
    }

/* Card Grid Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Card Styles */
.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

    .card h3 {
        font-size: 1.5em;
        font-weight: 700;
        margin-bottom: 15px;
        text-align: center;
    }

    .card h2 i {
        margin-right: 10px;
        color: #0d0d0d;
    }

.lead1 {
    color: white !important;
}

.card p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

    .card p strong {
        color: #2c3e50;
    }

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers content horizontally */
    text-align: center; /* Ensures text inside the card is centered */
}

    .card .btn {
        display: block;
        width: 50%; /* Adjust width as needed */
        background: linear-gradient(45deg, #214de9, #597eff, #214de9);
        color: #ffffff;
        padding: 12px 0;
        text-align: center;
        border-radius: 8px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        margin-top: 20px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .card .btn:hover {
            opacity: 0.9;
            transform: translateY(-3px);
        }


        .card .btn i {
            margin-right: 8px;
        }

/* Feature Card Specific Styles */
.feature-card {
    text-align: center;
}

    .feature-card .icon-wrapper {
        font-size: 2.5em;
        color: #1c2b3c;
        margin-bottom: 20px;
    }

    .feature-card h3 {
        font-size: 1.6em;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 15px;
    }

    .feature-card .description {
        font-size: 1.1em;
        color: #4a5568;
        margin-bottom: 20px;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2em;
    }

    .header p {
        font-size: 1em;
    }

    .card h2 {
        font-size: 1.6em;
    }

    .card p {
        font-size: 1em;
        font-weight: 400
    }

    .feature-card h3 {
        font-size: 1.4em;
    }

    .feature-card .description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8em;
    }

    .card h2 {
        font-size: 1.4em;
    }

    .card .btn {
        font-size: 0.9em;
        padding: 5px 0;
    }
}

</style >



<style >
/* General Styles */
.container {
    max-width: 1200px;
    margin: auto;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #214de9;
}



/* Pricing Cards */
.pricing-column {
    padding: 20px;
    display: flex;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 500px; /* Ensures equal height */
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

.pricing-card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card-price span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.pricing-card-price small {
    font-size: 1.2rem;
    color: #666;
}

.pricing-card-body ul {
    list-style: none;
    padding: 0;
    flex-grow: 1;
}

    .pricing-card-body ul li {
        font-size: 1.2rem;
        padding: 12px 0;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

        .pricing-card-body ul li::before {
            content: '\2713'; /* Checkmark Icon */
            color: #28a745;
            font-weight: bold;
            margin-right: 12px;
        }

.pricing-card-footer .btn {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    text-align: center;
}

    .pricing-card-footer .btn:hover {
        background: #0056b3;
    }

/* Highlight Popular Plan */
.popular-plan {
    background: linear-gradient(135deg, #0d0d0d, #414141);
    color: #fff;
}

    .popular-plan .pricing-card-header h3,
    .popular-plan .pricing-card-price span,
    .popular-plan .pricing-card-body ul li {
        color: #fff;
    }

        .popular-plan .pricing-card-body ul li::before {
            color: #fff;
        }

p {
    color: #14161c !important;
}

</style >

<style >
:root {
    --primary: #ff206e;
    --glass: rgba(255, 255, 255, 0.1);
    --player-width: 800px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Player Container */
.player-container {
    width: 100%;
    max-width: var(--player-width);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
    aspect-ratio: 16/9;
}

    .player-container:hover {
        transform: translateY(-5px);
    }

/* Video Element */
#yt-player {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

/* Content Section */
.companion-content {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

    .companion-content h1 {
        color: white;
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .companion-content p {
        font-size: 1.1rem;
        line-height: 1.6;
    }

/* Controls */
.controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    backdrop-filter: blur(10px);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
}

.player-container:hover .controls {
    transform: translateY(0);
}

/* Play Button */
.play-btn {
    background: var(--primary);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--primary);
    transition: all 0.3s;
}

    .play-btn i {
        color: white;
        font-size: 1.2rem;
        margin-left: 3px;
    }

/* Progress Bar */
.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    position: absolute;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    width: 0;
    transition: width 0.1s linear;
}

/* Time Display */
.time-display {
    color: white;
    font-size: 0.9rem;
    font-variant-numeric: tabular-nums;
}

/* Control Buttons */
.control-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s;
}

    .control-btn:hover {
        color: white;
        transform: scale(1.15);
    }

/* Quality Menu */
.quality-menu {
    position: relative;
}

.quality-options {
    position: absolute;
    bottom: 40px;
    right: 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 8px;
    display: none;
    min-width: 120px;
}

.quality-menu:hover .quality-options {
    display: block;
}

.quality-option {
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

    .quality-option:hover {
        background: rgba(255,255,255,0.1);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .player-container {
        border-radius: 10px;
    }

    .controls {
        padding: 15px;
        gap: 10px;
    }

    .play-btn {
        width: 35px;
        height: 35px;
    }

    .time-display {
        font-size: 0.8rem;
    }

    .control-btn {
        font-size: 1rem;
    }
}


