.legal-elite {
  background: #f9fafb;
  padding: 50px 15px;
  color: #0f1724;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.65;
}

.legal-elite .container {
  max-width: 1080px;
  margin: 0 auto;
}

.legal-elite-content h2 {
  font-size: 1.9rem;
  color: #0047b3;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.legal-elite-content p {
  font-size: 18px;
  color: #2d2d2d;
  margin-bottom: 12px;
  text-align: left;
}

.legal-elite-content h3 {
  font-size: 1.3rem;
  color: #0f6fff;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.legal-elite-content h4 {
  font-size: 1.1rem;
  color: #141a46;
  margin-top: 35px;
  margin-bottom: 20px;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.legal-elite-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 25px;
}

.service-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, #0f6fff, #0047b3);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #cfd9e6;
}

.service-item h4 {
  color: #0f6fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}

.service-item:hover h4 {
  color: #0047b3;
}

.service-item p {
  color: black;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Grid for bigger screens */
@media (min-width: 640px) {
  .legal-elite-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .legal-elite-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .service-item {
    padding: 24px 26px;
  }

  .service-item h4 {
    font-size: 1.1rem;
  }
}

.formation-elite {
  background: #f8fafc;
  padding: 70px 0;
}

.formation-elite .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.formation-title {
  text-align: center;
  margin-bottom: 40px;
}

.formation-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1724;
  margin-bottom: 10px;
  position: relative;
}

.formation-title h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #0f6fff, #0047b3);
  margin: 10px auto 0;
  border-radius: 3px;
}

.formation-elite-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.formation-elite .service-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.formation-elite .service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 5px;
  background: linear-gradient(180deg, #0f6fff, #0047b3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.formation-elite .service-item:hover::before {
  opacity: 1;
}

.formation-elite .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  border-color: #cfd9e6;
}

.formation-elite .service-item h4 {
  color: #0f6fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.formation-elite .service-item:hover h4 {
  color: #0047b3;
}

.formation-elite .service-item p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Responsive Grid */
@media (min-width: 640px) {
  .formation-elite-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .formation-elite-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .formation-elite .service-item {
    padding: 24px 26px;
  }

  .formation-elite .service-item h4 {
    font-size: 1.1rem;
  }
}

.pro-elite {
  background: #ffffff;
  padding: 70px 0;
}

.pro-elite .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.pro-title {
  text-align: center;
  margin-bottom: 45px;
}

.pro-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f1724;
  position: relative;
}

.pro-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #0f6fff, #0047b3);
  margin: 12px auto 0;
  border-radius: 3px;
}

.pro-elite-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pro-elite .service-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  position: relative;
}

.pro-elite .service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pro-elite .service-item h4 {
  color: #0f6fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pro-elite .service-item p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: justify;
  margin: 0;
}

