/* =========================
   TOP RUNNING BAR
========================= */

#maindiv{
    width:100%;
    overflow:hidden;
    white-space:nowrap;
    background:#f8fbff;
    border-bottom:1px solid rgba(0,0,0,0.06);
    padding:10px 0;
    position:relative;
    display:flex;
    align-items:center;
}

#div1,
#div2{
    display:flex;
    align-items:center;
    white-space:nowrap;
    animation:marquee 22s linear infinite;
}

#div1 b,
#div2 b{
    font-size:15px;
    font-weight:600;
    color:#2c73d9;
    padding-right:80px;
}

@keyframes marquee{

    0%{
        transform:translateX(0%);
    }

    100%{
        transform:translateX(-100%);
    }

}

/* MOBILE */

@media(max-width:768px){

    #div1 b,
    #div2 b{
        font-size:13px;
    }

}










































/* =========================================
                HERO SECTION
========================================= */

.hero-section{

    position:relative;

    overflow:hidden;

    min-height:100vh;

    background:#050816;

    display:flex;
    align-items:center;

    padding:180px 0 120px;
}

/* =========================================
            BACKGROUND WRAPPER
========================================= */

.wrapper{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    overflow:hidden;

    background-image:
    linear-gradient(rgba(5,8,22,0.82),
    rgba(5,8,22,0.9)),

    url('assets/img/hero-bg.jpg');

    background-size:cover;
    background-position:center;

    z-index:0;
}

/* OVERLAY */

.hero-overlay{

    position:absolute;

    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size:90px 90px;
}

/* =========================================
            PARTICLE ANIMATION
========================================= */

.circle_container{

    position:absolute;

    top:50%;
    left:50%;

    height:10px;

    transform-origin:left center;
}

.circle{

    position:absolute;

    border-radius:100%;

    background:
    rgba(34,211,238,0.35);

    left:0;

    opacity:0;

    animation-name:move;

    animation-duration:20s;

    animation-iteration-count:infinite;

    box-shadow:
    0 0 10px rgba(34,211,238,0.45);
}

@keyframes move{

    0%{
        transform:translateX(0px);
        opacity:0;
    }

    1%{
        opacity:1;
    }

    50%{
        opacity:0.5;
    }

    100%{
        transform:translateX(70vmin);
        opacity:0;
    }

}

/* =========================================
                HERO CONTENT
========================================= */

.hero-content{

    position:relative;

    z-index:5;
}

.hero-subtitle{

    display:inline-block;

    color:#22D3EE;

    font-size:20px;

    font-weight:700;

    margin-bottom:22px;

    letter-spacing:1px;
}

.hero-title{

    color:#fff;

    font-size:78px;

    line-height:1.08;

    font-weight:800;

    margin-bottom:30px;
}

.hero-text{

    color:rgba(255,255,255,0.74);

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;

    max-width:650px;
}

/* BUTTONS */

.hero-btns{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.hero-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:60px;

    background:
    linear-gradient(135deg,#22D3EE,#143B8D);

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:0.4s;

    box-shadow:
    0 12px 30px rgba(34,211,238,0.28);
}

.hero-btn:hover{

    transform:translateY(-5px);

    color:#fff;
}

.hero-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 42px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,0.18);

    color:#fff;

    font-size:17px;

    font-weight:700;

    transition:0.4s;

    backdrop-filter:blur(12px);
}

.hero-btn-outline:hover{

    background:#fff;

    color:#111;
}

/* =========================================
                HERO IMAGE
========================================= */

.hero-image{

    position:relative;

    z-index:5;

    text-align:center;

    animation:floatImage 5s ease-in-out infinite;
}

.hero-image img{

    width:100%;

    max-width:650px;
}

/* FLOAT */

@keyframes floatImage{

    50%{
        transform:translateY(-18px);
    }

}

/* =========================================
                RESPONSIVE
========================================= */

@media(max-width:1200px){

    .hero-title{

        font-size:62px;
    }

}

@media(max-width:991px){

    .hero-section{

        text-align:center;

        padding-top:160px;
    }

    .hero-content{

        margin-bottom:70px;
    }

    .hero-btns{

        justify-content:center;
    }

    .hero-text{

        margin:auto;
        margin-bottom:35px;
    }

    .hero-title{

        font-size:52px;
    }

}

@media(max-width:767px){

    .hero-title{

        font-size:38px;
    }

    .hero-text{

        font-size:17px;

        line-height:1.8;
    }

    .hero-btn,
    .hero-btn-outline{

        width:100%;
    }

}
.hero-content{
    margin-top:-150 px;
    
}
.hero-image img{

    width:115%;

    max-width:780px;
}
.hero-section{
    padding:60px 0 100px;
}
.hero-content{
    margin-top:0;
}
/* BUTTON ARROW REMOVE */

.btn-style-one::before,
.btn-style-one::after,
.hero-btn::before,
.hero-btn::after{
    display:none !important;
    content:none !important;
}
.hero-btn,
.hero-btn-outline{
    text-decoration:none !important;
}
.hero-text{

    font-size:18px;

    line-height:1.8;
}





























/* Color Palette from Message 160 Logo */
:root {
    --primary-blue: #3498db;
    --deep-blue: #102e6a;
    --teal-glow: #2bd6b4;
    --card-shadow: rgba(52, 152, 219, 0.15);
}

