
    /* Scoped Styles: All classes prefixed with 'ibrr-' to prevent affecting your existing CSS */
    .ibrr-search-section {
        --ibrr-bg-color:#ebebeb;
        --ibrr-grid-color: rgba(45, 96, 255, 0.25);
        --ibrr-browser-bg: #ffffff;
        --ibrr-text-dark: #202124;
        --ibrr-link-blue: #1a0dab;
        --ibrr-url-green: #006621;
        --ibrr-highlight: #fff3a1;
        
        position: relative;
        background-color: var(--ibrr-bg-color);
        padding: 80px 20px;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: Arial, sans-serif;
        overflow: hidden;
        box-sizing: border-box;
    }

    .ibrr-search-section *, 
    .ibrr-search-section *::before, 
    .ibrr-search-section *::after {
        box-sizing: border-box;
    }

    /* Glowing Grid Background */
    .ibrr-search-section::before {
        content: '';
        position: absolute;
        top: -50px; left: -50px; right: -50px; bottom: -50px;
        background-image: 
            linear-gradient(var(--ibrr-grid-color) 1px, transparent 1px),
            linear-gradient(90deg, var(--ibrr-grid-color) 1px, transparent 1px);
        background-size: 60px 60px;
        background-position: center center;
        mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 70%);
        -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 15%, rgba(0,0,0,0) 70%);
        z-index: 0;
        pointer-events: none;
    }

    /* Browser Window Container */
    .ibrr-browser-window {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 900px;
        background: var(--ibrr-browser-bg);
        border-radius: 12px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    /* Browser Header */
    .ibrr-browser-header {
        background-color: #f1f1f1;
        padding: 12px 16px;
        display: flex;
        gap: 8px;
        border-bottom: 1px solid #e0e0e0;
    }

    .ibrr-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }
    .ibrr-dot.red { background-color: #ff5f56; }
    .ibrr-dot.yellow { background-color: #ffbd2e; }
    .ibrr-dot.green { background-color: #27c93f; }

    /* Browser Body */
    .ibrr-browser-body {
        padding: 40px 60px 60px;
    }

    /* Logo Area */
    .ibrr-logo-wrap {
        text-align: center;
        margin-bottom: 30px;
    }

    .ibrr-logo-text {
        font-size: 5rem;
        font-weight: bold;
        /* letter-spacing: -2px; */
        margin: 0;
        line-height: 1;
    }
.ibrr-logo-sub {
    color: #4285f4;
    font-size: 1rem;
    margin: 8px 0 0 0;
    font-weight: 500;
    display: flex;           /* Added to align icon and text */
    justify-content: center; /* Added to center them */
    align-items: center;     /* Added to vertically center */
    gap: 6px;                /* Space between the icon and the text */
}
    /* Search Bar */
    .ibrr-search-box {
        display: flex;
        align-items: center;
        background-color: #f1f3f4;
        border-radius: 8px;
        margin: 0 auto 30px;
        max-width: 700px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
    }

    .ibrr-search-box:hover {
        border-color: #dfe1e5;
        box-shadow: 0 1px 6px rgba(32, 33, 36, 0.1);
    }

    .ibrr-type-area {
        flex: 1;
        padding: 16px 20px;
        font-size: 1.5rem;
        color: var(--ibrr-text-dark);
        min-height: 28px;
        display: flex;
        align-items: center;
    }

    .ibrr-cursor {
        display: inline-block;
        width: 2px;
        height: 24px;
        background-color: var(--ibrr-text-dark);
        margin-left: 2px;
        animation: ibrrBlink 1s step-end infinite;
    }

    @keyframes ibrrBlink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }

    .ibrr-search-btn {
        background-color: #b5b5b5;
        padding: 16px 24px;
        border-radius: 0 8px 8px 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .ibrr-search-btn svg {
        width: 24px;
        height: 24px;
        stroke: white;
    }

    /* Search Results Area */
    .ibrr-mock-results {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    }

    .ibrr-mock-results.show {
        opacity: 1;
        visibility: visible;
    }

    .ibrr-result-tabs {
        display: flex;
        gap: 20px;
        border-bottom: 1px solid #ebebeb;
        padding-bottom: 10px;
        margin-bottom: 15px;
        font-size: 0.9rem;
        color: #777;
    }
    
    .ibrr-result-tabs span:first-child {
        color: var(--ibrr-link-blue);
        border-bottom: 2px solid var(--ibrr-link-blue);
        padding-bottom: 10px;
        margin-bottom: -11px;
    }

    .ibrr-result-stats {
        font-size: 0.85rem;
        color: #70757a;
        margin-bottom: 25px;
    }

    .ibrr-result-item {
        margin-bottom: 25px;
    }

    .ibrr-result-title {
        color: var(--ibrr-link-blue);
        font-size: 1.25rem;
        margin: 0 0 4px 0;
        font-weight: normal;
        cursor: pointer;
    }

    .ibrr-result-title:hover {
        text-decoration: underline;
    }

    .ibrr-result-url {
        color: var(--ibrr-url-green);
        font-size: 0.85rem;
        margin: 0 0 4px 0;
    }

    .ibrr-result-desc {
        color: #4d5156;
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
    }

    .ibrr-highlight {
        background-color: var(--ibrr-highlight);
        font-weight: bold;
    }

    /* Mobile Adjustments */
    @media (max-width: 768px) {
        .ibrr-browser-body { padding: 30px 20px; }
        .ibrr-logo-text { font-size: 3.5rem; }
        .ibrr-type-area { font-size: 1.1rem; padding: 12px 15px; }
        .ibrr-cursor { height: 18px; }
        .ibrr-result-title { font-size: 1.1rem; }
    }








.growth-section {
  padding: 100px 6%;
  background: #f4f7ff;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.growth-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.growth-left {
  width: 50%;
  position: relative;
}

.image-box {
  position: relative;
background: linear-gradient(135deg, rgba(0, 82, 255, 0.05), rgba(0, 82, 255, 0.1));  border-radius: 30px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInLeft 1s ease;
}

.image-box img {
  width: 80%;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.revenue-card {
  top: 40px;
  right: -20px;
  width: 200px;
}

.revenue-card h3 {
  color: #0052ff;
}

.bars {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.bars span {
  width: 8px;
  height: 30px;
  background: #4f7cff;
  border-radius: 4px;
}

.trust-card {
  bottom: -20px;
  left: -20px;
  width: 180px;
}

/* RIGHT */
.growth-right {
  width: 50%;
  animation: fadeInRight 1s ease;
}

.section-tag {
  font-size: 14px;
  color: #ff4b4b;
  font-weight: 600;
}

.growth-right h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0c1c3f;
  margin: 20px 0;
}

.growth-right h2 span {
  color: #0052ff;
}

.main-text {
  color: #5a647a;
  line-height: 1.8;
}

.features {
    list-style: none;
    padding: 0;
    margin: 35px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 40px;
    justify-items: start;
    align-content: space-evenly;
    align-items: stretch;
    justify-content: stretch;
}

.features li {
  position: relative;
  padding-left: 42px;
  font-size: 16px;
  font-weight: 500;
  color: #0c1c3f;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* Professional Blue Icon Circle */
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 26px;
  height: 26px;
  background: #0052ff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,82,255,0.25);
}

/* White check inside circle */
.features li::after {
  content: "✓";
  position: absolute;
  left: 7px;
  top: 2px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

/* Hover effect */
.features li:hover {
  transform: translateX(6px);
  color: #0052ff;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}


.primary-btn {
  display: inline-block;
  background: #0052ff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #003fcc;
}

/* Animations */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-40px); }
  to { opacity:1; transform:translateX(0); }
}

@keyframes fadeInRight {
  from { opacity:0; transform:translateX(40px); }
  to { opacity:1; transform:translateX(0); }
}

/* Responsive */
@media(max-width:992px){
  .growth-container {
    flex-direction: column;
  }

  .growth-left,
  .growth-right {
    width: 100%;
    text-align: center;
  }

  .floating-card {
    display: none;
  }

  .growth-right h2 {
    font-size: 32px;
  }
}







    /* --- Section Layout Styles --- */
    .seo-section {
        position: relative;
        padding: 100px 20px;
        background-color: #f8fafc;
        overflow: hidden;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        perspective: 1000px; /* Gives 3D depth to the whole section */
    }

    /* --- 3D Background Moving Text --- */
    .bg-text-container {
        position: absolute;
        width: 200vw; /* Extra wide to cover angles */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotateX(40deg) rotateZ(-10deg); /* 3D Tilt */
        display: flex;
        flex-direction: column;
        gap: 20px;
        z-index: 0; /* Stays at the very back */
        pointer-events: none; /* Disables mouse interaction */
        opacity: 0.6; /* Slight transparency */
    }

    .bg-text-row {
        display: flex;
        white-space: nowrap;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 8vw; /* Responsive huge text */
        font-weight: 900;
        text-transform: uppercase;
        
        /* Outline Text Style */
        color: transparent; 
        -webkit-text-stroke: 2px #cbd5e1; 
    }

    /* Forward moving animation */
    .bg-text-row .track {
        display: flex;
        animation: marquee 30s linear infinite;
    }

    /* Reverse moving animation */
    .bg-text-row .track.reverse {
        animation: marquee-reverse 35s linear infinite;
    }

    /* Text spacing */
    .bg-text-row span {
        padding: 0 40px;
    }

    @keyframes marquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    @keyframes marquee-reverse {
        0% { transform: translateX(-50%); }
        100% { transform: translateX(0); }
    }

    /* --- Container for 3D Icon --- */
    .seo-container {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 2; /* Keeps icon above the text */
    }

    /* --- 3D Google Icon Styles --- */
    .seo-visual {
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1200px;
        height: 400px;
    }

    .scene-container {
        width: 45vmin; 
        height: 45vmin;
        min-width: 300px;
        min-height: 300px;
        position: relative;
        transform-style: preserve-3d;
    }

    .g-wrapper {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transform-origin: center center;
        transform: rotateX(15deg) rotateY(-15deg); 
    }

    .g-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    .g-layer:not(.front-face) path {
        filter: brightness(0.65) saturate(0.9);
    }

    .g-layer.front-face {
         filter: brightness(1.1);
    }

    .path-red { fill: #EA4335; }
    .path-yellow { fill: #FBBC05; }
    .path-green { fill: #34A853; }
    .path-blue { fill: #4285F4; }










/* --- CSS Variables for the Theme --- */
:root {
    --theme-dark: #0B1C38;
    --theme-blue: #0045D8;
    --theme-blue-light: #F0F6FF;
    --theme-red: #F54353;
    --theme-red-light: #FFF0F2;
    --theme-grey: #5A6B89;
    --theme-border: #E5E9F2;
}

.smart-solutions-section {
    font-family: 'Manrope', sans-serif;
    padding: 80px 20px;
    background-color: #fff;
    box-sizing: border-box;
}

.smart-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Header --- */
.smart-header {
    margin-bottom: 70px;
}

.smart-tagline {
    color: var(--theme-red);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.smart-tagline::before {
    content: '•';
    font-size: 20px;
}

.smart-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--theme-dark);
    max-width: 700px;
}

.smart-desc {
    color: var(--theme-grey);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 20px;
    max-width: 800px;
}

/* --- Grid Layout (3 per row) --- */
.smart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

/* --- Card Styles --- */
.smart-card {
    position: relative;
    margin-top: 35px;
    display: flex;
    flex-direction: column;
}

.smart-card-body {
    background-color: var(--theme-blue-light);
    border-radius: 12px;
    padding: 50px 25px 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.smart-card:hover .smart-card-body {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 28, 56, 0.05);
    background-color: #fff;
    border-color: var(--theme-border);
}

.smart-icon-box {
    position: absolute;
    top: -35px;
    left: 20px;
    width: 65px;
    height: 65px;
    background-color: var(--theme-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    z-index: 2;
    transition: 0.3s ease;
}

.smart-card:hover .smart-icon-box {
    background-color: var(--theme-dark);
}

.smart-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #AAB6C5;
}

.smart-card-title {
    font-size: 25px;
    font-weight: 800;
    color: var(--theme-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.smart-card-text {
    font-size: 16px;
    color: var(--theme-grey);
    line-height: 1.6;
    margin-bottom: 20px;
}

.smart-link-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    display: none;
}

/* Red Variation */
.smart-card.theme-red .smart-card-body {
    background-color: #0052ff1c;
}

.smart-card.theme-red .smart-icon-box {
    /* background-color: var(--theme-red); */
}

.smart-card.theme-red .smart-link-text {
    color: var(--theme-red);
}

/* --- Responsive --- */
@media (max-width: 1000px) {
    .smart-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .smart-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 30px;
        scroll-snap-type: x mandatory;
        gap: 20px;
    }

    .smart-card {
        min-width: 85%;
        scroll-snap-align: center;
    }

    .smart-title {
        font-size: 28px;
    }
}









       
/* Reset-friendly scoped styles */
.pro-industries-section {
    /* Dark Theme Base Colors tailored to match the provided grid image */
    --bg-color: #060b19; /* Deep dark blue background */
    --grid-line: rgba(45, 96, 255, 0.4); /* Bright blue for grid lines */
    --glow-center: rgba(30, 58, 138, 0.3); /* Soft background glow in the center */
    
    --card-bg: rgba(15, 23, 42, 0.65); /* Semi-transparent dark cards */
    --border-color: rgba(56, 189, 248, 0.15); /* Default card border */
    --border-hover: #38bdf8; /* Glowing bright blue on hover */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --icon-bg: rgba(56, 189, 248, 0.08);
    --icon-color: #38bdf8;
    
    position: relative;
    background-color: var(--bg-color);
    padding: 100px 20px;
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    overflow: hidden;
}

/* 1. The Faded Glowing Grid Effect (Matches the image) */
.pro-industries-section::before {
    content: '';
    position: absolute;
    top: -50px; left: -50px; right: -50px; bottom: -50px; /* Slight bleed to cover edges */
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 70px 70px; /* Size of the grid squares */
    background-position: center center;
    
    /* This creates the vignette fade effect from the image, keeping the center visible and edges dark */
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 10%, rgba(0,0,0,0) 75%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Soft subtle glow directly in the center to enhance the grid depth */
.pro-industries-section::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw; height: 100vh;
    background: radial-gradient(circle at center, var(--glow-center) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.industries-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1; /* Keeps content above the grid */
}

.header-center {
    text-align: center;
    margin-bottom: 70px;
}

.pro-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--icon-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.pro-title {
    font-size: 2.75rem;
    color: var(--text-main);
    margin: 0 0 20px 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.pro-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.6;
}

.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* Professional Card Styling - Strictly Centered */
.pro-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px); /* Glassmorphism touch */
    -webkit-backdrop-filter: blur(12px);
    padding: 45px 30px;
    border-radius: 16px;
    text-align: center; /* Centered text */
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered icons and content */
    position: relative;
    z-index: 2;
}

/* Hover Effect: Lift, Glow, and Border Color Change */
.pro-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.12), inset 0 0 20px rgba(56, 189, 248, 0.05);
}

/* Centered Icon Container */
.pro-icon {
    width: 68px;
    height: 68px;
    background: var(--icon-bg);
    color: var(--icon-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    transition: all 0.4s ease;
}

/* Icon Hover Glow Effect */
.pro-card:hover .pro-icon {
    background: rgba(56, 189, 248, 0.15);
    border-color: var(--border-hover);
    color: #ffffff;
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.3);
}

.pro-icon svg {
    width: 32px;
    height: 32px;
    transition: stroke 0.3s ease;
}

.pro-card h3 {
    font-size: 1.3rem;
    margin: 0 0 14px 0;
    color: var(--text-main);
    font-weight: 700;
}

.pro-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .pro-industries-section {
        padding: 60px 20px;
    }
    .pro-title { 
        font-size: 2.2rem; 
    }
    .pro-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}






  .innovation-marquee {
  background: #00247d;
  padding: 40px 0;
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}

/* TEXT PILL */
.pill {
  padding: 25px 60px;
  border: 2px solid #fff;
  border-radius: 100px;
  font-size: 48px;
  font-weight: 600;
  margin-right: 40px;
  white-space: nowrap;
  background: transparent;
  color: #fff;
}

/* ICON PILL */
.icon-pill {
  padding: 25px 45px;
  border: 2px solid #fff;
  border-radius: 100px;
  font-size: 36px;
  margin-right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ANIMATION */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {

  .pill {
    font-size: 32px;
    padding: 18px 40px;
  }

  .icon-pill {
    font-size: 28px;
    padding: 18px 30px;
  }

}

@media (max-width: 600px) {

  .pill {
    font-size: 22px;
    padding: 12px 25px;
  }

  .icon-pill {
    font-size: 20px;
    padding: 12px 20px;
  }

}






.ultra-pro-process {
    --primary-blue: #3b86f6ee;
    --dark-bg: #2e3f8f;
    background-color: var(--dark-bg);
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.map-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(''), 
                      url('../assetsnew/shapesbg/img1.jpg');
    background-size: auto, cover;
    opacity: 0.15;
    z-index: 1;
}

.process-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; padding: 0 20px; }

.process-header { text-align: center; margin-bottom: 100px; }
.title-main { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 24px; letter-spacing: -1px; color: #fff; }
.title-glow-bar { width: 80px; height: 5px; background: var(--primary-blue); margin: 20px auto; border-radius: 10px; box-shadow: 0 0 15px var(--primary-blue); }

.stage-container { position: relative; min-height: 500px; }

/* SVG ANIMATIONS */
.path-svg-desktop { width: 100%; height: 400px; position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; }
.path-svg-mobile { display: none; width: 60px; height: 100%; position: absolute; left: 50%; transform: translateX(-50%); top: 0; z-index: 1; }

.steps-flex { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 10; height: 500px; }

.step-box { width: 18%; display: flex; flex-direction: column; align-items: center; text-align: center; }
/* Desktop Alternating Levels */
.up { transform: translateY(-80px); }
.down { transform: translateY(80px); }

.sphere-main {
    width: 130px; /* SIZE INCREASED */
    height: 130px; /* SIZE INCREASED */
    background: radial-gradient(circle at 30% 30%, #1e293b, #06090f);
    border: 3px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin: 30px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sphere-main svg { width: 60px; height: 60px; color: var(--primary-blue); z-index: 2; transition: 0.3s; } /* ICON SIZE INCREASED */

.active-sphere { border-color: #60a5fa; box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }

.orbit {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: rotate 10s linear infinite;
}

.meta-tag { font-weight: 800; font-size: 0.9rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.desc-text { color: #fff; font-size: larger; max-width: 160px; font-weight: 500; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* RESPONSIVE BREAKPOINT */
@media (max-width: 1100px) {
    .path-svg-desktop { display: none; }
    .path-svg-mobile { display: block; }
    
    .steps-flex { flex-direction: column; gap: 100px; height: auto; padding: 50px 0; }
    .step-box { width: 100%; transform: none !important; }
    
    .sphere-main { width: 150px; height: 150px; } /* Even larger on mobile */
    .sphere-main svg { width: 70px; height: 70px; }
    
    /* Layout fix for "down" items on mobile */
    .down { flex-direction: column; }
    .down .desc-text { order: 3; }
    .down .sphere-main { order: 2; }
    .down .meta-tag { order: 1; }
}

@media (max-width: 600px) {
    .title-main { font-size: 2rem; }
    .sphere-main { width: 120px; height: 120px; }
    .sphere-main svg { width: 55px; height: 55px; }
}







.ultra-pro-process {
    --primary-blue: #3b86f6ee;
    --dark-bg: #2e3f8f;
    background-color: var(--dark-bg);
    padding: 120px 0;
    font-family: 'Inter', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.map-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url(''), 
                      url('../assetsnew/shapesbg/img1.jpg');
    background-size: auto, cover;
    opacity: 0.15;
    z-index: 1;
}

.process-inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2; padding: 0 20px; }

.process-header { text-align: center; margin-bottom: 100px; }
.title-main { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 900; margin-bottom: 24px; letter-spacing: -1px; color: #fff; }
.title-glow-bar { width: 80px; height: 5px; background: var(--primary-blue); margin: 20px auto; border-radius: 10px; box-shadow: 0 0 15px var(--primary-blue); }

.stage-container { position: relative; min-height: 500px; }

/* SVG ANIMATIONS */
.path-svg-desktop { width: 100%; height: 400px; position: absolute; top: 50%; transform: translateY(-50%); z-index: 1; }
.path-svg-mobile { display: none; width: 60px; height: 100%; position: absolute; left: 50%; transform: translateX(-50%); top: 0; z-index: 1; }

.steps-flex { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 10; height: 500px; }

.step-box { width: 18%; display: flex; flex-direction: column; align-items: center; text-align: center; }
/* Desktop Alternating Levels */
.up { transform: translateY(-80px); }
.down { transform: translateY(80px); }

.sphere-main {
    width: 130px; /* SIZE INCREASED */
    height: 130px; /* SIZE INCREASED */
    background: radial-gradient(circle at 30% 30%, #1e293b, #06090f);
    border: 3px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    margin: 30px 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sphere-main svg { width: 60px; height: 60px; color: var(--primary-blue); z-index: 2; transition: 0.3s; } /* ICON SIZE INCREASED */

.active-sphere { border-color: #60a5fa; box-shadow: 0 0 40px rgba(59, 130, 246, 0.5); }

.orbit {
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.3);
    animation: rotate 10s linear infinite;
}

.meta-tag { font-weight: 800; font-size: 0.9rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; }
.desc-text { color: #fff; font-size: larger; max-width: 160px; font-weight: 500; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* RESPONSIVE BREAKPOINT */
@media (max-width: 1100px) {
    .path-svg-desktop { display: none; }
    .path-svg-mobile { display: block; }
    
    .steps-flex { flex-direction: column; gap: 100px; height: auto; padding: 50px 0; }
    .step-box { width: 100%; transform: none !important; }
    
    .sphere-main { width: 150px; height: 150px; } /* Even larger on mobile */
    .sphere-main svg { width: 70px; height: 70px; }
    
    /* Layout fix for "down" items on mobile */
    .down { flex-direction: column; }
    .down .desc-text { order: 3; }
    .down .sphere-main { order: 2; }
    .down .meta-tag { order: 1; }
}

@media (max-width: 600px) {
    .title-main { font-size: 2rem; }
    .sphere-main { width: 120px; height: 120px; }
    .sphere-main svg { width: 55px; height: 55px; }
}









    :root {
        --ib-premium-light: #f4f9ff;
        --ib-premium-mid: #e1effe;
        --ib-premium-blue: #0b79c9;
        --ib-premium-dark: #0d2a52;
        --ib-premium-text: #4a5568;
        --ib-transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    
    /* Background Pattern */
    .ib-pattern-grid {
        background-color: var(--ib-premium-light);
        background-image: radial-gradient(#0b79c9 0.5px, transparent 0.5px);
        background-size: 20px 20px;
        background-opacity: 0.1;
    }

    .ib-section { padding: 90px 0; position: relative; overflow: hidden; }
    
    /* Floating Background Icons */
    .ib-bg-icon {
        position: absolute;
        opacity: 0.04;
        color: var(--ib-premium-dark);
        z-index: 0;
        pointer-events: none;
    }
    
    /* Abstract Shapes */
    .ib-shape {
        position: absolute;
        z-index: 0;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.6;
    }
    .ib-shape-1 { width: 300px; height: 300px; background: #e1effe; top: -50px; left: -50px; }
    .ib-shape-2 { width: 400px; height: 400px; background: #cfe5ff; bottom: -100px; right: -100px; }

    .ib-title { color: var(--ib-premium-dark); font-weight: 800; margin-bottom: 20px; font-size: 2.6rem; position: relative; z-index: 1;}
    .ib-title-sm { color: var(--ib-premium-blue); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; display: inline-block; background: rgba(11, 121, 201, 0.1); padding: 5px 15px; border-radius: 20px;}
    .ib-text { color: var(--ib-premium-text); font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; position: relative; z-index: 1;}
    
    .ib-bg-dark-blue { background: linear-gradient(135deg, #0d2a52 0%, #1a4b8c 100%); color: #fff; }
    .ib-bg-dark-blue .ib-title { color: #fff; }
    .ib-bg-dark-blue .ib-text { color: #dce7f9; }

    .ib-card { 
        background: #fff; 
        border-radius: 20px; 
        padding: 40px 30px; 
        box-shadow: 0 15px 40px -10px rgba(13, 42, 82, 0.08); 
        transition: var(--ib-transition); 
        height: 100%; 
        border: 1px solid rgba(255,255,255,0.7);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    .ib-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 5px;
        background: var(--ib-premium-blue);
        transform: scaleX(0);
        transform-origin: left;
        transition: var(--ib-transition);
    }
    .ib-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px -10px rgba(13, 42, 82, 0.15); }
    .ib-card:hover::before { transform: scaleX(1); }
    
    .ib-icon-wrap { 
        width: 70px; height: 70px; 
        background: linear-gradient(135deg, var(--ib-premium-light), #fff);
        border: 1px solid var(--ib-premium-mid);
        border-radius: 18px; 
        display: flex; align-items: center; justify-content: center; 
        font-size: 30px; color: var(--ib-premium-blue); 
        margin-bottom: 25px; 
        transition: var(--ib-transition); 
        box-shadow: 0 8px 20px rgba(11, 121, 201, 0.1);
    }
    .ib-card:hover .ib-icon-wrap { background: var(--ib-premium-blue); color: #fff; transform: rotateY(180deg); }
    .ib-card:hover .ib-icon-wrap i { transform: rotateY(-180deg); transition: var(--ib-transition); } /* Keep icon upright */
    
    .ib-img-rounded { border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.1); transition: var(--ib-transition); }
    .ib-img-rounded:hover { transform: scale(1.02); }

    .ib-list li { position: relative; padding-left: 35px; margin-bottom: 15px; color: var(--ib-premium-text); font-weight: 500; font-size: 1.05rem;}
    .ib-list li i { position: absolute; left: 0; top: 3px; color: #fff; font-size: 0.8rem; background: var(--ib-premium-blue); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(11, 121, 201, 0.3);}
    
    /* Dark card variant */
    .ib-card-dark { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); }
    .ib-card-dark .ib-list li { color: #dce7f9; }
    
    .ib-table-wrap { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.08); border: 1px solid var(--ib-premium-mid); }
    .ib-table th { background: blue; color: black; font-weight: 600; padding: 22px; border: none; letter-spacing: 0.5px; }
    .ib-table td { padding: 20px; color: var(--ib-premium-text); border-bottom: 1px solid var(--ib-premium-mid); vertical-align: middle; }
    
    .ib-pill { background: #fff; padding: 12px 25px; border-radius: 50px; font-weight: 600; color: var(--ib-premium-dark); box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin: 8px; border: 1px solid var(--ib-premium-mid); transition: var(--ib-transition); display: inline-flex; align-items: center; }
    .ib-pill i { color: var(--ib-premium-blue); margin-right: 10px; }
    .ib-pill:hover { background: var(--ib-premium-blue); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(11, 121, 201, 0.25); }
    .ib-pill:hover i { color: #fff; }

    /* Custom Gradients for Images */
    .ib-img-overlay { position: relative; border-radius: 20px; overflow: hidden; }
    .ib-img-overlay::after {
        content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
        background: linear-gradient(to top, rgba(13, 42, 82, 0.7), transparent);
        pointer-events: none;
    }








        :root {
            --primary: #4facfe;
            --bg: #030a1a;
            --text: #ffffff;
            --glass: rgba(255, 255, 255, 0.04);
        }

        .premium-hero {
            position: relative;
            background: var(--bg);
            color: var(--text);
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 60px 5%;
            overflow: hidden;
        }

        /* --- HIGHLIGHTED BACKGROUND ANIMATION --- */
        .plexus-container {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        .glow-spot {
            position: absolute;
            top: 50%; left: 50%;
            width: 60vw; height: 60vw;
            background: radial-gradient(circle, rgba(79, 172, 254, 0.15) 0%, transparent 70%);
            transform: translate(-50%, -50%);
        }

        .plexus-mesh {
            width: 200%; height: 200%;
            position: absolute;
            top: -50%; left: -50%;
            background-image: 
                radial-gradient(circle, var(--primary) 1.5px, transparent 1.5px),
                linear-gradient(to right, rgba(79, 172, 254, 0.12) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(79, 172, 254, 0.12) 1px, transparent 1px);
            background-size: 80px 80px;
            transform: perspective(600px) rotateX(60deg);
            animation: meshMove 20s linear infinite;
        }

        @keyframes meshMove {
            0% { transform: perspective(600px) rotateX(60deg) translateY(0); }
            100% { transform: perspective(600px) rotateX(60deg) translateY(80px); }
        }

        /* --- CONTENT LAYOUT --- */
        .main-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 80px;
            align-items: center;
            width: 100%;
        }

        .hero-title { font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin-bottom: 24px; font-weight: 800; }
        .hero-subtitle { color: #cbd5e0; font-size: 1.15rem; line-height: 1.6; margin-bottom: 48px; }

        .feature-grid { display: flex; flex-direction: column; gap: 24px; }
        .feature-item { display: flex; align-items: flex-start; gap: 16px; }
        .icon { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; }
        .feature-item strong { color: #fff; font-size: 1.05rem; }
        .feature-item div { color: #a0aec0; font-size: 0.95rem; }

        .trust-footer { margin-top: 50px; display: flex; gap: 15px; background: rgba(0,0,0,0.3); padding: 20px; border-radius: 12px; border-left: 3px solid var(--primary); width: fit-content; }
        .icon-small { width: 24px; height: 24px; color: var(--primary); }

        /* --- GLASS CARD & GRAPH ANIMATION --- */
        .glass-card-1 {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.5);
        }

        .card-head { display: flex; justify-content: space-between; margin-bottom: 30px; font-weight: bold; }
        .logo small { font-weight: 300; opacity: 0.6; }

        .graph-box { margin: 20px 0; overflow: visible; }
        .graph-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: drawLine 4s ease-out forwards infinite alternate;
        }

        @keyframes drawLine {
            to { stroke-dashoffset: 0; }
        }

        .node { animation: pulse 2s infinite; transform-origin: center; }
        @keyframes pulse {
            0%, 100% { r: 3; opacity: 1; }
            50% { r: 5; opacity: 0.5; }
        }

        .roi-section { display: flex; align-items: center; gap: 20px; margin-top: 30px; }
        .donut-box { position: relative; width: 70px; height: 70px; }
        .donut { width: 100%; height: 100%; transform: rotate(-90deg); }
        .ring { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 4; }
        .segment { fill: none; stroke: var(--primary); stroke-width: 4; stroke-linecap: round; stroke-dashoffset: 25; }
        .roi-val { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.7rem; font-weight: bold; }

        .btn-primary {
            width: 100%; padding: 16px; margin-top: 30px; border-radius: 12px;
            background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2);
            color: #fff; font-weight: bold; cursor: pointer; transition: 0.3s;
        }
        .btn-primary:hover { background: var(--primary); border-color: var(--primary); box-shadow: 0 0 20px rgba(79, 172, 254, 0.4); }

        /* --- RESPONSIVE CHECK --- */
        @media (max-width: 1024px) {
            .main-content { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .feature-item { text-align: left; max-width: 400px; margin: 0 auto; }
            .trust-footer { margin: 40px auto; }
        }

        @media (max-width: 480px) {
            .premium-hero { padding: 40px 20px; }
            .glass-card-1 { padding: 25px; }
            .hero-title { font-size: 1.8rem; }
        }






        /* IBERR PROFESSIONAL SECTION STYLES */
.iberr-pro-wrapper {
    --primary-blue: #2563eb;
    --accent-cyan: #06b6d4;
    --bg-gray: #f1f5f9;
    --text-dark: #0f172a;
    --text-muted: #475569;
    
    background-color: var(--bg-gray);
    color: var(--text-dark);
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background Check/Grid Pattern */
.iberr-pro-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(203, 213, 225, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(203, 213, 225, 0.4) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

.iberr-pro-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.iberr-pro-header {
    text-align: center;
    margin-bottom: 50px;
}

.iberr-pro-chip {
    background: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    color: var(--primary-blue);
    border: 1px solid #e2e8f0;
}

.iberr-pro-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin: 20px 0;
    letter-spacing: -1.5px;
    color: var(--text-dark);
}

.iberr-pro-intro-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
}

.iberr-pro-label {
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-blue);
    margin: 40px 0 30px;
    font-size: 14px;
    letter-spacing: 2px;
}

.iberr-pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

/* Glassmorphism Cards */
.iberr-pro-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iberr-pro-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    border-color: var(--primary-blue);
}

.iberr-pro-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.iberr-pro-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.iberr-pro-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.iberr-pro-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Professional Checkmark Styling */
.iberr-pro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: 900;
    background: rgba(37, 99, 235, 0.1);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.iberr-pro-badge {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
}

.iberr-pro-expert-tag {
    background: white;
    border-left: 5px solid var(--accent-cyan);
    padding: 30px;
    margin-top: 50px;
    font-weight: 600;
    border-radius: 0 15px 15px 0;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.03);
}

.iberr-pro-spacer { height: 80px; }

.iberr-pro-subtitle {
    font-size: 24px;
    color: var(--primary-blue);
    margin-top: -10px;
    margin-bottom: 20px;
}

.iberr-pro-footnote {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 25px;
    font-style: italic;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.iberr-pro-instruction {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .iberr-pro-wrapper { padding: 60px 15px; }
    .iberr-pro-grid { grid-template-columns: 1fr; }
    .iberr-pro-card { padding: 30px; }
}