/* Note Section */
.pro-note {
  background: #f1f5f9;
  border-left: 4px solid #0f6fff;
  padding: 20px 24px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.pro-note h5 {
  color: #0f1724;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.pro-note ul {
  margin: 0;
  padding-left: 20px;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits */
.pro-benefits h3 {
  font-size: 1.4rem;
  color: #0f1724;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.pro-benefits ul {
  columns: 2;
  column-gap: 40px;
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pro-benefits ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #374151;
}

.pro-benefits ul li::before {
  content: "✔";
  color: #0f6fff;
  position: absolute;
  left: 0;
  top: 0;
}

.pro-benefits .cta {
  text-align: center;
  font-weight: 500;
  margin-bottom: 15px;
  color: #0f1724;
}

.pro-benefits .footer-line {
  text-align: center;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Grid */
@media (min-width: 640px) {
  .pro-elite-services {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .pro-elite-services {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .pro-elite .service-item {
    padding: 24px 26px;
  }

  .pro-benefits ul {
    columns: 3;
  }
}

.banking-banner-section {
  position: relative;
  height: 55vh;
  background: linear-gradient(135deg, #001f3f, #003b70, #005fa3);
  color: #fff;
  overflow: hidden;
}

#bankingCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banking-banner-content {
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.banking-banner-title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.banking-banner-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
  font-size: 0.95rem;
}

.breadcrumb a {
  color: #ffe17a;
  text-decoration: none;
  transition: 0.3s;
}

.breadcrumb a:hover {
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 992px) {
  .banking-banner-section {
    height: 50vh;
  }

  .banking-banner-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .banking-banner-section {
    height: 45vh;
  }

  .banking-banner-title {
    font-size: 1.6rem;
  }

  .banking-banner-subtitle {
    font-size: 0.9rem;
  }
}

/* legal New Desgin */

/* Main Section */
.legal-box {
  padding: 80px 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.legal-box-container {
  max-width: 1180px;
  margin: auto;
  text-align: center;
}

/* Heading */
.legal-eyebrow {
  color: #e30613;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
}

.legal-heading {
  font-size: 30px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.legal-subtext {
  max-width: 720px;
  margin: 0 auto 40px;
  color: #4b5563;
  font-size: 15px;
}

/* Grid Layout */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.legal-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Items */
.legal-item {
  display: flex;
  gap: 14px;
  text-align: left;
}

.legal-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: #fef2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e30613;
  font-size: 20px;
}

.legal-item-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 6px;
}

.legal-item-text {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
}

/* Center Image */
.legal-img-box {
  display: flex;
  justify-content: center;
}

.legal-img {
  width: 240px;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-img-box {
    order: -1;
  }

  .legal-box {
    padding: 60px 16px;
  }
}

@media (max-width: 576px) {
  .legal-heading {
    font-size: 24px;
  }
}



/* Second Card Company Formatiom */

/* --- SECTION STYLING WITH BACKGROUND IMAGE --- */

    .services-v2-section {
        position: relative;
        padding: 80px 20px;
        font-family: system-ui, -apple-system, "Segoe UI", sans-serif;

        background-image: url("https://ebmgs.com/assets/img/elite/legal-formation.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }

    /* Overlay */
    .services-v2-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, rgba(17, 24, 39, 0.85), rgba(55, 65, 81, 0.85));
        z-index: 1;
    }

    .services-v2-section .container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .section-title {
        font-size: 36px;
        color: #fff;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .section-subtitle {
        max-width: 700px;
        margin: 0 auto 60px;
        color: #d1d5db;
        font-size: 18px;
        line-height: 1.7;
    }

    /* --- GRID (RESPONSIVE) --- */

    .services-grid-v2 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    /* --- CARD STYLING --- */

    .service-card-v2 {
        text-align: left;
        padding: 28px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: 0.3s ease;
    }

    .service-card-v2:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Icon Style */
    .card-icon-v2 {
        font-size: 24px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        margin-bottom: 20px;
        background: rgba(0, 191, 255, 0.1);
        color: #00bfff;
    }

    /* Text */
    .service-card-v2 h3 {
        font-size: 20px;
        color: #f9fafb;
        margin: 0 0 10px;
    }

    .service-card-v2 p {
        font-size: 15px;
        color: #d1d5db;
        line-height: 1.6;
    }

    /* Arrow Animation */
    .card-arrow {
        position: absolute;
        bottom: 22px;
        right: 25px;
        font-size: 26px;
        opacity: 0;
        transform: translateX(10px);
        transition: 0.3s ease;
    }

    .service-card-v2:hover .card-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* ----------------------------- */
    /* RESPONSIVE BREAKPOINTS START */
    /* ----------------------------- */

    /* Tablets (768px to 1024px) */
    @media (max-width: 1024px) {
        .section-title {
            font-size: 30px;
        }

        .section-subtitle {
            font-size: 16px;
            margin-bottom: 45px;
        }

        .service-card-v2 {
            padding: 25px;
        }
    }

    /* Mobile (480px to 767px) */
    @media (max-width: 767px) {
        .services-v2-section {
            padding: 60px 15px;
            background-attachment: scroll;
            /* Fix for mobile lag */
        }

        .section-title {
            font-size: 28px;
        }

        .section-subtitle {
            font-size: 15px;
            margin-bottom: 40px;
        }

        .card-icon-v2 {
            width: 45px;
            height: 45px;
            font-size: 20px;
        }

        .service-card-v2 {
            padding: 22px;
        }

        .card-arrow {
            bottom: 18px;
            right: 20px;
            font-size: 24px;
        }
    }

    /* Extra Small Mobiles (0–420px) */
    @media (max-width: 420px) {
        .section-title {
            font-size: 24px;
        }

        .section-subtitle {
            font-size: 14px;
        }

        .service-card-v2 h3 {
            font-size: 18px;
        }

        .service-card-v2 p {
            font-size: 14px;
        }
    }


    /* Pro Services */

    
    /* Main Content Section */
    .main-content {
        padding: 60px 0;
        background-color: #fff;
    }

    .main-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .main-content p {
        font-size: 1.1rem;
        color: #555;
    }

    /* Process Section - Matches uploaded image design */
    .process-section {
        background-color: #0a0a0a;
        color: white;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .process-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .process-left {
        background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
        padding: 60px 40px;
        height: fit-content;
        position: sticky;
        top: 20px;
        border-radius: 12px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(244, 166, 97, 0.2);
    }

    .process-left::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 20px;
        width: 12px;
        height: 12px;
        background: #f4a261;
        border-radius: 50%;
    }

    .process-title h3 {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white;
    }

    .process-title p {
        font-size: 1.1rem;
        color: #ccc;
        margin-bottom: 40px;
    }

    .process-right {
        padding-left: 40px;
    }

    .step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 50px;
        position: relative;
    }

    .step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #f4a261, #e67e22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 700;
        color: #0a0a0a;
        flex-shrink: 0;
        margin-right: 25px;
        box-shadow: 0 10px 20px rgba(244, 166, 97, 0.4);
    }

    .step-content h4 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 10px;
        color: white;
    }

    .step-content p {
        font-size: 1rem;
        color: #b0b0b0;
        margin: 0;
        line-height: 1.5;
    }

    .step::after {
        content: '';
        position: absolute;
        left: 28px;
        top: 70px;
        bottom: -50px;
        width: 4px;
        background: linear-gradient(to bottom, transparent 0%, #f4a261 20%, #f4a261 80%, transparent 100%);
    }

    .step:last-child::after {
        display: none;
    }

 
    /* Responsive */
    @media (max-width: 992px) {
        .process-left {
            position: static;
            margin-bottom: 40px;
        }

        .process-right {
            padding-left: 0;
        }

        .step {
            flex-direction: column;
            text-align: center;
        }

        .step-number {
            margin-right: 0;
            margin-bottom: 15px;
        }

        .step::after {
            display: none;
        }

        .hero-section h1 {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 768px) {
        .process-section {
            padding: 40px 0;
        }

        .process-left {
            padding: 40px 20px;
        }

        .process-title h3 {
            font-size: 1.8rem;
        }
    }


    /* Paralex */

    /* Parallax Section */
    .parallax-section {
        position: relative;
        background-image: url('https://ebmgs.com/assets/img/elite/business%20renewals.png');
        /* Replace with your image */
        min-height: 420px;
        background-attachment: fixed;
        background-position: center;
        background-size: cover;
        display: flex;
        align-items: center;
    }


    /* Dark overlay */
    .parallax-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(2px);
    }


    /* Content Box */
    .para-content {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
    }


    .para-content h2 {
        margin-bottom: 20px;
        font-size: 28px;
        font-weight: 600;
        letter-spacing: 1px;
    }


    .points {
        list-style: none;
        padding: 0;
        margin: 0;
    }


    .points li {
        margin-bottom: 14px;
        padding-left: 30px;
        position: relative;
        line-height: 1.6;
        font-size: 16px;
        color: #dce3ef;
    }


    .points li::before {
        content: "•";
        position: absolute;
        left: 10px;
        top: 0;
        font-size: 22px;
        color: #4cc7ff;
    }


    @media (max-width: 768px) {
        .para-content h2 {
            font-size: 22px;
        }

        .parallax-section {
            background-attachment: scroll;
        }
    }

    /* ----------  doc-emp  ---------- */
    .doc-emp-compliance-section {
        background: linear-gradient(135deg, #eef5ff, #e0f7fa);
        padding: 80px 0;
    }

    .doc-emp-container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .doc-emp-compliance-content {
        display: flex;
        gap: 32px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .doc-emp-compliance-list {
        flex: 1 1 280px;
        background: rgba(255, 255, 255, .96);
        border-radius: 16px;
        padding: 24px 22px;
        box-shadow: 0 10px 25px rgba(15, 23, 42, .12);
        border: 1px solid rgba(148, 163, 184, .25);
    }

    .doc-emp-compliance-list h4 {
        margin: 0 0 12px 0;
        font-size: 1.1rem;
        color: #1e293b;
    }

    .doc-emp-compliance-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .doc-emp-compliance-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 10px;
        font-size: .98rem;
        color: #1e293b;
    }

    .doc-emp-compliance-list li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #10b981;
        font-size: .95rem;
    }

    .doc-emp-compliance-text {
        flex: 1 1 280px;
    }

    .doc-emp-compliance-text h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #1e293b;
    }

    .doc-emp-compliance-text h4 {
        margin: 16px 0 8px 0;
        font-size: 1.1rem;
        color: #1e293b;
    }

    .doc-emp-document-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .doc-emp-document-list li {
        position: relative;
        padding-left: 32px;
        margin-bottom: 10px;
        font-size: .98rem;
        color: #1e293b;
    }

    .doc-emp-document-list li::before {
        content: "\f00c";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #10b981;
        font-size: .95rem;
    }

    /* --- responsive --- */
    @media (max-width: 992px) {
        .doc-emp-compliance-content {
            flex-direction: column;
        }
    }

    
/* Highlight Box */
.highlight-box {
  margin-top: 40px;
  background: linear-gradient(135deg, #0d2b4c, #163f6b);
  color: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.highlight-box h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: white;
}

.highlight-box p {
  font-size: 18px;
  color: #e6e6e6;
  margin-bottom: 25px;
}

.highlight-box a {
  display: inline-block;
  padding: 12px 30px;
  background: #3e54ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.highlight-box a:hover {
  background: #ffb84a;
  color: black;
}
