  /* start main page style */

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

/* Banner */
.home-banner {
    background: linear-gradient(90deg, #00B0FF, #8A2BE2);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background-color: #111;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 176, 255, 0.15) 0%, transparent 50%);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.benefit {
    max-width: 300px;
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    position: relative;
    z-index: 1;
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 176, 255, 0.2);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.benefit h3 {
    font-size: 18px;
    font-weight: 500;
}

.disclaimer {
    margin-top: 50px;
    font-size: 14px;
    color: #999;
}

.disclaimer a {
    color: #00B0FF;
    text-decoration: none;
}

/* Core Products Section */
.core-products {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #111;
    color: white;
}

.core-products::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 176, 255, 0.1) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    border-radius: 50%;
}

.core-products::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    border-radius: 50%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    position: relative;
    font-weight: 800;
    color: white;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00B0FF, #8A2BE2);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.highlight {
    color: #00B0FF;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: rgba(0, 176, 255, 0.2);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.product-list {
    position: relative;
    z-index: 1;
}

.product-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.product-item:last-child {
    border-bottom: none;
}

.product-info {
    flex: 1;
    padding-right: 30px;
    min-width: 300px;
}

.product-info h3 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
    position: relative;
    display: inline-block;
}

.product-info h3::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #00B0FF;
    transition: width 0.3s ease;
}

.product-item:hover .product-info h3::after {
    width: 100%;
}

.product-info p {
    color: #ccc;
    font-size: 16px;
    max-width: 500px;
}

.product-pricing {
    min-width: 300px;
    text-align: right;
}

.price-tag {
    margin-bottom: 10px;
}

.price-label {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.price {
    font-size: 42px;
    font-weight: 800;
    color: white;
    display: inline-block;
    position: relative;
}

.price-unit {
    font-size: 16px;
    color: #ccc;
    margin-left: 5px;
}

.free-tier {
    font-size: 15px;
    color: #ccc;
    margin-bottom: 20px;
}

.free-tier span {
    color: #4CAF50;
    font-weight: 600;
}

.view-pricing-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #00B0FF;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.view-pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00B0FF;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.view-pricing-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.view-pricing-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-pricing-btn:hover svg {
    transform: translateX(5px);
}

.request-info-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background-color: transparent;
    border: 2px solid #8A2BE2;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.request-info-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #8A2BE2;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.request-info-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.request-info-btn svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.request-info-btn:hover svg {
    transform: translateX(5px);
}

/* Calculator Section */
.calculator {
    background-color: #121212;;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.calculator::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 176, 255, 0.05) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.calculator h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
    color: white;
}

.calculator h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00B0FF, #8A2BE2);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.calculator-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.calculator-form {
    flex: 1;
    padding: 40px;
    border-right: 1px solid #f0f0f0;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #00B0FF;
    box-shadow: 0 0 0 3px rgba(0, 176, 255, 0.1);
    background-color: white;
}

.calculate-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #00B0FF, #8A2BE2);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 176, 255, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 176, 255, 0.4);
}

.calculator-result {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f9f9f9, #f5f5f5);
}

.calculator-result h3 {
    font-size: 20px;
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
}

.result-amount {
    font-size: 56px;
    font-weight: 800;
    color: #00B0FF;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.result-amount::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: rgba(0, 176, 255, 0.1);
    bottom: 8px;
    left: 0;
    z-index: -1;
    border-radius: 5px;
}

.result-note {
    font-size: 16px;
    color: #4CAF50;
    font-weight: 500;
}


/* Floating elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
}

.float-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

.float-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 5%;
    animation: float 12s infinite ease-in-out;
}

.float-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 20%;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .calculator-container {
        flex-direction: column;
    }

    .calculator-form {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .product-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-info {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .product-pricing {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
    }

    .nav-links {
        margin: 20px 0;
        justify-content: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Particle animation */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

/* start main page in Pricing Calculator section  */

.pricing-section-container {
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --background: #121212;
    --card-bg: #1e1e1e;
    --border: #333333;
    --text: #ffffff;
    --text-secondary: #a0a0a0;
    --slider-bg: #333333;
    --slider-thumb: #6366f1;
}

