:root {
--font-primary: 'Plus Jakarta Sans', sans-serif;
    --vonage-purple: #6f42c1;
    --vonage-blue: #0d6efd;
    --vonage-pink: #d63384;
    --vonage-orange: #fd7e14;

    /* Pastel Background Utilities */
    --pastel-pink-bg: #fdf2f8;
    --pastel-blue-bg: #eff6ff;
    --pastel-orange-bg: #fff7ed;
    --pastel-purple-bg: #faf5ff;

    --bg-surface: #f8fafc;
    --text-dark: #0f172a;
/* Dark Background Shades */
    --dark-bg-main: #0b0f19;
    --dark-bg-card: rgba(22, 29, 47, 0.75);
    --dark-border: rgba(255, 255, 255, 0.12);
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-muted-light: #94a3b8;
    
    
    /* Primary Brand Colors */
      --vonage-blue: #0d6efd;
      --vonage-purple: #6f42c1;
      --vonage-gradient: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);

      /* Light Theme Color Palette */
      --bg-surface: #f8fafc;
      --bg-card: #ffffff;
      --bg-active: #f1f5f9;
      --text-dark: #0f172a;
      --text-muted: #64748b;
      --border-light: #e2e8f0;
      --border-hover: rgba(13, 110, 253, 0.3);

      /* Shadows & Effects */
      --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
      --shadow-hover: 0 12px 24px -6px rgba(13, 110, 253, 0.1);
      --shadow-active: 0 16px 32px -8px rgba(111, 66, 193, 0.12);
      
      --radius-lg: 20px;
      --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-primary);
    color: #1e293b;
    overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, #111827 0%, #312e81 100%);
}

/* Custom Helpers */
.fw-extrabold { font-weight: 800; }
.fw-black { font-weight: 900; }
.fs-xs { font-size: 0.75rem; }
.text-purple { color: var(--vonage-purple); }
.bg-purple-subtle { background-color: #f3e8ff; }

/* Gradient Accent Text */
.gradient-text {
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Mega Menu Hover Strategy */
@media (min-width: 992px) {
    .dropdown-mega {
        position: static;
    }
    .dropdown-mega .mega-menu {
        width: 100%;
        max-width: 350px;
        left: 40% !important;
        transform: translateX(-50%) translateY(10px) !important;
        opacity: 0;
        visibility: hidden;
        transition: all 0.25s ease-in-out;
        display: block;
    }
    .dropdown-mega:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) !important;
    }
}

.mega-card {
    background: #f8fafc;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.mega-card:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Icon Shape */
.icon-shape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
}

/* Hero Section & Quadrant Graphic */
.badge-hero {
    background-color: #e0e7ff;
    color: #4338ca;
}

.quadrant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    background-color: #ffffff;
    border-radius: 12px;
    position: relative;
}

.quadrant-box {
    position: relative;
}

.bg-primary-subtle-glow {
    background: rgba(13, 110, 253, 0.05);
}