.premium-services {
    padding: 100px 0;
    background: #fdfdfe;
    overflow: hidden;
}

/* Section Title Styling */
.badge-title {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-blue);
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.main-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--deep-blue);
    margin-top: 15px;
}

.title-glow-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--teal-glow));
    margin: 20px auto;
    border-radius: 10px;
}

/* Glassmorphism Card Design */
.glass-card {
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 35px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px var(--card-shadow);
}

/* Hover Background Glow */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(52, 152, 219, 0.05), transparent);
    border-radius: 30px;
    z-index: -1;
}

/* Icon Animation with Organic Shape */
.icon-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 38px;
    color: var(--primary-blue);
    z-index: 2;
    transition: 0.4s;
}

.blob-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.08);
    border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
    animation: blobShape 6s infinite ease-in-out;
    transition: 0.4s;
}

@keyframes blobShape {
    0%, 100% { border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%; }
    50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.glass-card:hover .blob-bg {
    background: var(--primary-blue);
    transform: scale(1.1);
}

.glass-card:hover .icon-wrapper i {
    color: #fff;
    transform: rotateY(180deg);
}

/* Card Typography */
.glass-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.glass-card p {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Modern Arrow Button */
.arrow-link {
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.arrow-link i {
    transition: transform 0.3s;
}

.glass-card:hover .arrow-link {
    color: var(--deep-blue);
}

.glass-card:hover .arrow-link i {
    transform: translateX(10px);
}





























:root {
    --primary-blue: #3498db;
    --dark-navy: #102e6a;
    --accent-cyan: #2bd6b4;
}

.sms-gateway-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Title Animation */
.main-title {
    font-weight: 800;
    color: var(--dark-navy);
}

.animated-underline {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
    margin: 15px auto;
    border-radius: 2px;
    animation: expandWidth 3s infinite alternate;
}

@keyframes expandWidth {
    from { width: 40px; }
    to { width: 100px; }
}

/* 3D Card Container */
.gateway-wrapper {
    perspective: 1000px; /* Essential for 3D effect */
}

.gateway-card-3d {
    background: linear-gradient(145deg, #4da3ff, #2980b9);
    border-radius: 24px;
    padding: 45px 25px;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}

/* Hover: Tilt and Lift */
.gateway-card-3d:hover {
    transform: rotateX(10deg) rotateY(-10deg) translateY(-10px);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.2);
}

/* Floating Icon Effect */
.icon-holder {
    height: 100px;
    margin-bottom: 25px;
    transform: translateZ(50px); /* Pushes icon forward in 3D space */
    transition: transform 0.6s ease;
}

.icon-holder img {
    max-width: 90px;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
    animation: floatIcon 4s infinite ease-in-out;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* Card Heading */
.gateway-card-3d h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transform: translateZ(30px); /* Pushes text forward */
}

/* Background Glow Effect on Hover */
.card-bg-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gateway-card-3d:hover .card-bg-glow {
    opacity: 0.4;
}

/* Optional: Shine effect passing through card */
.gateway-card-3d::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: 0.7s;
}

.gateway-card-3d:hover::after {
    left: 100%;
    top: 100%;
}
.sms-gateway-section {
    padding: 100px 0;
    background-color: #f4f8fb; /* Very light blue-grey */
}

















:root {
    --brand-main: #3498db;
    --brand-dark: #102e6a;
    --brand-accent: #2bd6b4;
    --soft-bg: #f8fbff;
}

.marketing-dynamic-section {
    padding: 120px 0;
    background: var(--soft-bg);
    overflow: hidden;
    position: relative;
}

/* Visual Container Logic */
.visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-device {
    position: relative;
    z-index: 5;
    animation: deviceFloat 5s infinite ease-in-out;
    max-width: 85%;
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Background Animated Circle */
.accent-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    from { transform: scale(0.8); opacity: 0.5; }
    to { transform: scale(1.2); opacity: 1; }
}

/* Floating Elements (Icons) */
.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    z-index: 6;
    color: var(--brand-main);
    font-size: 24px;
}

.el-1 { top: 10%; left: 10%; animation: floatSlow 6s infinite; }
.el-2 { bottom: 15%; left: 5%; animation: floatSlow 8s infinite reverse; }
.el-3 { top: 5%; right: 15%; animation: floatSlow 7s infinite; }
.el-4 { bottom: 20%; right: 10%; animation: floatSlow 5s infinite reverse; }

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}

/* Content Box Styling */
.highlight-tag {
    color: var(--brand-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.dynamic-heading {
    font-size: 42px;
    font-weight: 800;
    color: var(--brand-dark);
    line-height: 1.2;
}

.dynamic-heading span {
    color: var(--brand-main);
    position: relative;
    display: inline-block;
}

.dynamic-heading span::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0; width: 100%; height: 8px;
    background: rgba(43, 214, 180, 0.2);
    z-index: -1;
}

/* Modern Button */
.btn-hire-now {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #4da3ff, #2980b9);
    padding: 15px 35px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(41, 128, 185, 0.3);
    margin-top: 30px;
}

.btn-hire-now:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(41, 128, 185, 0.5);
    color: #fff;
}