.pricing-section-container {
    background-color: var(--background);
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    text-align: center;
    margin: 30px 0;
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.calculator {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .calculator {
        grid-template-columns: 1fr;
    }
}

.calculator-inputs {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.calculator-results {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.toggle-container {
    display: flex;
    background-color: var(--slider-bg);
    border-radius: 50px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.toggle-option {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
    font-weight: 500;
}

.toggle-option.active {
    color: white;
}

.toggle-slider {
    position: absolute;
    height: 100%;
    background-color: var(--primary);
    border-radius: 50px;
    transition: transform 0.3s ease;
    width: 50%;
    top: 0;
    left: 0;
}

.toggle-slider.right {
    transform: translateX(100%);
}

.input-group h3 {
    width: 100%;
    margin-bottom: 10px;
}

.input-group h3 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.radio-button {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.radio-button.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.slider-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.number-input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
    background-color: var(--background);
    color: var(--text);
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    height: 6px;
    background-color: var(--slider-bg);
    border-radius: 3px;
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background-color: var(--slider-thumb);
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background-color: var(--slider-thumb);
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.checkbox-button {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.checkbox-button.active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.invoice-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.invoice-item .details {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.invoice-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    border-top: 1px solid var(--border);
    margin-top: 15px;
    padding-top: 15px;
}

.invoice-item.free {
    color: #10b981;
}

.breakdown {
    background-color: var(--background);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.breakdown h3 {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 500;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.get-started {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 25px;
    transition: background-color 0.2s;
}

.get-started:hover {
    background-color: var(--primary-hover);
}

.currency-selector {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.currency-selector select {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background-color: var(--background);
    color: var(--text);
    font-size: 0.9rem;
    cursor: pointer;
}

/* end main page style */

/* start pricing style */

.pricing-main-container {
    background-color: #0f1624;
    color: #fff;
    padding: 20px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.price-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-icon {
    background: linear-gradient(135deg, #4f56ff, #0066cc);
    border-radius: 12px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gift-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.gift-icon img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}

.price-header h1  {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    margin-bottom: 5px;
}

.pricing-table {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    background: linear-gradient(90deg, #1a2942, #101a2e);
    padding: 20px 0;
    text-align: center;
}

/* Video resolution table specific styling */
.pricing-table:last-of-type .pricing-header {
    grid-template-columns: 1fr 1fr;
}

.column-header {
    font-size: 18px;
    font-weight: bold;
    color: #a5b4fc;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.pricing-row:hover {
    background-color: rgba(79, 86, 255, 0.05);
}

/* Video resolution table specific styling */
.pricing-table:last-of-type .pricing-row {
    grid-template-columns: 1fr 1fr;
}

.row-label {
    padding: 18px 20px;
    font-weight: bold;
    background-color: rgba(16, 26, 46, 0.7);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}

.pricing-cell {
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: #cbd5e1;
    font-size: 14px;
    white-space: normal;
    hyphens: auto;
}

.pricing-table:nth-of-type(1) .pricing-cell {
    font-size: 13px;
}

.voice-pricing-section .pricing-cell {
    font-size: 16px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

/* Ensure consistent styling for price and minutes text */
.voice-pricing-section .pricing-cell span {
    display: inline-block;
    font-size: 16px;
}

/* Highlight special pricing cells */
.audio-price {
    color: #4f56ff;
    font-weight: 600;
    font-size: 16px;
}

.footnote {
    margin: 20px 0;
    font-size: 14px;
    color: #94a3b8;
    padding: 15px;
    background-color: rgba(16, 26, 46, 0.4);
    border-radius: 10px;
    border-left: 4px solid #4f56ff;
}

.footnote a {
    color: #4f56ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.footnote a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

.addon-section h2 {
    font-size: 16px;
    margin: 30px 0 15px;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.addon-table {
    margin-top: 15px;
}

.currency-selector {
    margin-left: auto;
    display: flex;
    align-items: center;
    background-color: rgba(16, 26, 46, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.currency-selector label {
    margin-right: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.currency-selector select {
    background-color: rgba(16, 26, 46, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
    padding-right: 30px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 10;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.currency-selector select option {
    background-color: #101a2e;
    color: #fff;
    padding: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    z-index: 20;
}

.currency-selector select option:hover,
.currency-selector select option:focus {
    background-color: rgba(79, 86, 255, 0.2);
}

.currency-selector select:hover {
    border-color: #4f56ff;
    background-color: rgba(79, 86, 255, 0.1);
}

.currency-selector select:focus {
    border-color: #4f56ff;
    box-shadow: 0 0 0 3px rgba(79, 86, 255, 0.2);
}

/* Voice Pricing Section Styles */
.voice-pricing-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.voice-pricing-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #e2e8f0;
    position: relative;
    padding-left: 15px;
}

.voice-pricing-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #4f56ff, #0066cc);
    border-radius: 3px;
}

.voice-pricing-section h3 {
    font-size: 20px;
    margin: 25px 0 15px;
    color: #a5b4fc;
}

.pricing-note {
    margin: 20px 0;
    font-size: 14px;
    color: #94a3b8;
    padding: 15px;
    background-color: rgba(16, 26, 46, 0.4);
    border-radius: 10px;
    border-left: 4px solid #4f56ff;
}

.pricing-note a {
    color: #4f56ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.pricing-note a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Cost calculation section styling */
.voice-pricing-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.voice-pricing-section p strong {
    display: block;
    padding: 15px;
    margin: 20px 0;
    background: linear-gradient(90deg, rgba(79, 86, 255, 0.1), rgba(0, 102, 204, 0.05));
    border-radius: 8px;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #4f56ff;
}

.voice-pricing-section a {
    color: #4f56ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.voice-pricing-section a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .container {
        padding: 20px;
    }

    .pricing-header, .pricing-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .price-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .currency-selector {
        margin-left: 0;
        margin-top: 15px;
    }

    .pricing-header, .pricing-row {
        font-size: 14px;
    }

    .pricing-cell {
        padding: 15px 10px;
    }
}

@media (max-width: 640px) {
    .pricing-table:not(:last-of-type) .pricing-header,
    .pricing-table:not(:last-of-type) .pricing-row {
        grid-template-columns: 1.5fr repeat(4, 1fr);
        overflow-x: auto;
    }

    .column-header {
        font-size: 14px;
    }

    .row-label {
        position: sticky;
        left: 0;
        z-index: 1;
    }

    .voice-pricing-section h2 {
        font-size: 20px;
    }

    .voice-pricing-section h3 {
        font-size: 18px;
    }
}
.voice-pricing-section .pricing-table .pricing-header {
    grid-template-columns: 1fr 2fr;
}

.voice-pricing-section .pricing-table .pricing-row {
    grid-template-columns: 1fr 2fr;
}

.voice-pricing-section .pricing-header .column-header {
    padding: 0 15px;
    word-break: break-word;
    line-height: 1.3;
}

.voice-pricing-section .pricing-cell {
    font-size: 14px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.3;
}

/* start usecase page style  */

    .usecase-main-container {
        background-color: #0E0F26;
        color: #ffffff;
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        overflow-x: hidden;
    }

    #stars-canvas {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .usecase-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .usecase-header1 {
        text-align: center;
        margin-bottom: 4rem;
        padding-top: 2rem;
        grid-column: 1 / -1;
    }

    .usecase-header1 h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #fff;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
    }

    .usecase-section {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border-radius: 8px;
        padding: 2rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .usecase-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255,255,255,0.15);
        background: rgba(255, 255, 255, 0.08);
    }

    .usecase-section h2 {
        color: #fff;
        margin-bottom: 1rem;
        font-size: 1.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .usecase-section ul {
        list-style: none;
        margin-left: 1rem;
    }

    .usecase-section li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

    .usecase-section li:before {
        content: '→';
        position: absolute;
        left: 0;
        color: #4a90e2;
    }

    .tagline {
        font-style: italic;
        color: #4a90e2;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

    @media (max-width: 768px) {
        .usecase-container {
            padding: 1rem;
            grid-template-columns: 1fr;
        }

        .usecase-header1 h1 {
            font-size: 2rem;
        }

        .usecase-section {
            padding: 1.5rem;
            margin: 0;
        }
    }
/* end usecase page style  */

/* start otpCalculator page style  */

.otp-maincontainer {
    background-color: #0f1624;
    color: #fff;
    padding: 20px;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.container {
    width: 100%;
    max-width: 600px;
}
.otp-calculator-card {
    background: linear-gradient(90deg, #1a2942, #101a2e);
    /* background-color: #0F1624; */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.country-selector {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.country-selector label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}
.select-wrapper {
    position: relative;
    width: 100%;
    margin-right: 20px;
    display: flex;
    align-items: center;
}
.countrystyle {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust spacing between elements */
}

.select-wrapper {
    flex-grow: 1; /* Allows the select dropdown to take up the remaining space */
}

#reset {
    position: static; /* Remove absolute positioning */
    width: 40px;
    height: 40px;
    background-color: rgba(16, 26, 46, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
#reset i {
    font-size: 16px; /* Adjust the icon size */
}
#reset:hover {
    border-color: #4f56ff;
    background-color: rgba(79, 86, 255, 0.1);

    border-color: #4f56ff;
    box-shadow: 0 0 0 3px rgba(79, 86, 255, 0.2);
}


.divider {
    height: 1px;
    background-color: #eee;
    margin: 5px 0;
}

.slider-container {
    padding: 30px;
}

.slider-group {
    margin-bottom: 35px;
}

.slider-group:last-child {
    margin-bottom: 0;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #faf883;
    font-weight: 500;
}

.slider-label i {
    margin-right: 8px;
    color: #4a6cf7;
}

.fab.fa-whatsapp {
    color: #25D366;
}

.fas.fa-sms {
    color: #FF9800;
}

.fas.fa-envelope {
    color: #EA4335;
}

.slider-control {
    display: flex;
    align-items: center;
}

.min-value, .max-value {
    font-size: 12px;
    color: #ffffff;
    width: 60px;
}

.min-value {
    text-align: left;
}

.max-value {
    text-align: right;
}

input[type="range"] {
    flex-grow: 1;
    height: 5px;
    -webkit-appearance: none;
    background: #ffffff;
    border-radius: 5px;
    margin: 0 10px;
    outline: none;
    --thumb-color: #4a6cf7;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--thumb-color, #4a6cf7);
    cursor: pointer;
    transition: background .3s ease-in-out;
    box-shadow: 0 0 5px rgba(255, 250, 250, 0.2);
}

input[type="range"]::-webkit-slider-thumb:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 8px #ffffff4d;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    background: var(--thumb-color);
    cursor: pointer;
    transition: background .3s ease-in-out;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

input[type="range"]::-moz-range-thumb:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 8px rgba(244, 248, 28, 0.3);
}
.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 5px;
}

.result-value {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}


/* Responsive adjustments */
@media (max-width: 600px) {
    .results {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .country-selector {
        flex-direction: column;
        align-items: flex-start;
    }

    .select-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    #reset {
        align-self: center;
    }
}

@media (max-width: 400px) {
    .slider-control {
        flex-direction: column;
    }

    .min-value, .max-value {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    input[type="range"] {
        width: 100%;
        margin: 10px 0;
    }
}

h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 28px;
}

.results {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.countrystyle {
    margin-left: auto;
    display: flex;
    align-items: center;
    background-color: rgba(16, 26, 46, 0.6);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.countrystyle label {
    margin-right: 10px;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
}

.countrystyle select {
    background-color: rgba(16, 26, 46, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 15px;
    padding-right: 30px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    z-index: 10;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.countrystyle select option {
    background-color: #101a2e;
    color: #fff;
    padding: 10px;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    z-index: 20;
}

.countrystyle select option:hover,
.countrystyle select option:focus {
    background-color: rgba(79, 86, 255, 0.2);
}

.countrystyle select:hover {
    border-color: #4f56ff;
    background-color: rgba(79, 86, 255, 0.1);
}

.countrystyle select:focus {
    border-color: #4f56ff;
    box-shadow: 0 0 0 3px rgba(79, 86, 255, 0.2);
}


/* end otpCalculator page style  */