.bg-light-subtle{background:radial-gradient(circle at 15% 25%, #fce7f3 0%, transparent 45%),        radial-gradient(circle at 85% 15%, #dbeafe 0%, transparent 40%),        radial-gradient(circle at 50% 80%, #f3e8ff 0%, transparent 50%),        radial-gradient(circle at 80% 75%, #ffedd5 0%, transparent 45%)}

.badge-v-leader {
    position: absolute;
    top: 40%;
    left: 30%;
    background: #0d6efd;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Card Borders */
.border-top-pink {
    border-top: 4px solid var(--vonage-pink) !important;
    background: color-mix(in srgb, var(--vonage-pink) 8%, #fff);
}

.border-top-blue {
    border-top: 4px solid var(--vonage-blue) !important;
    background: color-mix(in srgb, var(--vonage-blue) 8%, #fff);
}

.border-top-orange {
    border-top: 4px solid #fd7e14 !important;
    background: color-mix(in srgb, #fd7e14 8%, #fff);
}

.border-top-purple {
    border-top: 4px solid var(--vonage-purple) !important;
    background: color-mix(in srgb, var(--vonage-purple) 8%, #fff);
}

.border-top-pink,
.border-top-blue,
.border-top-orange,
.border-top-purple {
    transition: all 0.3s ease;
}

.border-top-pink:hover,
.border-top-blue:hover,
.border-top-orange:hover,
.border-top-purple:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Resource Card Hover */
.resource-card {
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card img {
    transition: transform 0.5s ease;
}

.resource-card:hover img {
    transform: scale(1.05);
}

/* Story Cards Hover */
.story-card {
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-6px);
}

/* Responsive Helpers */
@media (min-width: 768px) {
    .border-start-md { border-left: 1px solid rgba(255,255,255,0.15) !important; }
    .border-end-md { border-right: 1px solid rgba(255,255,255,0.15) !important; }
}


/* --- Magic quadrant chart --- */
  .mq-card{
    border:1px solid var(--border);
    border-radius:6px;
    padding:20px 22px 16px;
  }
  .mq-title{
    font-size:12px;
    font-weight:600;
    text-align:center;
    margin:0 0 12px;
    color:var(--ink);
  }
  .mq-chart-area{position:relative;}
  .mq-axis-label-left{
    position:absolute;
    left:-14px; top:50%;
    transform:translateY(-50%) rotate(-90deg);
    font-size:9px; letter-spacing:1px; color:var(--gray-600);
    white-space:nowrap;
  }
  .mq-footer{
    display:flex; justify-content:space-between; align-items:flex-start; margin-top:6px;
  }
  .mq-axis-label-bottom{
    font-size:9px; letter-spacing:1px; color:var(--gray-600);
  }
  .mq-meta{
    display:flex; justify-content:space-between; font-size:10px; color:var(--gray-400); margin-top:4px;
  }
  .mq-brand-row{
    display:flex; justify-content:flex-end; margin-top:8px;
  }
  .gartner-logo{font-weight:700; font-size:16px; letter-spacing:0.5px; color:#141416;}




  .stats-section{

background:
linear-gradient(180deg,#07162c,#0c2444);

position:relative;
}

.blur-circle{

position:absolute;
width:350px;
height:350px;
border-radius:50%;
filter:blur(100px);
opacity:.18;
}

.blur-one{

background:#ff2a5f;
top:-120px;
left:-120px;
}

.blur-two{

background:#0052ff;
bottom:-120px;
right:-120px;
}

.stats-badge{

display:inline-block;
padding:8px 18px;
border-radius:50px;
background:rgba(255,255,255,.08);
color:#fff;
letter-spacing:2px;
font-size:13px;
}

.gradient-text{

background:linear-gradient(90deg,#ff2a5f,#0052ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.stats-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(18px);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:45px 35px;

text-align:center;

transition:.4s;

height:100%;

position:relative;

overflow:hidden;
}

.stats-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:linear-gradient(90deg,
transparent,
rgba(255,255,255,.08),
transparent);

transition:.8s;
}

.stats-card:hover::before{

left:100%;
}

.stats-card:hover{

transform:translateY(-12px);

border-color:#0052ff;

box-shadow:
0 25px 60px rgba(0,82,255,.18);
}

.stats-icon{

width:85px;

height:85px;

margin:auto;

border-radius:50%;

background:linear-gradient(135deg,#ff2a5f,#0052ff);

display:flex;

align-items:center;

justify-content:center;

font-size:34px;

color:#fff;

margin-bottom:25px;

transition:.5s;
}

.stats-card:hover .stats-icon{

transform:rotateY(360deg) scale(1.1);
}

.counter{

font-size:40px;

font-weight:700;

margin-bottom:12px;

color:#fff;
}

.stats-card h5{

font-weight:700;

margin-bottom:15px;

color:#fff;
}

.stats-card p{

color:#c8d2e0;

margin:0;

line-height:1.8;
}

@media(max-width:768px){

.counter{

font-size:42px;
}

.stats-card{

padding:35px 25px;
}

}


.customers-story{
    position: relative;
    overflow: hidden;
    padding: 100px 0;

    background: linear-gradient(
        135deg,
        #f8fbff 0%,
        #eef5ff 30%,
        #fff6fb 65%,
        #ffffff 100%
    );
}



.contact-options{
    background:#fff;
}

.contact-card{
    background:#fff;
    border:1px solid #e8edf5;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:.35s ease;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-color:#0052ff;
}

.contact-icon{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:linear-gradient(135deg,#ff2a5f,#0052ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    transition:.4s;
}

.contact-card:hover .contact-icon{
    transform:rotate(12deg) scale(1.1);
}

.contact-card h5{
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.contact-card p{
    color:#6b7280;
    line-height:1.7;
    margin-bottom:20px;
}

.contact-link{
    text-decoration:none;
    color:#0052ff;
    font-weight:600;
    transition:.3s;
}

.contact-link:hover{
    color:#ff2a5f;
}

.contact-link i{
    transition:.3s;
}

.contact-link:hover i{
    transform:translateX(5px);
}



/* SECTION */

.solutions-section{

background:radial-gradient(circle at 15% 25%, #fce7f3 0%, transparent 45%),        radial-gradient(circle at 85% 15%, #dbeafe 0%, transparent 40%),        radial-gradient(circle at 50% 80%, #f3e8ff 0%, transparent 50%),        radial-gradient(circle at 80% 75%, #ffedd5 0%, transparent 45%);

position:relative;

overflow:hidden;

}

/* SVG */

.bg-lines{

position:absolute;

inset:0;

opacity:.8;

pointer-events:none;

}

.bg-lines svg{

width:100%;

height:100%;

}

.line1,
.line2{

fill:none;

stroke:#0052ff22;

stroke-width:3;

stroke-dasharray:12;

animation:moveLine 18s linear infinite;

}

.line2{

stroke:#ff2a5f22;

animation-duration:25s;

}

.dot{

fill:#0052ff55;

animation:pulse 3s infinite;

}

.dot2{

fill:#ff2a5f66;

}

.dot3{

fill:#7c4dff66;

}

/* Heading */

.section-tag{

display:inline-block;

padding:8px 18px;

background:#eef4ff;

color:#0052ff;

border-radius:30px;

font-size:13px;

font-weight:700;

letter-spacing:1px;

}

.solutions-section h2 span{

background:linear-gradient(90deg,#0052ff,#ff2a5f);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

/* CARD */

.solution-card{

background:#fff;

border-radius:24px;

padding:40px;

height:100%;

border:1px solid #edf1f8;

transition:.4s;

position:relative;

overflow:hidden;

}

.solution-card::before{

content:"";

position:absolute;

top:0;

left:-100%;

width:100%;

height:100%;

background:linear-gradient(90deg,transparent,#ffffffaa,transparent);

transition:.8s;

}

.solution-card:hover::before{

left:100%;

}

.solution-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 60px rgba(0,82,255,.12);

}

/* ICON */

.icon-box{

width:78px;

height:78px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:30px;

color:#fff;

margin-bottom:25px;

transition:.4s;

}

.solution-card:hover .icon-box{

transform:rotate(-8deg) scale(1.1);

}

.pink{

background:linear-gradient(135deg,#ff2a5f,#ff7a9d);

}

.blue{

background:linear-gradient(135deg,#0052ff,#55a4ff);

}

.orange{

background:linear-gradient(135deg,#ff8a00,#ffc107);

}

.purple{

background:linear-gradient(135deg,#7b3cff,#b86cff);

}

.solution-card h3{

font-weight:700;

margin-bottom:15px;

}

.solution-card p{

color:#6c757d;

line-height:1.8;

margin-bottom:30px;

}

/* BUTTON */

.btn-group-custom{

display:flex;

gap:12px;

flex-wrap:wrap;

}

.btn-main{

background:linear-gradient(90deg,#0052ff,#ff2a5f);

color:#fff;

padding:12px 24px;

border-radius:50px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.btn-main:hover{

transform:translateY(-3px);

color:#fff;

}

.btn-light-custom{

padding:12px 24px;

border-radius:50px;

border:1px solid #dbe4f2;

color:#222;

text-decoration:none;

font-weight:600;

transition:.3s;

background:#fff;

}

.btn-light-custom:hover{

background:#f5f9ff;

}

/* ANIMATION */

@keyframes moveLine{

from{

transform:translateX(0);

}

to{

transform:translateX(-120px);

}

}

@keyframes pulse{

0%,100%{

transform:scale(1);

opacity:.4;

}

50%{

transform:scale(1.8);

opacity:1;

}

}



   .premium-light-section {
            position: relative;
            background: linear-gradient(135deg, #fdfbf7 0%, #f0f4ff 50%, #fdf2f8 100%);
            padding: 5rem 1.5rem;
            overflow: hidden;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            color: #334155;
        }

        /* Ambient Pastel Background Glow Orbs */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 1;
            pointer-events: none;
        }
        .glow-orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196, 181, 253, 0.4) 0%, transparent 70%);
            top: -200px;
            right: -100px;
        }
        .glow-orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(253, 186, 116, 0.3) 0%, transparent 70%);
            bottom: -150px;
            left: -100px;
        }
        .glow-orb-3 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(167, 243, 208, 0.3) 0%, transparent 70%);
            top: 40%;
            left: 30%;
        }

        /* Container */
        .premium-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Header Section */
        .premium-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3.5rem;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .premium-eyebrow {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.75rem;
        }

        .premium-title {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            margin: 0;
            line-height: 1.2;
            color: #1e293b;
        }

        .premium-view-all {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #7c3aed;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            padding: 0.5rem 0.75rem;
            border-radius: 12px;
            background: rgba(139, 92, 246, 0.05);
        }

        .premium-view-all:hover {
            color: #6d28d9;
            background: rgba(139, 92, 246, 0.1);
            gap: 0.75rem;
        }

        /* Grid Layout */
        .premium-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        /* Premium Light Card */
        .premium-card {
            position: relative;
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 1.5rem;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            text-decoration: none;
            color: inherit;
            box-shadow: 
                0 4px 6px -1px rgba(0, 0, 0, 0.02), 
                0 10px 15px -3px rgba(0, 0, 0, 0.03);
        }

        /* Subtle shine effect on hover */
        .premium-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            transition: left 0.8s ease;
            pointer-events: none;
            z-index: 1;
        }

        .premium-card:hover {
            transform: translateY(-8px);
            border-color: rgba(196, 181, 253, 0.6);
            box-shadow: 
                0 20px 25px -5px rgba(0, 0, 0, 0.05), 
                0 8px 10px -6px rgba(0, 0, 0, 0.01),
                0 0 0 1px rgba(139, 92, 246, 0.1);
        }

        .premium-card:hover::before {
            left: 100%;
        }

        /* Card Image */
        .card-image-wrapper {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .card-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .premium-card:hover .card-image-wrapper img {
            transform: scale(1.05);
        }

        .card-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            z-index: 1;
        }

        /* Card Content */
        .card-content {
            padding: 1.75rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 2;
        }

        .premium-badge {
            display: inline-block;
            align-self: flex-start;
            padding: 0.35rem 0.85rem;
            background: #f5f3ff;
            border: 1px solid #e9d5ff;
            color: #7c3aed;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            border-radius: 2rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .premium-card:hover .premium-badge {
            background: #ede9fe;
            border-color: #ddd6fe;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1e293b;
            margin: 0 0 1.5rem 0;
            line-height: 1.4;
            flex-grow: 1;
        }

        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #8b5cf6;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .card-link:hover {
            color: #6d28d9;
            gap: 0.75rem;
        }

        /* Icons */
        .arrow-icon {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s ease;
        }

        .premium-view-all:hover .arrow-icon,
        .card-link:hover .arrow-icon {
            transform: translateX(4px);
        }

        /* Accessibility Focus States */
        .premium-view-all:focus-visible,
        .card-link:focus-visible {
            outline: 2px solid #8b5cf6;
            outline-offset: 4px;
            border-radius: 8px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .premium-light-section {
                padding: 3rem 1rem;
            }
            .premium-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .premium-grid {
                grid-template-columns: 1fr;
            }
        }


        /*==============================
 BRAND SECTION
==============================*/

.brand-section{

padding:90px 0;

background:
linear-gradient(180deg,#ffffff,#f8fbff);

overflow:hidden;

position:relative;

}

/* Decorative Background */

.brand-section::before{

content:"";

position:absolute;

width:420px;

height:420px;

left:-180px;

top:-180px;

background:radial-gradient(circle,
rgba(0,82,255,.08),
transparent 70%);

border-radius:50%;

}

.brand-section::after{

content:"";

position:absolute;

width:380px;

height:380px;

right:-150px;

bottom:-150px;

background:radial-gradient(circle,
rgba(255,42,95,.08),
transparent 70%);

border-radius:50%;

}

/* Heading */

.section-heading{

max-width:760px;

margin:auto auto 60px;

position:relative;

z-index:2;

}

.brand-badge{

display:inline-block;

padding:8px 20px;

border-radius:40px;

background:#edf5ff;

color:#0052ff;

font-size:13px;

font-weight:700;

letter-spacing:1px;

margin-bottom:18px;

}

.section-heading h2{

font-size:46px;

font-weight:800;

color:#111827;

margin-bottom:18px;

}

.section-heading h2 span{

background:linear-gradient(90deg,#0052ff,#ff2a5f);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.section-heading p{

font-size:18px;

color:#6b7280;

line-height:1.8;

}

/*==============================
 LOGO SLIDER
==============================*/

.logo-slider{

overflow:hidden;

position:relative;

}

.logo-track{

display:flex;

gap:28px;

width:max-content;

animation:scrollLogo 28s linear infinite;

}

.logo-slider:hover .logo-track{

animation-play-state:paused;

}

/*==============================
 BRAND CARD
==============================*/

.brand-card{

min-width:220px;

height:95px;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

border:1px solid #edf2f8;

border-radius:18px;

font-size:28px;

font-weight:800;

color:#6b7280;

transition:.35s;

box-shadow:
0 8px 20px rgba(0,0,0,.04);

}

.brand-card:hover{

transform:translateY(-8px);

color:#0052ff;

border-color:#0052ff;

box-shadow:
0 18px 40px rgba(0,82,255,.12);

}

/*==============================
 ANIMATION
==============================*/

@keyframes scrollLogo{

from{

transform:translateX(0);

}

to{

transform:translateX(-50%);

}

}

/*==============================
 MOBILE
==============================*/

@media(max-width:768px){

.section-heading h2{

font-size:34px;

}

.brand-card{

min-width:170px;

height:80px;

font-size:22px;

}

}



/* breadcrumb */

/*=============================
 HERO SECTION
=============================*/

.breadcrumb-hero{

position:relative;

padding:20px 0 10px;

overflow:hidden;

background:
linear-gradient(135deg,
#050b18 0%,
#081b35 35%,
#0a2447 70%,
#051120 100%);

}

/*=============================
 BLUR EFFECT
=============================*/

.blur{

position:absolute;

border-radius:50%;

filter:blur(80px);

animation:float 10s ease-in-out infinite;

opacity:.5;

}

.blur1{

width:320px;

height:320px;

background:#0052ff;

left:-80px;

top:-80px;

}

.blur2{

width:260px;

height:260px;

background:#ff2a5f;

right:-60px;

top:120px;

animation-delay:2s;

}

.blur3{

width:250px;

height:250px;

background:#6f42c1;

bottom:-100px;

left:45%;

animation-delay:4s;

}

/*=============================
 SVG
=============================*/

.hero-svg{

position:absolute;

inset:0;

width:100%;

height:100%;

opacity:.35;

}

.hero-svg path{

fill:none;

stroke:#ffffff20;

stroke-width:2;

stroke-dasharray:8;

animation:lineMove 20s linear infinite;

}

/*=============================
 DOTS
=============================*/

.dot{

position:absolute;

border-radius:50%;

background:#fff;

animation:pulse 4s infinite;

}

.dot1{

width:7px;

height:7px;

top:18%;

left:12%;

}

.dot2{

width:10px;

height:10px;

top:60%;

left:8%;

}

.dot3{

width:6px;

height:6px;

top:30%;

right:15%;

}

.dot4{

width:9px;

height:9px;

bottom:22%;

right:12%;

}

.dot5{

width:5px;

height:5px;

bottom:18%;

left:45%;

}


/*=============================
 BREADCRUMB
=============================*/

.breadcrumb-nav{

display:inline-flex;

flex-wrap:wrap;

align-items:center;

gap:12px;

padding:5px 15px;

background:rgba(255,255,255,.06);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:50px;

}

.breadcrumb-nav a{

color:#b8c6df;

text-decoration:none;

transition:.3s;

font-weight:500;

}

.breadcrumb-nav a:hover{

color:#fff;

}

.breadcrumb-nav strong{

color:#fff;

font-weight:700;

}

.breadcrumb-nav span{

color:#6d89b8;

}

/*=============================
 TITLE
=============================*/

.breadcrumb-hero h1{

font-size:38px;

font-weight:600;

color:#fff;

margin-bottom:20px;

background:linear-gradient(90deg,#ffffff,#8ab8ff);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.breadcrumb-hero p{

font-size:17px;

color:#bfd2f0;

max-width:720px;

margin:auto;

}

/*=============================
 ANIMATION
=============================*/

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-30px);

}

}

@keyframes pulse{

0%,100%{

transform:scale(1);

opacity:.2;

}

50%{

transform:scale(2);

opacity:1;

}

}

@keyframes lineMove{

from{

transform:translateX(0);

}

to{

transform:translateX(-120px);

}

}

@keyframes rotateIcon{

0%{

transform:rotate(0deg);

}

50%{

transform:rotate(8deg);

}

100%{

transform:rotate(0deg);

}

}

/*=============================
 MOBILE
=============================*/

@media(max-width:991px){

.breadcrumb-hero{

padding:90px 0 70px;

}

.breadcrumb-hero h1{

font-size:40px;

}

.breadcrumb-hero p{

font-size:16px;

}

.page-icon{

width:75px;

height:75px;

font-size:28px;

}

}

@media(max-width:576px){

.breadcrumb-nav{

padding:10px 16px;

font-size:14px;

gap:8px;

}

.breadcrumb-hero h1{

font-size:30px;

}

.breadcrumb-hero{

padding:70px 0 50px;

}

}



/* about us page */

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* --- OVERLAY BACKGROUND IMAGE EFFECT --- */
.bg-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    z-index: 0;
}

.bg-pastel-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.92) 0%, rgba(252, 231, 243, 0.85) 50%, rgba(243, 232, 255, 0.92) 100%);
    z-index: 1;
}

.bg-card-overlay-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.bg-card-pastel-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(224, 242, 254, 0.88) 100%);
    backdrop-filter: blur(10px);
    z-index: 1;
}

/* --- BADGES & ACCENT COLORS --- */
.text-purple { color: var(--vonage-purple) !important; }
.text-pink { color: var(--vonage-pink) !important; }
.text-blue { color: var(--vonage-blue) !important; }
.text-orange { color: var(--vonage-orange) !important; }

.bg-pastel-pink { background-color: var(--pastel-pink-bg) !important; }
.bg-pastel-blue { background-color: var(--pastel-blue-bg) !important; }
.bg-pastel-orange { background-color: var(--pastel-orange-bg) !important; }
.bg-pastel-purple { background-color: var(--pastel-purple-bg) !important; }

.text-gradient-purple {
    background: linear-gradient(135deg, var(--vonage-purple), var(--vonage-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- GLASS & PRODUCT CARDS --- */
.glass-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

.bg-white-75 {
    background: rgba(255, 255, 255, 0.75);
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-light);
    border-radius: 20px !important;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(148, 163, 184, 0.22) !important;
    background: #ffffff;
}

/* Card Borders */
.border-top-pink { border-top: 4px solid var(--vonage-pink) !important; }
.border-top-blue { border-top: 4px solid var(--vonage-blue) !important; }
.border-top-purple { border-top: 4px solid var(--vonage-purple) !important; }

/* --- ICON BOXES --- */
.icon-box {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icon-orb-lg {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* --- PRESENCE STATS GRID --- */
.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.06) !important;
}

/* 5 Column Grid Layout for Large Screens */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}




/* contact us */

.pastel-blue-mesh {
    position: absolute;
    inset: -20%;
    background: 
        radial-gradient(circle at 15% 20%, #dbeafe 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, #e0f2fe 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, #f3e8ff 0%, transparent 50%),
        radial-gradient(circle at 80% 85%, #fce7f3 0%, transparent 45%);
    filter: blur(80px);
    opacity: 0.9;
    z-index: -1;
    animation: pastelMeshAnimation 20s ease-in-out infinite alternate;
}

@keyframes pastelMeshAnimation {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(2deg) translate(-15px, 10px); }
    100% { transform: scale(1) rotate(0deg) translate(15px, -10px); }
}

/* --- 2. Gradient Border Glassmorphism Card --- */
.contact-form-card, .contact-info-card {
    background: var(--card-glass) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    border-radius: 24px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 20px 40px -15px rgba(148, 163, 184, 0.25) !important;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Creative Gradient Border Accent on Cards */
.contact-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.3), rgba(214, 51, 132, 0.2), rgba(111, 66, 193, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Hover Lift Effect */
.contact-info-card:hover {
    transform: translateY(-6px) scale(1.01);
    background: #ffffff !important;
    box-shadow: 0 25px 50px -12px rgba(13, 110, 253, 0.15) !important;
}

/* --- 3. Soft Pastel Icon Orbs --- */
.icon-orb {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .icon-orb {
    transform: scale(1.1) rotate(-4deg);
}

.bg-pastel-blue { background-color: var(--pastel-blue-bg) !important; color: var(--vonage-blue) !important; }
.bg-pastel-purple { background-color: var(--pastel-purple-bg) !important; color: var(--vonage-purple) !important; }
.bg-pastel-pink { background-color: var(--pastel-pink-bg) !important; color: var(--vonage-pink) !important; }

/* --- 4. Inputs & Creative Glowing Focus States --- */
.custom-input {
    background: rgba(255, 255, 255, 0.75) !important;
    border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
    color: var(--text-dark) !important;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease !important;
}

.custom-input:focus {
    background: #ffffff !important;
    border-color: var(--vonage-blue) !important;
    box-shadow: 0 0 20px rgba(13, 110, 253, 0.18), 0 0 0 4px rgba(13, 110, 253, 0.08) !important;
    transform: translateY(-1px);
}

/* Floating Label Adjustment */
.form-floating > label {
    color: var(--text-muted);
    font-weight: 500;
}

/* --- 5. Interactive Pastel Topic Chips (Pill Radio Option) --- */
.topic-chip-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.topic-chip-wrapper input[type="radio"] {
    display: none;
}

.topic-chip {
    padding: 0.55rem 1.1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
}

.topic-chip-wrapper input[type="radio"]:checked + .topic-chip {
    background: var(--pastel-blue-bg);
    color: var(--vonage-blue);
    border-color: #bfdbfe;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.12);
}

.topic-chip:hover {
    background: #ffffff;
    color: var(--text-dark);
}

/* --- 6. Creative Animated Button --- */
.btn-pastel-submit {
    position: relative;
    background: linear-gradient(135deg, var(--vonage-blue) 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.9rem;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.25);
    overflow: hidden;
    transition: all 0.35s ease;
}

.btn-pastel-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.35);
    color: #ffffff;
}

.btn-pastel-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-pastel-submit:hover::before {
    left: 100%;
}



/* --- Container Glass Panel --- */
.glass-container {
    background: var(--card-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
}

/* --- Typography Hierarchy --- */
.privacy-policy-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid var(--pastel-blue-bg);
}

.privacy-policy-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vonage-purple);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
}

.privacy-policy-section h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.privacy-policy-section h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--vonage-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.privacy-policy-section p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.privacy-policy-section a {
    color: var(--vonage-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.privacy-policy-section a:hover {
    color: var(--vonage-purple);
    text-decoration: underline;
}

/* --- Lists --- */
.privacy-policy-section ul,
.privacy-policy-section ol {
    color: var(--text-muted);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-policy-section li {
    margin-bottom: 0.5rem;
}

/* --- Color Utilities & Boxes --- */
.text-purple { color: var(--vonage-purple) !important; }
.text-blue { color: var(--vonage-blue) !important; }

.bg-pastel-purple { background-color: var(--pastel-purple-bg) !important; }
.bg-pastel-blue { background-color: var(--pastel-blue-bg) !important; }
.bg-pastel-pink { background-color: var(--pastel-pink-bg) !important; }
.bg-pastel-green { background-color: var(--pastel-green-bg) !important; }

.bg-pastel-blue-solid { background-color: #f0f9ff; }
.bg-pastel-purple-solid { background-color: #faf5ff; }

/* --- Custom Privacy Data Table --- */


.custom-privacy-table thead {
    background-color: var(--pastel-blue-bg);
}

.custom-privacy-table th {
    font-weight: 700;
   
}

.custom-privacy-table td {
    padding: 1rem;
   
}

.custom-privacy-table tbody tr:last-child td {
    border-bottom: none;
}

.privacy-policy-section tbody, td, tfoot, th, thead, tr{border: 1px solid #000;}




/* =========================================================
   TELERGE COMPACT GLASS FOOTER
========================================================= */

.telerge-glass-footer {
    position: relative;
    padding: 45px 0 25px;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 42, 95, .10),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(0, 82, 255, .12),
            transparent 32%
        ),
        #070a12;

    isolation: isolate;
}


/* =========================================================
   GLOW
========================================================= */

.glass-footer-glow {
    position: absolute;
    width: 280px;
    height: 280px;

    border-radius: 50%;
    filter: blur(90px);

    opacity: .15;
    pointer-events: none;

    z-index: -2;

    animation: footerGlowMove 9s ease-in-out infinite alternate;
}

.glow-pink {
    top: -150px;
    left: 5%;
    background: #ff2a5f;
}

.glow-blue {
    right: 5%;
    bottom: -160px;
    background: #0052ff;
    animation-delay: 2s;
}

@keyframes footerGlowMove {

    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.15);
    }

}


/* =========================================================
   SUBTLE GRID
========================================================= */

.glass-footer-grid {
    position: absolute;
    inset: 0;

    opacity: .025;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 30%,
            #000 70%,
            transparent
        );

    z-index: -1;
}


/* =========================================================
   MAIN GLASS CARD
========================================================= */

.footer-glass-card {

    position: relative;

    padding: 28px 30px 18px;

    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.075),
            rgba(255,255,255,.025)
        );

    border: 1px solid rgba(255,255,255,.10);

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow:
        0 25px 70px rgba(0,0,0,.30),
        inset 0 1px 0 rgba(255,255,255,.08);

    overflow: hidden;
}


/* Gradient border */

.footer-glass-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: inherit;

    padding: 1px;

    background:
        linear-gradient(
            120deg,
            rgba(255,42,95,.35),
            transparent 35%,
            transparent 65%,
            rgba(0,82,255,.35)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}


/* =========================================================
   BRAND
========================================================= */

.footer-logo img {

    max-width: 165px;

    transition:
        transform .3s ease,
        filter .3s ease;
}

.footer-logo:hover img {

    transform: translateY(-2px);

    filter:
        drop-shadow(
            0 8px 20px
            rgba(255,255,255,.15)
        );
}


.footer-disclaimer {

    max-width: 760px;

    color: rgba(255,255,255,.58);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-socials {

    display: flex;

    gap: 8px;
}

.glass-social {

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    color: rgba(255,255,255,.65);

    text-decoration: none;

    background:
        rgba(255,255,255,.045);

    border:
        1px solid rgba(255,255,255,.09);

    backdrop-filter: blur(10px);

    transition:
        all .3s ease;
}

.glass-social:hover {

    color: #fff;

    transform:
        translateY(-4px);

    border-color:
        rgba(255,255,255,.20);

    background:
        linear-gradient(
            135deg,
            rgba(255,42,95,.25),
            rgba(0,82,255,.25)
        );

    box-shadow:
        0 8px 25px
        rgba(0,0,0,.25);
}


/* =========================================================
   LEGAL GLASS BOX
========================================================= */

.legal-glass-box {

    padding: 18px;

    border-radius: 16px;

    background:
        rgba(255,255,255,.035);

    border:
        1px solid rgba(255,255,255,.08);

    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.04);
}


/* =========================================================
   LEGAL TITLE
========================================================= */

.legal-title {

    display: flex;

    align-items: center;

    gap: 9px;

    margin: 0 0 12px;

    color: #fff;

    font-size: 14px;

    font-weight: 700;
}

.legal-icon {

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #fff;

    font-size: 11px;

    background:
        linear-gradient(
            135deg,
            #ff2a5f,
            #0052ff
        );

    box-shadow:
        0 5px 15px
        rgba(0,82,255,.20);
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.legal-links {

    padding: 0;
    margin: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.legal-links li {
    margin: 0;
}

.legal-links a {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 9px;

    border-radius: 8px;

    color: rgba(255,255,255,.55);

    text-decoration: none;

    font-size: 12px;

    transition:
        all .25s ease;
}

.legal-links a > i:first-child {

    width: 15px;

    color: #ff4f7b;

    font-size: 11px;

    transition:
        color .25s ease,
        transform .25s ease;
}

.legal-links a span {

    flex: 1;
}

.link-arrow {

    color:
        rgba(255,255,255,.25) !important;

    font-size: 9px !important;

    width: auto !important;

    opacity: 0;

    transform: translateX(-4px);

    transition:
        all .25s ease;
}

.legal-links a:hover {

    color: #fff;

    background:
        rgba(255,255,255,.055);

    transform:
        translateX(2px);
}

.legal-links a:hover > i:first-child {

    color: #4d84ff;

    transform:
        scale(1.1);
}

.legal-links a:hover .link-arrow {

    opacity: 1;

    transform:
        translateX(0);
}


/* =========================================================
   DIVIDER
========================================================= */

.footer-divider {

    width: 100%;

    height: 1px;

    margin-top: 22px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.12),
            rgba(255,42,95,.20),
            rgba(0,82,255,.20),
            rgba(255,255,255,.12),
            transparent
        );
}


/* =========================================================
   BOTTOM
========================================================= */

.footer-copyright {

    color:
        rgba(255,255,255,.38);

    font-size: 11px;
}

.footer-mini-links {

    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-mini-links a {

    color:
        rgba(255,255,255,.38);

    font-size: 11px;

    text-decoration: none;

    transition:
        color .25s ease;
}

.footer-mini-links a:hover {

    color: #fff;
}

.footer-mini-links span {

    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.20);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .telerge-glass-footer {

        padding-top: 35px;
    }

    .footer-glass-card {

        padding: 25px;
    }

}


@media (max-width: 767px) {

    .telerge-glass-footer {

        padding:
            30px 0 18px;
    }

    .footer-glass-card {

        padding:
            22px 18px 16px;

        border-radius: 18px;
    }

    .footer-disclaimer {

        font-size: 12px;

        line-height: 1.7;
    }

    .legal-glass-box {

        padding: 15px;
    }

    .footer-bottom {

        text-align: center;
    }

    .footer-mini-links {

        justify-content: center;

        width: 100%;
    }

}


@media (max-width: 480px) {

    .footer-logo img {

        max-width: 145px;
    }

    .footer-socials {

        gap: 7px;
    }

    .glass-social {

        width: 34px;
        height: 34px;

        border-radius: 9px;
    }

}

/* hero section */


.hero-section{
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(
        135deg,
        #FFF8F3 0%,
        #F7F4FF 20%,
        #EEF8FF 40%,
        #F5FFF7 65%,
        #FFF4FA 100%
    );
}

/* Animated Background */
.hero-bg{
    position:absolute;
    inset:0;
    background:linear-gradient(
        -45deg,
        #FFF7F2,
        #F3F0FF,
        #EDF8FF,
        #F8FFF5,
        #FFF5FB
    );
    background-size:400% 400%;
    animation:gradientMove 18s ease infinite;
}

/* Soft Blur Blobs */
.blob{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.8;
    animation:float 12s ease-in-out infinite alternate;
}

.blob-1{
    width:420px;
    height:420px;
    background:#FFD6E8;
    top:-120px;
    left:-120px;
}

.blob-2{
    width:380px;
    height:380px;
    background:#D8F4FF;
    right:-120px;
    bottom:-80px;
    animation-delay:3s;
}

.blob-3{
    width:280px;
    height:280px;
    background:#E7E0FF;
    left:45%;
    top:40%;
    animation-delay:5s;
}

/* Light Grid Overlay */
.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background-image:
        linear-gradient(rgba(150,160,180,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(150,160,180,.07) 1px, transparent 1px);
    background-size:60px 60px;
    mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent);
}

/* Bottom SVG Fade */
.hero-wave{
    position:absolute;
    bottom:0;
    width:100%;
    height:170px;
    opacity:.45;
}

/* Animations */
@keyframes gradientMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

@keyframes float{

    from{
        transform:translate(0,0) scale(1);
    }

    to{
        transform:translate(40px,-40px) scale(1.15);
    }

}



/* voip phone service */

/* VOIP HERO FORM SECTION */
    .voip-section {
      position: relative;
      padding: 6rem 0;
      background: linear-gradient(180deg, #52d8d11a, #1b3ab729);
      overflow: hidden;
    }

   
  
.contact-form-card .form-group {margin-bottom: 10px;}
    .voip-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 3.5rem;
      align-items: center;
    }

    /* Left Info Column */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 1.25rem;
      background: rgba(13, 110, 253, 0.1);
      color: var(--vonage-blue);
    }

    .voip-title {
      font-size: 32px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      color: var(--text-dark);
    }

    .voip-title span {
      background: linear-gradient(135deg, var(--vonage-blue), var(--vonage-purple));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .voip-description {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .features-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      font-weight: 600;
      font-size: 1rem;
    }

    .feature-icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--pastel-blue-bg);
      color: var(--vonage-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    /* Right Form Card */
    .form-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      box-shadow: var(--shadow-xl);
      border: 1px solid var(--border-color);
      position: relative;
    }

    .form-header {
      margin-bottom: 1.75rem;
    }

    .form-header h3 {
      font-size: 1.65rem;
      font-weight: 800;
      color: var(--text-dark);
    }

    .form-header p {
      font-size: 0.925rem;
      color: var(--text-muted);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.15rem;
    }

    .full-width {
      grid-column: span 2;
    }

    /* Form Inputs & Selects */
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .form-group label {
      font-size: 0.825rem;
      font-weight: 700;
      color: var(--text-dark);
      text-transform: uppercase;
      letter-spacing: 0.03em;
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-wrapper i {
      position: absolute;
      left: 1rem;
      color: var(--text-muted);
      font-size: 1rem;
      pointer-events: none;
      transition: var(--transition);
    }

    .form-control {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 2.75rem;
      font-family: var(--font-primary);
      font-size: 0.95rem;
      color: var(--text-dark);
      background-color: var(--bg-surface);
      border: 1.5px solid var(--border-color);
      border-radius: var(--radius-md);
      outline: none;
      transition: var(--transition);
    }

    select.form-control {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 1em;
      cursor: pointer;
    }

    .form-control:focus {
      background-color: var(--white);
      border-color: var(--vonage-blue);
      box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
    }

    .form-control:focus + i {
      color: var(--vonage-blue);
    }

    /* Phone Input Custom Flex Layout */
    .phone-input-group {
      display: flex;
      gap: 0.5rem;
    }

    .country-code {
      width: 90px;
      padding-left: 1rem;
      font-weight: 600;
      text-align: center;
      flex-shrink: 0;
    }

    /* Checkbox Styles */
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .checkbox-group input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin-top: 0.15rem;
      accent-color: var(--vonage-blue);
      cursor: pointer;
      flex-shrink: 0;
    }

    .checkbox-group label {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
      text-transform: none;
      line-height: 1.4;
      cursor: pointer;
    }

    .checkbox-group a {
      color: var(--vonage-blue);
      text-decoration: none;
    }

    .checkbox-group a:hover {
      text-decoration: underline;
    }

    /* Submit Button */
    .btn-submit {
      width: 100%;
      padding: 0.9rem 1.5rem;
      background: linear-gradient(135deg, var(--vonage-blue), #0052cc);
      color: var(--white);
      border: none;
      border-radius: var(--radius-md);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
      background: linear-gradient(135deg, #0052cc, var(--vonage-purple));
    }

    /* Responsiveness */
    @media (max-width: 992px) {
      .voip-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .voip-title {
        font-size: 2.25rem;
      }
    }

    @media (max-width: 576px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
      .full-width {
        grid-column: span 1;
      }
      .form-card {
        padding: 1.5rem;
      }
    }



    /* phone voip */

    /* Custom Badge */
    .feature-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      background: rgba(13, 110, 253, 0.08);
      color: var(--vonage-blue);
    }

    /* Feature Card Base Styles */
    .voip-card {
      background: #e9f8ff;
          border-left: 2px solid #6f42c1;
      border-radius: var(--radius-lg);
      padding: 2rem;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    /* Card Hover Animations */
    .voip-card:hover {
      transform: translateY(-8px);
      border-color: rgba(13, 110, 253, 0.3);
      box-shadow: 0 20px 35px -10px rgba(13, 110, 253, 0.12) !important;
    }

    /* Colorful Icon Box Styles */
    .icon-box {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      transition: var(--transition);
    }

    .voip-card:hover .icon-box {
      transform: scale(1.08);
      transition: transform 0.5s ease;
    }

    .icon-blue { background: var(--pastel-blue-bg); color: var(--vonage-blue); }
    .icon-purple { background: var(--pastel-purple-bg); color: var(--vonage-purple); }
    .icon-pink { background: var(--pastel-pink-bg); color: var(--vonage-pink); }
    .icon-orange { background: var(--pastel-orange-bg); color: var(--vonage-orange); }

    /* Footer Tag & Arrow Animation */
    .card-tag {
      color: var(--vonage-blue);
      font-weight: 700;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border-top: 1px solid var(--bg-surface);
      padding-top: 1.25rem;
      margin-top: 1.5rem;
      width: 100%;
    }

    .card-tag i {
      font-size: 0.8rem;
      transition: transform 0.5s ease;
    }

    .voip-card:hover .card-tag i {
      transform: translateX(5px);
    }


    /* faq */


    /* FAQ Section Wrapper */
    .faq-section {
      position: relative;
      background: radial-gradient(circle at 50% 0%, rgba(13, 110, 253, 0.03) 0%, rgba(248, 250, 252, 0) 70%);
    }

    /* Section Badge */
    .faq-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: #ffffff;
      color: var(--vonage-blue);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    /* Gradient Title Text */
    .gradient-text {
      background: var(--vonage-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Modern Accordion Custom Styling */
    .faq-accordion .accordion-item {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg) !important;
      margin-bottom: 1.25rem;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .faq-accordion .accordion-item:hover {
      border-color: var(--border-hover);
      box-shadow: var(--shadow-hover);
      transform: translateY(-2px);
    }

    /* Accordion Button (Header) */
    .faq-accordion .accordion-button {
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--text-dark);
      background-color: var(--bg-card);
      padding: 1.5rem 2rem;
      border: none;
      box-shadow: none !important;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: var(--transition);
    }

    /* Active Accordion Button State */
    .faq-accordion .accordion-button:not(.collapsed) {
      color: var(--vonage-blue);
      background: linear-gradient(90deg, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
      padding-bottom: 1rem;
    }

    /* Active Item Border Highlight */
    .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
      border-color: rgba(13, 110, 253, 0.4);
      box-shadow: var(--shadow-active);
    }

    /* Custom Animated Indicator Icon (+ / -) */
    .faq-accordion .accordion-button::after {
      content: '\f067'; /* FontAwesome Plus Icon */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      font-size: 0.9rem;
      color: var(--text-dark);
      background: var(--bg-surface);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
      flex-shrink: 0;
      border: 1px solid var(--border-light);
    }

    .faq-accordion .accordion-button:hover::after {
      background: var(--vonage-blue);
      color: #ffffff;
      border-color: var(--vonage-blue);
    }

    .faq-accordion .accordion-button:not(.collapsed)::after {
      content: '\f068'; /* FontAwesome Minus Icon */
      background: var(--vonage-gradient);
      color: #ffffff;
      border-color: transparent;
      transform: rotate(180deg);
    }

    /* Accordion Body / Answer Content */
    .faq-accordion .accordion-body {
      padding: 0.5rem 2rem 1.75rem 2rem;
      color: var(--text-muted);
      font-size: 1rem;
      line-height: 1.75;
      border-top: none;
    }

    .faq-accordion .accordion-body strong {
      color: var(--text-dark);
      font-weight: 600;
    }


    /* ==========================================
   MEGA DROPDOWN MENU
========================================== */

.mega-menu {
    min-width: 310px;
    padding: 14px !important;

    background:
        linear-gradient(
            145deg,
            rgba(15, 18, 30, 0.98),
            rgba(9, 12, 23, 0.97)
        ) !important;

    border: 1px solid rgba(255, 255, 255, 0.10) !important;

    border-radius: 18px !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.35),
        0 0 35px rgba(0, 82, 255, 0.08) !important;

    overflow: hidden;

    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}


/* Dropdown Open */

.nav-item.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ==========================================
   DROPDOWN LIST
========================================== */

.mega-menu ul {
    padding: 0;
    margin: 0;

    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 5px;
}


/* ==========================================
   DROPDOWN LINK
========================================== */

.mega-menu ul li {
    margin: 0;
    padding: 0;
}

.mega-menu ul li a {
    position: relative;

    display: flex;
    align-items: center;

    padding: 12px 14px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    border-radius: 11px;

    transition:
        color .3s ease,
        background .3s ease,
        transform .3s ease,
        padding-left .3s ease;
}


/* ==========================================
   LEFT GRADIENT LINE
========================================== */

.mega-menu ul li a::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 3px;
    height: 0;

    border-radius: 10px;

    background:
        linear-gradient(
            180deg,
            #ff2a5f,
            #0052ff
        );

    transform: translateY(-50%);

    transition: height .3s ease;
}


/* ==========================================
   HOVER
========================================== */

.mega-menu ul li a:hover {

    color: #fff;

    padding-left: 20px;

    background:
        linear-gradient(
            90deg,
            rgba(255, 42, 95, 0.12),
            rgba(0, 82, 255, 0.10)
        );

    transform: translateX(2px);
}

.mega-menu ul li a:hover::before {
    height: 65%;
}


/* ==========================================
   ARROW
========================================== */

.mega-menu ul li a::after {
    content: "\f054";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    margin-left: auto;

    font-size: 9px;

    color: rgba(255, 255, 255, 0.3);

    opacity: 0;

    transform: translateX(-5px);

    transition:
        opacity .3s ease,
        transform .3s ease,
        color .3s ease;
}

.mega-menu ul li a:hover::after {

    opacity: 1;

    transform: translateX(0);

    color: #ff4775;
}


/* ==========================================
   DROPDOWN TOP GLOW
========================================== */

.mega-menu::before {

    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #ff2a5f,
            #0052ff,
            transparent
        );

    opacity: .7;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .mega-menu {

        min-width: 100%;

        margin-top: 8px !important;

        transform: none;

        opacity: 1;
        visibility: visible;

        background:
            rgba(10, 13, 24, 0.98) !important;
    }

    .nav-item.dropdown:hover .mega-menu {

        transform: none;
    }

    .mega-menu ul li a {

        padding: 11px 12px;
    }

}