.btn-icon {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



























/* Card ki height aur spacing adjust karne ke liye updated CSS */
.gateway-card-3d.extended-box {
    min-height: 420px; /* Box ko lamba karne ke liye */
    padding: 50px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.icon-holder {
    margin-bottom: 30px;
    min-height: 100px; /* Icons ko ek alignment mein rakhne ke liye */
}

.gateway-card-3d h3 {
    margin-bottom: 20px;
    font-size: 19px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Description Styling */
.short-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 0;
    transform: translateZ(20px); /* 3D depth ke liye */
    font-weight: 400;
}

/* Card hover par shadow aur brightness increase karne ke liye */
.gateway-card-3d:hover {
    filter: brightness(1.1);
}

/* Responsive fix: Mobile par lamba box zyada bada na lage */
@media (max-width: 991px) {
    .gateway-card-3d.extended-box {
        min-height: auto;
        margin-bottom: 20px;
    }
}































/* Pricing Section Theme Colors */
.theme-micro { --card-bg: linear-gradient(135deg, #57e3b6, #12a47b); }
.theme-small { --card-bg: linear-gradient(135deg, #74b9ff, #0984e3); }
.theme-medium { --card-bg: linear-gradient(135deg, #e056fd, #be2edd); }
.theme-prime { --card-bg: linear-gradient(135deg, #00cec9, #008080); }
.theme-enterprise { --card-bg: linear-gradient(135deg, #ff7675, #d63031); }
.theme-powerhouse { --card-bg: linear-gradient(135deg, #a29bfe, #6c5ce7); }

.pricing-section { background-color: #f4f7f6; padding: 80px 0; }

.price-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.card-header {
    background: var(--card-bg);
    padding: 40px 20px;
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0;
    letter-spacing: -1px;
}

.sms-count {
    font-weight: 600;
    font-size: 18px;
    opacity: 0.9;
}

.features {
    list-style: none;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.features li {
    padding: 10px 0;
    font-size: 14px;
    color: #636e72;
    border-bottom: 1px dashed #dfe6e9;
}

.btn-pay {
    display: inline-block;
    padding: 12px 40px;
    background: var(--card-bg);
    color: #fff !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-bottom: 30px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Hover Animations */
.price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.btn-pay:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}






















/* Premium CTA Design */
.premium-cta-section {
    background: #f4f7fa;
}

.cta-wrapper {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.badge-new {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4a90e2;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

.cta-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1a2b48;
    line-height: 1.2;
}

.cta-heading span {
    color: #4a90e2;
}

.cta-desc {
    color: #64748b;
    font-size: 17px;
}

.trial-info {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 15px;
    border-left: 4px solid #4a90e2;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: #4a90e2;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Action Side Blue Background */
.action-side {
    background: linear-gradient(135deg, #4a90e2 0%, #1e3a8a 100%);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-modern-signup {
    display: inline-block;
    background: #ffffff;
    color: #4a90e2;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-modern-signup:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    background: #f0f7ff;
    color: #1e3a8a;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .cta-wrapper { margin: 0 15px; }
    .cta-heading { font-size: 28px; }
}





























/* Styling for "Why Choose Us" */
.why-choose-section { background: #fff; position: relative; }

.title-main { color: #1e3a8a; font-weight: 800; font-size: 32px; }
.title-sub { color: #64748b; font-size: 16px; max-width: 600px; margin: 10px auto; }

/* Loader line under title */
.title-loader {
    width: 60px; height: 4px; background: #4a90e2; 
    margin: 15px auto; border-radius: 10px; position: relative;
}

/* Feature Box Core */
.feature-box {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid #f1f5f9;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 20px 0;
    color: #1e3a8a;
    line-height: 1.4;
    transition: 0.3s;
}

.feature-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* Icon Styling */
.icon-wrap {
    width: 70px; height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 30px;
    transition: 0.5s;
    background: #f8fafc;
}

.color-1 { color: #4a90e2; }
.color-2 { color: #f59e0b; }
.color-3 { color: #10b981; }
.color-4 { color: #25d366; }
.color-5 { color: #8b5cf6; }
.color-6 { color: #ef4444; }

/* Hover Effects */
.feature-box:hover {
    transform: translateY(-10px);
    border-color: #4a90e2;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.1);
}

.feature-box:hover .icon-wrap {
    transform: rotateY(360deg) scale(1.1);
    background: #4a90e2;
    color: #fff;
}

.feature-box:hover h4 { color: #4a90e2; }

/* Background Hover Shape Animation */
.hover-shape {
    position: absolute;
    bottom: -50px; right: -50px;
    width: 100px; height: 100px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 50%;
    transition: 0.6s;
    z-index: -1;
}

.feature-box:hover .hover-shape {
    transform: scale(8);
}































/* Consistency Styles */
.title-gradient {
    background: linear-gradient(45deg, #102e6a, #3498db); /* Same as Pricing Title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.accent-line {
    width: 50px;
    height: 3px;
    background: #4a90e2;
    margin-top: 10px;
}

/* Service Card Design */
.service-box {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #edf2f7;
    height: 100%;
}

.service-img-top {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Gradients from your screenshot */
.seo-gradient { background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%); }
.smo-gradient { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.ivr-gradient { background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%); }

.floating {
    max-width: 70%;
    animation: floatAnim 3s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* CTA Color - Same as "Get a Quote" */
.btn-cta-premium {
    display: inline-block;
    padding: 10px 30px;
    background: #4a90e2; /* Matching Blue */
    color: white !important;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-cta-premium:hover {
    background: #357abd;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}






















/* Title Gradient */
.title-gradient {
    background: linear-gradient(45deg, #102e6a, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.header-blue {
    color: #102e6a;
}

/* CTA Button - Matching your Hero/Services button */
.btn-cta-main {
    display: inline-block;
    padding: 12px 40px;
    background: #4a90e2;
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-cta-main:hover {
    background: #102e6a;
    transform: translateY(-2px);
}

/* Form Styling */
.custom-input {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
}

.captcha-box {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 8px;
    letter-spacing: 3px;
}

.bg-blue-soft {
    background: rgba(74, 144, 226, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}






/* Quote Section Main Background */
.quote-section {
    /* Halka sa gradient jo white se light blue ki taraf jata hai */
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Background ko aur attractive banane ke liye decorative shapes (Optional) */
.quote-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: rgba(74, 144, 226, 0.05); /* Very light blue */
    border-radius: 50%;
    z-index: 0;
}

/* Form Container ka background white hi rakha hai taaki wo standout kare */
.quote-form-container {
    background: #ffffff !important;
    border: 1px solid rgba(74, 144, 226, 0.1);
    box-shadow: 0 20px 40px rgba(16, 46, 106, 0.08) !important;
    position: relative;
    z-index: 1;
}

/* Consistency check for Title & CTA */
.title-gradient {
    background: linear-gradient(45deg, #102e6a, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.btn-cta-main {
    background: #4a90e2; /* Same Light Blue CTA */
    color: white !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}



































/* Section Background */
.team-section {
    background-color: #f0f7ff; /* Halka bluish background */
}

/* Card Container */
.team-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Image Wrappers (Matching your screenshot colors) */
.image-wrapper {
    height: 250px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.image-wrapper img {
    height: 90%;
    width: auto;
    transition: transform 0.4s ease;
}

.team-card:hover .image-wrapper img {
    transform: scale(1.1);
}

/* Background Colors from Screenshot */
.bg-tan   { background-color: #b5af96; }
.bg-blue  { background-color: #4a90e2; }
.bg-sky   { background-color: #6fbcf0; }
.bg-green { background-color: #8db546; }

/* Content Box */
.content-box {
    border-top: 1px solid #f1f1f1;
}

/* Title Gradient (Consistency) */
.title-gradient {
    background: linear-gradient(45deg, #102e6a, #4a90e2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

























/* Section Base */
.premium-testimonial-section {
    background: #f8faff;
    position: relative;
}

/* Infinite Logo Slider Animation */
.logos-wrapper {
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: inline-block;
    animation: scrollLogos 25s linear infinite;
}

.logo-track img {
    height: 45px;
    margin: 0 40px;
    opacity: 0.6;
    transition: 0.4s ease;
    filter: grayscale(100%);
}

.logo-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes scrollLogos {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Testimonial Card Styling */
.main-testimonial-card {
    background: linear-gradient(135deg, #4a90e2 0%, #102e6a 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.quote-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

.testimonial-blockquote p {
    font-size: 1.8rem !important;
    line-height: 1.6;
}

/* Dots Styling */
.dot-premium {
    height: 6px;
    width: 30px;
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    border-radius: 10px;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
}

.dot-premium.active {
    background: #fff;
    width: 50px;
}
























.nexiva-footer {
    background: linear-gradient(135deg, #16a34a 0%, #14532d 100%); /* Premium Green Gradient */
    font-family: 'Poppins', sans-serif;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #fff;
    color: #16a34a;
    transform: translateY(-3px);
}

.contact-item {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    color: #bef264; /* Lime green icon color */
}

































































/*ABOUT US PAGE CSS*/
/* Section Size Adjustment */
.about-hero-refined {
    background: #102e6a; /* Deep Blue from your Screenshot */
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px; /* Thoda kam size rakha hai vertical space ke liye */
    min-height: 75vh; 
    display: flex;
    align-items: center;
}

/* Background Animation */
.mesh-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.mesh-blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.3;
    animation: moveMesh 15s infinite alternate ease-in-out;
}

.mesh-1 { width: 500px; height: 500px; background: #4a90e2; top: -10%; right: -5%; }
.mesh-2 { width: 450px; height: 450px; background: #16a34a; bottom: -5%; left: -5%; animation-delay: -7s; }

@keyframes moveMesh {
    from { transform: translate(0, 0); }
    to { transform: translate(80px, 40px) scale(1.1); }
}

/* Typography & Gradient */
.text-gradient {
    background: linear-gradient(90deg, #4a90e2, #bef264);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9; /* Text readability improve karne ke liye */
    font-weight: 300;
}

.innovation-tag {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    color: #bef264;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Buttons (No Arrows, Home Page Blue) */
.btn-main-blue {
    background: #4a90e2; /* Aapka Home Page wala Blue */
    color: white !important;
    padding: 14px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
    border: none;
}

.btn-main-blue:hover {
    background: #fff;
    color: #102e6a !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline-glass {
    padding: 14px 45px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.z-3 { z-index: 3; }




































.about-info-section {
    background: #f8fbff; /* Very light blue background to distinguish from white */
    color: #333;
}

.section-title {
    color: #102e6a !important; /* Your Deep Blue */
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Card Styling */
.info-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.info-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.15);
    border-color: #4a90e2;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #4a90e2; /* Light Blue */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.info-card-premium h3 {
    color: #102e6a;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-card-premium p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Matching the green accent if needed */
.info-card-premium:nth-child(even) .icon-box {
    background: #16a34a; /* Nexiva Green */
}


/* Card Base Styling */
.info-card-premium {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Smooth movement */
}

/* Background Hover Effect - Halka sa blue tint piche se aayega */
.info-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(22, 163, 74, 0.05) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover State */
.info-card-premium:hover {
    transform: translateY(-12px); /* Card thoda upar uthega */
    border-color: #4a90e2; /* Border color change hoga */
    box-shadow: 0 20px 40px rgba(16, 46, 106, 0.12); /* Deep shadow */
}

.info-card-premium:hover::before {
    opacity: 1;
}

/* Icon Box Animation */
.icon-box {
    width: 65px;
    height: 65px;
    background: #4a90e2; 
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

/* Icon rotate aur scale hoga hover par */
.info-card-premium:hover .icon-box {
    transform: rotateY(360deg) scale(1.1);
    background: #102e6a; /* Deep Blue on hover */
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

/* Text Animations */
.info-card-premium h3 {
    color: #102e6a;
    font-weight: 700;
    transition: color 0.3s ease;
}

.info-card-premium:hover h3 {
    color: #4a90e2; /* Heading color change */
}

.info-card-premium p {
    transition: color 0.3s ease;
}

.info-card-premium:hover p {
    color: #333; /* Text thoda dark aur clear ho jayega */
}
























.counter-section-premium {
    background: #102e6a; /* Matches your Hero Deep Blue */
    padding: 80px 0;
}

.counter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
}

.counter-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    border-color: #4a90e2; /* Accent Blue */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.counter-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    transition: 0.3s;
}

.counter-card:hover .counter-icon {
    color: #bef264; /* Vibrant Green from your branding */
    transform: scale(1.2);
}

.counter-number {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.counter-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 600;
}






















.cta-wave-section {
    background: linear-gradient(135deg, #102e6a 0%, #4a90e2 100%); /* Deep Blue from Nexiva branding */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

/* Moving Waves Animation */
.wave-wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* Content Styling */
.stats-strip {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    gap: 25px;
}

.stats-strip i {
    color: #bef264; /* Vibrant Green */
    margin-right: 5px;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    border: 1px dashed #bef264;
}

/* Glowing Button Animation */
.btn-glow-animation {
    background: #bef264;
    color: #102e6a !important;
    padding: 18px 50px;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 1px;
    position: relative;
    transition: 0.4s;
    box-shadow: 0 0 20px rgba(190, 242, 100, 0.4);
}

.btn-glow-animation:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(190, 242, 100, 0.7);
    background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 1.8rem; }
    .stats-strip { flex-direction: column; gap: 10px; }
}






















.client-slider-section {
    background: #fff;
    overflow: hidden;
    padding: 60px 0;
}

.logos-slider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.logos-track {
    display: flex;
    width: calc(250px * 12); /* Based on number of slides */
    animation: scrollLogos 30s linear infinite;
}

.slide {
    width: 250px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.slide img {
    max-width: 150px;
    max-height: 60px;
    filter: grayscale(100%); /* Premium Look: Pehle black & white */
    opacity: 0.6;
    transition: all 0.4s ease;
}

/* Hover par color aayega aur logo zoom hoga */
.slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* Masking effect: Sides se fade out hoga */
.logos-slider::before,
.logos-slider::after {
    content: "";
    height: 100%;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.logos-slider::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.logos-slider::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}
























.states-coverage-section {
    background: #f4f7fa;
    padding: 80px 0;
}

.states-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.state-pill {
    background: #fff;
    color: #102e6a; /* Deep Blue from Nexiva branding */
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
}

/* Hover Animation */
.state-pill:hover {
    background: #102e6a;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(16, 46, 106, 0.2);
    border-color: #4a90e2;
}

/* Alternate Color for subtle variety */
.state-pill:nth-child(even):hover {
    background: #16a34a; /* Nexiva Green on hover */
    border-color: #bef264;
}




























/* --- Services Section Styling --- */
.services-premium-section {
    background-color: #f8faff; /* Light subtle background to make cards pop */
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

/* --- Individual Card Styling --- */
.service-card-modern {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(16, 46, 106, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Hover: Blue Gradient Slide-up --- */
.service-card-modern::before {
    content: '';
    position: absolute;
    bottom: -100%; /* Shuru mein card ke niche hidden rahega */
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #102e6a 0%, #1e4ea1 100%); /* Nexiva Deep Blue theme */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: -1;
    border-radius: 24px;
}

.service-card-modern:hover::before {
    bottom: 0; /* Hover par upar slide hokar poore card ko cover karega */
}

/* --- Hover: Text & Link Color Change --- */
.service-card-modern:hover h3, 
.service-card-modern:hover p,
.service-card-modern:hover .learn-more-link {
    color: #ffffff !important;
}

.service-card-modern:hover {
    transform: translateY(-15px) rotateX(5deg); /* 3D Tilt effect */
    box-shadow: 0 30px 60px rgba(16, 46, 106, 0.2);
}

/* --- Icon Wrapper & Floating Animation --- */
.card-icon-wrapper {
    margin-bottom: 30px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.floating-icon {
    max-width: 90px;
    height: auto;
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.service-card-modern:hover .floating-icon {
    animation-play-state: paused; /* Hover par floating stop hokar scale up hogi */
    transform: scale(1.1);
}

/* --- Typography --- */
.service-card-modern h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #102e6a;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.service-card-modern p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

/* --- Learn More Link --- */
.learn-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a90e2;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.learn-more-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #bef264; /* Highlight color on hover */
    transition: width 0.3s ease;
}

.service-card-modern:hover .learn-more-link::after {
    width: 100%;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .service-card-modern {
        padding: 35px 25px;
    }
    .service-card-modern h3 {
        font-size: 1.25rem;
    }
}























































































.pricing-table-section {
    background: #ffffff;
}

.title-line {
    width: 60px;
    height: 4px;
    background: #4a90e2;
    border-radius: 2px;
    margin-top: 10px;
}

.custom-pricing-table {
    border-collapse: separate;
    border-spacing: 0;
}

.custom-pricing-table thead th {
    background-color: #4a90e2 !important; /* Screenshot wala blue tone */
    color: white;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

.custom-pricing-table tbody td {
    padding: 18px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
    color: #444;
}

.custom-pricing-table tbody tr:hover {
    background-color: #f8faff;
    transition: 0.3s ease;
}

/* Buttons Styling */
.btn-call {
    background-color: #28a745;
    color: white;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-buy {
    background-color: #4a90e2;
    color: white;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-call:hover, .btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}

/* Premium Row Highlight */
.table-premium {
    background-color: #fffef0;
}

@media (max-width: 768px) {
    .custom-pricing-table {
        min-width: 600px; /* Mobile par scroll allow karne ke liye */
    }
}


























/* --- Pricing Table Section Styling --- */
.pricing-table-section {
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.title-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #102e6a, #4a90e2);
    border-radius: 10px;
    margin-top: 15px;
}

/* --- Table Wrapper --- */
.table-responsive {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
}

/* --- Table Headers --- */
.custom-pricing-table thead th {
    background-color: #4a90e2 !important; /* Premium Blue from screenshot */
    color: #ffffff;
    padding: 22px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-align: center;
}

.custom-pricing-table thead th:first-child {
    text-align: left; /* Pack name left aligned rahega */
}

/* --- Table Body Rows --- */
.custom-pricing-table tbody td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
}

/* --- Row Hover Effect --- */
.custom-pricing-table tbody tr {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.custom-pricing-table tbody tr:hover {
    background-color: #f8fbff !important;
    transform: scale(1.005);
}

.custom-pricing-table tbody tr:hover td {
    color: #102e6a;
}

/* --- Specific Elements Styling --- */
.badge.bg-success {
    background-color: #e8f5e9 !important;
    color: #2e7d32 !important;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid #c8e6c9;
}

.text-primary.fw-bold {
    color: #102e6a !important;
    font-size: 1.05rem;
}

/* --- Action Buttons --- */
.btn-call {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 8px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2);
}

.btn-buy {
    background: linear-gradient(135deg, #102e6a 0%, #4a90e2 100%);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 8px 25px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(16, 46, 106, 0.2);
}

.btn-call:hover, .btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* --- Premium Highlight Row --- */
.table-premium {
    background-color: #fffaf0 !important; /* Gold tint for high value pack */
}

/* --- Responsive Table Fix --- */
@media (max-width: 991px) {
    .custom-pricing-table {
        min-width: 800px; /* Tablet/Mobile par horizontal scroll enable karne ke liye */
    }
}






























/* --- Hero Section Styling --- */
.nexiva-product-hero {
    background: #0f172a; /* Deep Slate/Navy Background */
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* --- Glassmorphism Form --- */
.glass-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color:#4facfe !important;
    padding: 12px 20px;
    border-radius: 10px;
    width: 100%;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* --- Features & Text --- */
.hero-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.text-gradient {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.innovation-tag {
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

/* --- Mesh Gradients (Floating Blobs) --- */
.mesh-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.mesh-blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.4;
}
.mesh-1 { width: 400px; height: 400px; background: #1e3a8a; top: -100px; right: -100px; }
.mesh-2 { width: 300px; height: 300px; background: #3b82f6; bottom: -50px; left: -50px; }


























/* --- Analytics Showcase --- */
.analytics-showcase {
    background: #ffffff;
    padding: 100px 0;
}

.text-slate {
    color: #1e293b; /* Premium Slate Grey */
}

/* --- Dashboard Image Container --- */
.dashboard-preview-container {
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(16, 46, 106, 0.05));
    border-radius: 25px;
}

.dashboard-preview-container img {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s ease;
}

.dashboard-preview-container:hover img {
    transform: scale(1.02);
}

.glass-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* --- Feature Items --- */
.info-point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    font-size: 24px;
    color: #4a90e2; /* Blue from previous sections */
    margin-top: 2px;
}

.info-text h5 {
    color: #102e6a; /* Nexiva Deep Blue */
    font-size: 1.2rem;
}

.info-text p {
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .analytics-showcase {
        padding: 60px 0;
    }
    .dashboard-preview-container {
        margin-bottom: 40px;
    }
}



























/* --- Effectiveness Section --- */
.email-effectiveness {
    overflow: hidden;
}

.eff-item {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.eff-item:hover {
    transform: translateX(10px);
}

.eff-icon {
    font-size: 20px;
    color: #4facfe; /* Cyan-blue icon color */
    flex-shrink: 0;
}

.eff-text h6 {
    margin-bottom: 5px;
    color: #102e6a !important; /* Nexiva Deep Blue */
}

/* --- Illustration & Animation --- */
.illustration-holder {
    position: relative;
    display: inline-block;
}

.bg-circle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.floating-img {
    position: relative;
    z-index: 2;
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* --- Mobile Fix --- */
@media (max-width: 991px) {
    .bg-circle-glow {
        width: 250px;
        height: 250px;
    }
}
























/* --- Benefits Section Styling --- */
.email-benefits {
    background: #f8fbff;
    padding: 80px 0;
}

.text-blue-dark {
    color: #102e6a; /* Nexiva Signature Deep Blue */
}

/* --- Benefit Cards --- */
.benefit-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 46, 106, 0.1);
    border-color: rgba(74, 144, 226, 0.2);
}

/* --- Center Icon & Pulse Effect --- */
.center-icon-wrapper {
    position: relative;
    padding: 40px;
}

.floating-3d {
    animation: float3d 4s ease-in-out infinite;
    z-index: 2;
    position: relative;
    max-width: 200px;
}

.pulse-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-out infinite;
    z-index: 1;
}

@keyframes float3d {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulseGlow {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
}

/* --- Mobile Fix --- */
@media (max-width: 991px) {
    .benefit-card {
        margin-bottom: 20px;
        text-align: center;
    }
    .center-icon-wrapper {
        display: none; /* Mobile par clean dikhne ke liye image hide kar sakte hain */
    }
}



























/* --- Why Choose Nexiva Section --- */
.why-choose-nexiva {
    padding: 100px 0;
}

.nexiva-benefit-list {
    padding-right: 30px;
}

.nexiva-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8faff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.nexiva-point:hover {
    border-left: 4px solid #4a90e2;
    transform: translateX(10px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.point-icon {
    color: #4a90e2; /* Nexiva Blue */
    font-size: 20px;
    flex-shrink: 0;
}

.point-text p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Floating Illustration --- */
.floating-animation {
    animation: nexivaFloat 4s ease-in-out infinite;
}

@keyframes nexivaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .nexiva-benefit-list {
        padding-right: 0;
        margin-bottom: 40px;
    }
}


























/* --- Cost-Effective Section --- */
.nexiva-cost-effective {
    padding: 100px 0;
}

.description-text p {
    line-height: 1.8;
    font-size: 1.05rem;
}

/* --- Styled Border Box (as per screenshot) --- */
.blue-border-box {
    border: 3px solid #2563eb; /* Bright Blue border */
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    transition: transform 0.3s ease;
}

.blue-border-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
}

/* --- Nexiva Outline Button --- */
.btn-outline-nexiva {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-nexiva:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

/* --- Text Gradient --- */
.text-gradient {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* --- Nexiva Signature CTA Button --- */
.btn-outline-nexiva {
    display: inline-block;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* Modern Rounded Pill Shape */
    border: 2px solid #2563eb; /* Signature Blue Border */
    color: #2563eb;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hover Effect: Gradient Fill like Previous Sections */
.btn-outline-nexiva:hover {
    color: #ffffff !important;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    transform: translateY(-3px);
}

/* Background Slide Effect */
.btn-outline-nexiva::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%); /* Nexiva Deep Blue to Blue */
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline-nexiva:hover::before {
    width: 100%;
}

/* For active/click state */
.btn-outline-nexiva:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(37, 99, 235, 0.2);
}























/* --- Final CTA Section --- */
.final-cta-section {
    padding: 80px 0;
    background: #fcfdfe;
}

.cta-gradient-card {
    background: #0f172a; /* Deep Navy Base */
    border-radius: 30px;
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

/* --- Animated Mesh Blobs --- */
.cta-mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 1;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #2563eb;
    top: -100px;
    left: -100px;
    animation: moveBlob 10s infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: #00f2fe;
    bottom: -150px;
    right: -100px;
    animation: moveBlob 8s infinite alternate-reverse;
}

@keyframes moveBlob {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 100px); }
}

/* --- Typography & Colors --- */
.text-cyan {
    color: #00f2fe;
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.3);
}

/* --- Buttons --- */
.btn-cta-primary {
    display: inline-block;
    padding: 16px 45px;
    background: linear-gradient(90deg, #2563eb 0%, #00f2fe 100%);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin: 10px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.5);
    color: white;
}

.btn-cta-glass {
    display: inline-block;
    padding: 16px 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 10px;
}

.btn-cta-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cta-gradient-card {
        padding: 50px 20px;
    }
    .display-5 {
        font-size: 1.8rem;
    }
}
/* --- Final CTA Section (Compact) --- */
.final-cta-section {
    padding: 60px 0; /* Padding thoda kam kiya */
    background: #fcfdfe;
}

.cta-gradient-card {
    background: #0f172a;
    border-radius: 20px; /* Thoda kam rounded */
    padding: 50px 30px; /* Padding reduced for compact look */
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.15);
}

/* Heading size chota kiya */
.cta-gradient-card h2 {
    font-size: 1.85rem !important; /* Pehle display-5 tha, ab kaafi compact hai */
    line-height: 1.3;
}

/* Paragraph size chota kiya */
.cta-gradient-card p.lead {
    font-size: 0.95rem !important; /* Compact Lead text */
    max-width: 600px;
    margin: 0 auto 30px auto;
}

/* Buttons ko thoda sleek kiya */
.btn-cta-primary {
    display: inline-block;
    padding: 12px 35px; /* Compact padding */
    font-size: 0.9rem;
    background: linear-gradient(90deg, #2563eb 0%, #00f2fe 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    margin: 8px;
}

.btn-cta-glass {
    display: inline-block;
    padding: 12px 35px; /* Compact padding */
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 8px;
}

/* Mobile font adjustments */
@media (max-width: 768px) {
    .cta-gradient-card h2 {
        font-size: 1.5rem !important;
    }
    .cta-gradient-card p.lead {
        font-size: 0.85rem !important;
    }
}

































/* --- Contact Form Styles --- */
.nexiva-contact-section {
    background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
    position: relative;
}

.contact-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

/* Custom Input Styling */
.custom-input {
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    transition: all 0.3s ease !important;
}

.custom-input:focus {
    background: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.1) !important;
}

/* Captcha Styling */
.captcha-box {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 10px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    letter-spacing: 5px;
    box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
}

.captcha-code {
    font-size: 1.2rem;
    font-style: italic;
}

/* Label Styling for Floating Labels */
.form-floating > label {
    color: #64748b;
    padding-left: 15px;
}

/* Reuse the Nexiva Button Style from before */
.btn-outline-nexiva {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: transparent;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-outline-nexiva:hover {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    color: white;
    transform: translateY(-2px);
}
























/* --- Reseller Page Styling --- */
.bg-soft-blue {
    background-color: rgba(37, 99, 235, 0.1);
}

.text-blue-dark {
    color: #1e3a8a; /* Your Brand Color */
}

.feature-card-glass {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-card-glass:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: #2563eb;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 1.5rem;
}

.nexiva-check-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    color: #475569;
}

.nexiva-check-list li i {
    color: #2563eb;
    font-weight: bold;
    margin-right: 15px;
}

.contact-highlight-box {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.3);
}

.text-cyan {
    color: #00f2fe;
}




















/* Documentation Custom Styling */
.bg-soft-blue { background-color: rgba(37, 99, 235, 0.1); }
.text-blue { color: #2563eb; }
.text-cyan { color: #00f2fe; }
.btn-cyan { background: #00f2fe; color: #0f172a; border: none; }
.btn-cyan:hover { background: #2563eb; color: #fff; }

.docs-card {
    border: 1px solid #edf2f7;
}

.step-list {
    padding-left: 20px;
    list-style-type: none;
}

.step-list li {
    position: relative;
    padding-bottom: 15px;
    padding-left: 15px;
    border-left: 2px solid #e2e8f0;
    font-size: 0.95rem;
}

.step-list li::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
}

.accordion-button:not(.collapsed) {
    background-color: #f8faff;
    color: #2563eb;
    box-shadow: none;
}

.reseller-card {
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.text-gradient {
    background: linear-gradient(90deg, #1e3a8a 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




























/* Mobile Optimization for Pricing Tables */
@media (max-width: 768px) {
    .custom-pricing-table thead th {
        font-size: 12px;
        padding: 10px 5px !important;
    }

    .custom-pricing-table tbody td {
        font-size: 11px;
        padding: 8px 5px !important;
        vertical-align: middle;
    }

    /* Buttons ko chota aur compact banane ke liye */
    .btn-sm.btn-buy, .btn-sm.btn-call {
        padding: 4px 8px;
        font-size: 10px;
        white-space: nowrap; /* Button text wrap na ho */
    }

    /* Container ki horizontal padding kam karein taki table ko jagah mile */
    .pricing-table-section .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    /* Table responsive wrapper ko smooth scroll dene ke liye */
    .table-responsive {
        border: none;
        -webkit-overflow-scrolling: touch;
    }
}























/* --- Global Table Container Fix --- */
.pricing-table-section .container {
    max-width: 1140px; /* Nav bar ki line se match karne ke liye */
}

.custom-pricing-table {
    table-layout: fixed; /* Columns ko limit mein rakhne ke liye */
    width: 100% !important;
}

/* PC Column Widths (Nav ki line mein rakhne ke liye) */
.custom-pricing-table th:nth-child(1), 
.custom-pricing-table td:nth-child(1) { width: 35%; } /* PACK */

.custom-pricing-table th:nth-child(2), 
.custom-pricing-table td:nth-child(2) { width: 25%; } /* PRICE */

.custom-pricing-table th:nth-child(3), 
.custom-pricing-table td:nth-child(3) { width: 20%; } /* VALIDITY */

.custom-pricing-table th:nth-child(4), 
.custom-pricing-table td:nth-child(4) { width: 20%; } /* BUY BUTTON */

/* --- Responsive Fix for Mobile --- */
@media (max-width: 768px) {
    .custom-pricing-table {
        table-layout: auto; /* Mobile par flexible rehne dein */
    }
    
    .custom-pricing-table thead th {
        font-size: 11px;
        padding: 10px 5px !important;
    }

    .custom-pricing-table tbody td {
        font-size: 11px;
        padding: 12px 5px !important;
    }

    .btn-sm.btn-buy, .btn-sm.btn-call {
        padding: 5px 10px;
        font-size: 10px;
        display: block; /* Mobile par button full width rahega taki click asan ho */
        width: 100%;
    }
    
    /* Table horizontal scroll bar ko hide karne ke liye agar zaroorat na ho */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border: none;
    }
}