
  :root {
    --red: #2980b9;
    --dark: #1a1a1a;
    --black: #111;
    --white: #fff;
    --gray: #f5f5f5;
    --gray2: #e8e8e8;
    --text: #333;
    --text2: #666;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Open Sans', sans-serif; color: var(--text); overflow-x: hidden; }
  a { text-decoration: none; color: inherit; }
  img { max-width: 100%; display: block; }

  /* ===== NAVBAR ===== */
  nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 40px; background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000;
  }
  .logo { display: flex; align-items: center; gap: 10px; }
  .logo-icon {
    width: 44px; height: 44px; background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 900; color: white; font-size: 18px;
    border-radius: 4px; flex-shrink: 0;
  }
  .logo-text .name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px; color: var(--dark); letter-spacing: 1px; }
  .logo-text .tagline { font-family: 'Montserrat', sans-serif; font-size: 10px; color: var(--text2); letter-spacing: 2px; }
  .nav-links { display: flex; gap: 22px; align-items: center; }
  .nav-links a { font-size: 15px; font-weight: 600; color: var(--text); transition: color .2s; font-family: 'Montserrat', sans-serif; white-space: nowrap; }
  .nav-links a:hover, .nav-links a.active { color: var(--red); }
  .nav-links a.active { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
  .btn-quote {
    background: var(--red); color: white; padding: 10px 20px;
    border-radius: 4px; font-weight: 700; font-size: 13px;
    font-family: 'Montserrat', sans-serif; display: flex; align-items: center; gap: 7px;
    transition: background .2s; white-space: nowrap; flex-shrink: 0;
  }
  .btn-quote:hover { color: #fff; }
  /* Hamburger */
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 2px; transition: all .3s; }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  /* Mobile nav drawer */
  .mobile-menu {
    display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: white; z-index: 999; flex-direction: column;
    padding: 20px 24px; gap: 4px; overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700;
    color: var(--dark); padding: 14px 0; border-bottom: 1px solid #f0f0f0;
    transition: color .2s;
  }
  .mobile-menu a:hover { color: var(--red); }
  .mobile-menu .btn-quote-mob {
    background: var(--red); color: white; padding: 14px 20px;
    border-radius: 6px; font-weight: 700; font-size: 15px; text-align: center;
    margin-top: 12px; border-bottom: none;
  }

  /* ===== HERO ===== */


  /* ===== SECTION TITLE ===== */
  .section-title { text-align: center; margin-bottom: 36px; }
  .section-title h2 { font-family: 'Montserrat', sans-serif; font-size: 27px; font-weight: 800; color: var(--dark); }
  .section-title .line { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
  .section-title .line::before, .section-title .line::after { content: ''; flex: 0 0 50px; height: 2px; background: var(--red); }

  /* ===== PRODUCTS ===== */
  .products { padding: 60px; background: #fff; }
  .products-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
  .product-card {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform .2s, box-shadow .2s; cursor: pointer;
  }
  .product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
  .product-img { height: 130px; position: relative; overflow: hidden; }
  .product-img img { width: 100%; height: 100%; object-fit: cover; }
  .product-icon {
    position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
    width: 34px; height: 34px; background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 13px;
    box-shadow: 0 2px 8px rgba(208,2,27,0.4); z-index: 2;
  }
  .product-name { padding: 22px 10px 14px; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 12.5px; font-weight: 700; color: var(--dark); }

  /* ===== TWO COLUMN ===== */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

  /* ===== WHY CHOOSE ===== */
  .why-choose { background: var(--dark); padding: 50px 50px; color: white; }
  .why-choose h2 { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 800; margin-bottom: 28px; }
  .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .feature { text-align: center; padding: 10px; }
  .feature-icon { width: 50px; height: 50px; background: rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 20px; color: var(--red); }
  .feature-name { font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; line-height: 1.3; }

  /* ===== INDUSTRIES ===== */
  .industries { background: #fff; padding: 50px 40px; }
  .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .industry-card { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: transform .2s; cursor: pointer; }
  .industry-card:hover { transform: translateY(-3px); }
  .industry-img { height: 110px; position: relative; overflow: hidden; }
  .industry-img img { width: 100%; height: 100%; object-fit: cover; }
  .industry-icon {
    position: absolute; bottom: -14px; left: 14px;
    width: 30px; height: 30px; background: var(--red); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; z-index: 2;
  }
  .industry-name { padding: 18px 12px 12px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; }

  /* ===== STATS BAR ===== */
  .stats-bar { background: var(--red); padding: 28px 60px; display: grid; grid-template-columns: repeat(4, 1fr); }
  .stats-item { text-align: center; color: white; border-right: 1px solid rgba(255,255,255,0.2); padding: 8px 0; }
  .stats-item:last-child { border-right: none; }
  .stats-num { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; }
  .stats-label { font-size: 13px; font-weight: 600; opacity: 0.9; }

  /* ===== COMPARISON ===== */
  .comparison { padding: 60px; background: #f9f9f9; }
  .comp-wrap { overflow-x: auto; }
  .comp-table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); min-width: 600px; }
  .comp-table th { padding: 14px 12px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-align: center; background: #f5f5f5; color: var(--text); }
  .comp-table th.highlight { background: var(--red); color: white; }
  .comp-table td { padding: 12px 12px; font-size: 12.5px; text-align: center; border-bottom: 1px solid #f0f0f0; }
  .comp-table td:first-child { text-align: left; font-weight: 600; }
  .comp-table tr:last-child td { border-bottom: none; }
  .comp-table tr:hover td { background: #fafafa; }
  .check { color: #22c55e; font-size: 16px; }
  .partial { color: #f59e0b; font-size: 16px; }
  .cross { color: var(--red); font-size: 16px; }
  .na { color: #ccc; font-size: 12px; }
  .legend { display: flex; gap: 20px; margin-top: 14px; justify-content: center; flex-wrap: wrap; }
  .legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--text2); }
  .legend-dot { width: 10px; height: 10px; border-radius: 50%; }

  /* ===== CERTIFICATIONS ===== */
  .certifications { padding: 50px 60px; background: white; }
  .certs-grid { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
  .cert-item { text-align: center; }
  .cert-badge {
    width: 80px; height: 80px; border: 3px solid var(--gray2);
    border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 13px;
    color: var(--dark); transition: border-color .2s; margin: 0 auto;
  }
  .cert-badge:hover { border-color: var(--red); }
  .cert-badge small { font-size: 9px; font-weight: 600; color: var(--text2); }
  .cert-label { margin-top: 8px; font-size: 11px; font-weight: 700; color: var(--text2); font-family: 'Montserrat', sans-serif; }

  /* ===== PROJECTS ===== */
  .projects-section { padding: 60px; background: #f9f9f9; }
  .projects-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
  .projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
  .project-card { border-radius: 8px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
  .project-img { height: 110px; overflow: hidden; }
  .project-img img { width: 100%; height: 100%; object-fit: cover; }
  .project-name { padding: 10px 12px; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; background: white; }
  .cta-box { background: var(--dark); border-radius: 10px; padding: 36px; color: white; }
  .cta-box h2 { font-family: 'Montserrat', sans-serif; font-size: 23px; font-weight: 800; margin-bottom: 6px; }
  .cta-box h2 span { color: var(--red); }
  .cta-box p { font-size: 13px; opacity: 0.8; margin-bottom: 20px; }
  .cta-contact { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .cta-contact div { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
  .cta-contact i { color: var(--red); }
  .btn-cta {
    background: var(--red); color: white; padding: 13px 28px;
    border-radius: 4px; font-weight: 700; font-size: 14px;
    font-family: 'Montserrat', sans-serif; display: inline-flex; align-items: center; gap: 8px;
    transition: background .2s; border: none; cursor: pointer;
  }
  .btn-cta:hover { background: #a80015; }

  /* ===== FOOTER ===== */
  footer { background: #111; padding: 28px 60px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
  .footer-logo { display: flex; align-items: center; gap: 10px; }
  .footer-logo .logo-text .name { color: white; }
  .footer-logo .logo-text .tagline { color: #888; }
  .footer-location { display: flex; align-items: center; gap: 8px; color: #aaa; font-size: 13px; }
  .footer-location i { color: var(--red); }
  .social-links { display: flex; gap: 12px; }
  .social-links a {
    width: 34px; height: 34px; border-radius: 50%; border: 1px solid #444;
    display: flex; align-items: center; justify-content: center; color: #aaa;
    font-size: 14px; transition: border-color .2s, color .2s;
  }
  .social-links a:hover { border-color: var(--red); color: var(--red); }
  .footer-copy { color: #666; font-size: 12px; }

  /* ===== RESPONSIVE ===== */
  /* ===== INNER PAGE BANNER ===== */
  .page-banner {
    background: linear-gradient(rgba(17,17,17,0.75), rgba(17,17,17,0.75)), url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1600&q=70') center/cover;
    padding: 70px 40px;
    text-align: center;
    color: #fff;
  }
  .page-banner h1 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 34px; margin-bottom: 10px; }
  .page-banner .breadcrumb { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: #ddd; }
  .page-banner .breadcrumb a { color: var(--red); }
  .page-banner .breadcrumb span { margin: 0 6px; color: #888; }

  /* ===== GENERIC INNER CONTENT ===== */
  .inner-section { padding: 60px; background: #fff; }
  .inner-section.alt { background: #f9f9f9; }
  .inner-section p.lead { font-size: 15px; color: var(--text2); line-height: 1.8; max-width: 900px; margin: 0 auto 20px; text-align: center; }
  .inner-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
  .inner-two-col img { border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); width: 100%; height: 340px; object-fit: cover; }
  .inner-two-col h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 24px; color: var(--dark); margin-bottom: 16px; }
  .inner-two-col p { font-size: 14px; color: var(--text2); line-height: 1.8; margin-bottom: 14px; }
  .checklist { list-style: none; }
  .checklist li { font-size: 14px; color: var(--text); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
  .checklist li i { color: var(--red); }

  .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .value-card { background: #fff; border: 1px solid var(--gray2); border-radius: 10px; padding: 30px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
  .value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.1); }
  .value-card .icon-circle-v2 { margin: 0 auto 16px; }
  .value-card h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 15px; color: var(--dark); margin-bottom: 8px; }
  .value-card p { font-size: 13px; color: var(--text2); line-height: 1.6; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-info-card { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
  .contact-info-card .cta-icon-circle { background: var(--red); color: #fff; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .contact-info-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
  .contact-info-card p, .contact-info-card a { font-size: 13.5px; color: var(--text2); }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .contact-form input, .contact-form textarea {
    padding: 13px 16px; border: 1px solid var(--gray2); border-radius: 6px; font-family: 'Open Sans', sans-serif; font-size: 14px; outline: none;
  }
  .contact-form input:focus, .contact-form textarea:focus { border-color: var(--red); }
  .contact-form button { align-self: flex-start; border: none; }
  .map-embed { border-radius: 10px; overflow: hidden; margin-top: 40px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .map-embed iframe { width: 100%; height: 350px; border: 0; display: block; }

  .resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .resource-card { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; transition: transform .2s; }
  .resource-card:hover { transform: translateY(-4px); }
  .resource-card .res-icon { height: 120px; background: var(--dark); display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--red); }
  .resource-card .res-body { padding: 18px 20px; }
  .resource-card h4 { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .resource-card p { font-size: 12.5px; color: var(--text2); margin-bottom: 12px; }
  .resource-card a { font-size: 12.5px; font-weight: 700; color: var(--red); font-family: 'Montserrat', sans-serif; }

  .app-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .app-card { background: #fff; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.08); overflow: hidden; text-align: center; transition: transform .2s; }
  .app-card:hover { transform: translateY(-4px); }
  .app-card img { height: 130px; object-fit: cover; }
  .app-card h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; padding: 14px 10px; color: var(--dark); }

  @media (max-width: 900px) {
    .inner-two-col, .contact-grid { grid-template-columns: 1fr; }
    .value-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
    .app-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 576px) {
    .value-grid, .resource-grid, .app-grid { grid-template-columns: 1fr; }
    .page-banner { padding: 50px 20px; }
    .page-banner h1 { font-size: 24px; }
    .inner-section { padding: 40px 20px; }
  }

  /* ===== INDUSTRIES PAGE V2 (card grid) ===== */
  .industries-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
  }
  .industry-v2-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    cursor: pointer;
  }
  .industry-v2-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .industry-v2-card:hover img { transform: scale(1.08); }
  .industry-v2-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,17,17,0) 30%, rgba(17,17,17,0.9) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px 22px;
    color: #fff;
  }
  .industry-v2-num {
    position: absolute; top: 18px; left: 20px;
    font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 15px;
    color: #fff; background: var(--red);
    width: 34px; height: 34px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(41,128,185,0.5);
  }
  .industry-v2-overlay h3 {
    font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 18px;
    margin-bottom: 8px;
  }
  .industry-v2-overlay p {
    font-size: 13px; line-height: 1.6; color: #d8d8d8;
    max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease;
  }
  .industry-v2-card:hover .industry-v2-overlay p {
    max-height: 80px; opacity: 1; margin-top: 4px;
  }
  .industry-v2-overlay .tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; font-family: 'Montserrat', sans-serif;
    color: var(--red); text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 6px;
  }

  @media (max-width: 900px) {
    .industries-v2-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 576px) {
    .industries-v2-grid { grid-template-columns: 1fr; }
    .industry-v2-card { height: 240px; }
  }

  @media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    nav { padding: 12px 20px; }
    .hero-left { padding: 40px 24px 30px 30px; }
    .hero-left h1 { font-size: 32px; }
    .why-choose { padding: 40px 30px; }
    .industries { padding: 40px 24px; }
    .comparison { padding: 40px 24px; }
    .certifications { padding: 40px 24px; }
    .projects-section { padding: 40px 24px; }
    footer { padding: 24px 24px; }
    .stats-bar { padding: 20px 24px; }
  }

  @media (max-width: 900px) {
    .nav-links, .btn-quote { display: none; }
    .hamburger { display: flex; }
    nav { padding: 12px 16px; }

    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 36px 20px 24px; }
    .hero-left h1 { font-size: 28px; }
    .hero-left p { font-size: 14px; max-width: 100%; }
    .hero-stats { gap: 14px; }
    .hero-image-container { display: none; }

    .products { padding: 40px 16px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .two-col { grid-template-columns: 1fr; }
    .why-choose { padding: 36px 16px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .industries { padding: 36px 16px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 0; padding: 20px 16px; }
    .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 12px 0; }
    .stats-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
    .stats-item:nth-child(3), .stats-item:nth-child(4) { border-bottom: none; }
    .stats-num { font-size: 28px; }

    .comparison { padding: 36px 16px; }

    .certifications { padding: 36px 16px; }
    .certs-grid { gap: 24px; }

    .projects-section { padding: 36px 16px; }
    .projects-layout { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }

    footer { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 14px; }
    .footer-copy { font-size: 11px; }

    .section-title h2 { font-size: 22px; }
  }

  @media (max-width: 480px) {
    .hero-left h1 { font-size: 24px; }
    .hero-stats { gap: 10px; }
    .stat-icon { width: 36px; height: 36px; font-size: 14px; }
    .stat-label { font-size: 10px; }
    .hero-btns { flex-direction: column; gap: 10px; }
    .btn-primary, .btn-outline { justify-content: center; padding: 12px 20px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-num { font-size: 24px; }
    .cta-box { padding: 24px 18px; }
    .cta-box h2 { font-size: 18px; }
    footer { padding: 16px; }
  }
  footer {
  background-color: #1a252f;
  color: #ecf0f1;
  padding: 60px 0 20px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px; 
}


.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h3 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: #2980b9;
}

.footer-desc {
  font-size: 14px;
  color: #a6b1b9;
  line-height: 1.6;
  margin: 15px 0;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: #a6b1b9;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #2980b9;
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
  color: #a6b1b9;
}

.footer-contact li i {
  color: #2980b9;
  margin-right: 12px;
  margin-top: 4px;
  width: 15px;
}

.footer-contact li a {
  color: #a6b1b9;
  text-decoration: none;
}

.social-links a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #2c3e50;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
}

.social-links a:hover {
  background-color: #2980b9;
}

.footer-bottom {
  border-top: 1px solid #2c3e50;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #7f8c8d;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-col {
    margin-bottom: 20px;
  }
}

.client-slider-section {
  background-color: #f9fbfd;
  padding: 60px 0;
  width: 100%;
  overflow: hidden; 
}


.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 28px;
  color: #1a252f;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 60px;
  height: 3px;
  background-color: #2980b9;
}

.section-title p {
  font-size: 15px;
  color: #7f8c8d;
  margin-top: 15px;
  font-family: Arial, sans-serif;
}


.slider-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}


.slider-track {
  display: flex;
  width: calc(200px * 12); 
  animation: scrollMarquee 25s linear infinite; 
}


.slider-track:hover {
  animation-play-state: paused;
}


.client-slide {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 8px;
  width: 180px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  margin: 0 10px; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
  flex-shrink: 0; 
  transition: transform 0.3s ease;
}

.client-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
 
  
  transition: all 0.3s ease;
}


.client-slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-200px * 6)); 
  }
}


@media (max-width: 768px) {
  .client-slide {
    width: 140px;
    height: 70px;
  }
  .slider-track {
    width: calc(160px * 12);
  }
  @keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-160px * 6)); }
  }
}

.hero-premium {
  position: relative;
  background: linear-gradient(135deg, #f5f8fc 0%, #2980b9 100%);
  padding: 100px 0;
  width: 100%;
  overflow: hidden;
  font-family: 'Poppins', Arial, sans-serif;
}


.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.08), rgba(41, 128, 185, 0.05));
  z-index: 1;
}
.shape-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -100px; left: -50px; }


.hero-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(52, 158, 220, 0.1);
  color: #2980b9;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-left-content h1 {
  font-size: 46px;
  color: #1a252f;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-left-content h1 span {
  display: block;
  color: #2980b9;
  background: linear-gradient(45deg, #2980b9, #2980b9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left-content p {
  font-size: 16px;
  color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(166, 177, 185, 0.12);
  border: 1px solid rgba(238, 242, 245, 0.8);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
}

.stat-icon-box {
  width: 45px;
  height: 45px;
  background: #f0f7fc;
  color: #2980b9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  font-size: 18px;
}

.stat-info h3 {
  font-size: 20px;
  color: #1a252f;
  margin: 0;
  font-weight: 700;
}

.stat-info p {
  font-size: 13px;
  color: #7f8c8d;
  margin: 2px 0 0 0;
}


.hero-action-btns {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-glow-primary {
  background: linear-gradient(45deg, #2980b9, #2980b9);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.btn-glow-primary:hover {
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.45);
  transform: translateY(-2px);
}

.btn-glow-primary .arrow {
  transition: transform 0.3s ease;
}

.btn-glow-primary:hover .arrow {
  transform: translateX(4px);
}

.btn-glass-outline {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(52, 152, 219, 0.25);
  color: #2c3e50;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.btn-glass-outline:hover {
  background: #ffffff;
  border-color: #2980b9;
  color: #2980b9;
}


.hero-right-gallery {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 450px;
}

.main-image-box {
  width: 85%;
  height: 85%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  border: 6px solid #ffffff;
}

.main-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* तैरते हुए थंबनेल्स */
.floating-thumb {
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  border: 4px solid #ffffff;
  transition: transform 0.4s ease;
}

.floating-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-1 {
  width: 140px;
  height: 140px;
  bottom: 40px;
  right: 0;
}

.thumb-2 {
  width: 120px;
  height: 120px;
  top: -20px;
  right: 40px;
}

.floating-thumb:hover {
  transform: scale(1.05) translateY(-5px);
  z-index: 5;
}

/* तैरता हुआ ट्रस्ट बैज */
.trust-badge {
  position: absolute;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  bottom: 15%;
  left: -30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid #2980b9;
}

.badge-dots {
  display: flex;
  gap: 3px;
}
.badge-dots span {
  width: 6px;
  height: 6px;
  background: #2980b9;
  border-radius: 50%;
  display: inline-block;
}

.trust-badge h4 {
  font-size: 13px;
  color: #2980b9;
  margin: 0;
  font-weight: 700;
}

/* रिस्पॉन्सिव सेटिंग्स (टैबलेट और मोबाइल के लिए) */
@media (max-width: 991px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  .hero-badge, .hero-left-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-action-btns {
    justify-content: center;
  }
  .gallery-container {
    margin: 0 auto;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .hero-premium { padding: 60px 0; }
  .hero-left-content h1 { font-size: 32px; }
  .hero-stats-grid { grid-template-columns: 1fr; }
  .hero-action-btns { flex-direction: column; width: 100%; }
  .btn-glow-primary, .btn-glass-outline { width: 100%; justify-content: center; }
  .trust-badge { left: 10px; }
  .thumb-1 { width: 100px; height: 100px; }
  .thumb-2 { width: 90px; height: 90px; top: 0; }
}
/* मुख्य सर्टिफिकेशन सेक्शन */
.certifications-premium {
  background-color: #ffffff;
  padding: 80px 0;
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
}

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

/* हेडिंग स्टाइल */
.section-title-center {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-center .sub-title {
  color: #2980b9;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.section-title-center h2 {
  font-size: 32px;
  color: #1a252f;
  font-weight: 700;
  margin: 0 0 12px 0;
  position: relative;
  display: inline-block;
}

.section-title-center h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: #2980b9;
  border-radius: 2px;
}

.section-title-center p {
  font-size: 15px;
  color: #7f8c8d;
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ग्रिड लेआउट - फ्लेक्सिबल और रेस्पॉन्सिव */
.certs-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
}

/* कार्ड का मुख्य बॉक्स */
.cert-premium-card {
  background: #ffffff;
  border: 1px solid #eef2f5;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(166, 177, 185, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

/* होवर इफ़ेक्ट: कार्ड हल्का ऊपर उठेगा और ब्लू ग्लो आएगा */
.cert-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.15);
  border-color: rgba(52, 152, 219, 0.3);
}

/* विज़ुअल बैच (गोल घेरा) का स्टाइल */
.cert-visual {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px auto;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px dashed #cbd5e1;
  transition: all 0.3s ease;
}

.cert-premium-card:hover .cert-visual {
  background: #f0f7fc;
  border-color: #2980b9;
  border-style: solid;
}

.visual-badge {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1;
}

.visual-sub {
  font-size: 10px;
  color: #64748b;
  font-weight: 600;
  margin-top: 4px;
}

/* अलग-अलग बैज के रंगों के लिए थीम्स */
.gold { color: #d4af37; }
.green { color: #2ecc71; }
.blue { color: #2980b9; }
.ce-mark { font-size: 24px; color: #1a252f; font-family: Georgia, serif; }

.india-mark {
  display: flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  color: #e67e22;
}
.india-mark .top-txt { color: #e67e22; }
.india-mark .bot-txt { color: #27ae60; border-top: 1px solid #bdc3c7; padding-top: 1px; }

/* कार्ड का टेक्स्ट भाग */
.cert-content h3 {
  font-size: 16px;
  color: #1a252f;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: color 0.3s ease;
}

.cert-premium-card:hover .cert-content h3 {
  color: #2980b9;
}

.cert-content p {
  font-size: 13px;
  color: #7f8c8d;
  line-height: 1.5;
  margin: 0;
}

/* मोबाइल रिस्पॉन्सिव */
@media (max-width: 576px) {
  .section-title-center h2 { font-size: 26px; }
  .cert-premium-card { padding: 20px; }
  .certs-premium-grid {
    grid-template-columns: 1fr; /* मोबाइल पर कार्ड्स एक के नीचे एक पूरी चौड़ाई में आएंगे */
  }
}
/* मुख्य सेक्शन कंटेनर */
.projects-premium-section {
  background-color: #f4f7fa;
  padding: 80px 0;
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
}

.projects-premium-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* 2-कॉलम सिम्पल लेआउट */
  gap: 40px;
  align-items: start;
}

/* बाईं तरफ का हेडिंग ब्लॉक */
.section-title-left {
  margin-bottom: 35px;
}

.section-title-left .sub-badge {
  background: rgba(52, 152, 219, 0.1);
  color: #2980b9;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.section-title-left h2 {
  font-size: 32px;
  color: #1a252f;
  font-weight: 700;
  margin: 0 0 10px 0;
  position: relative;
}

.section-title-left h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 3px;
  background-color: #2980b9;
  border-radius: 2px;
}

.section-title-left p {
  font-size: 15px;
  color: #7f8c8d;
  margin-top: 18px;
  line-height: 1.6;
}

/* प्रोजेक्ट्स ग्रिड */
.projects-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* प्रोजेक्ट कार्ड */
.project-modern-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  height: 220px;
}

.project-img-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* इमेज के ऊपर का शेडेड ग्रेडिएंट */
.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(26, 37, 47, 0.9) 0%, rgba(26, 37, 47, 0.2) 70%, rgba(26, 37, 47, 0) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  box-sizing: border-box;
}

.project-meta h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.project-meta p {
  color: #cbd5e1;
  font-size: 12px;
  margin: 0;
}

/* कार्ड होवर एनीमेशन */
.project-modern-card:hover .project-img-wrapper img {
  transform: scale(1.08);
}

/* दाईं तरफ का प्रीमियम CTA कार्ड */
.projects-right-cta {
  position: sticky;
  top: 40px; /* स्क्रॉल करते समय कार्ड स्क्रीन पर रुका रहेगा */
}

.premium-cta-card {
  background-color: #1a252f; /* डार्क थीम */
  color: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(26, 37, 47, 0.15);
  position: relative;
  overflow: hidden;
}

.premium-cta-card .cta-badge {
  background: #2980b9;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.premium-cta-card h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
}

.premium-cta-card h2 span {
  color: #2980b9;
}

.premium-cta-card p {
  font-size: 14px;
  color: #a6b1b9;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* कांटेक्ट डिटेल्स लिस्ट */
.cta-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.cta-contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.cta-icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2980b9;
  font-size: 14px;
}

.cta-details small {
  display: block;
  font-size: 11px;
  color: #7f8c8d;
  text-transform: uppercase;
}

.cta-details a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-details a:hover {
  color: #2980b9;
}

/* सबमिट बटन */
.btn-cta-submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #2980b9;
  color: #ffffff;
  border: none;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.btn-cta-submit:hover {
  background: #2980b9;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
  transform: translateY(-2px);
}

.btn-cta-submit i {
  transition: transform 0.3s ease;
}

.btn-cta-submit:hover i {
  transform: translateX(4px);
}

/* टैबलेट और मोबाइल रिस्पॉन्सिव */
@media (max-width: 991px) {
  .projects-premium-container {
    grid-template-columns: 1fr;
  }
  .projects-right-cta {
    position: relative;
    top: 0;
  }
}

@media (max-width: 576px) {
  .projects-modern-grid {
    grid-template-columns: 1fr;
  }
  .project-modern-card {
    height: 180px;
  }
  .premium-cta-card {
    padding: 25px 20px;
  }
  .section-title-left h2 {
    font-size: 26px;
  }
}
/* मुख्य बैकग्राउंड और फोंट */
.mega-split-section {
  background-color: #0f172a; 
  color: #ffffff;
  padding: 100px 0;
  width: 100%;
  font-family: 'Poppins', Arial, sans-serif;
}

.mega-split-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr; /* दोनों तरफ बराबर स्पेस */
  gap: 80px;
}

/* हेडर स्टाइल */
.block-header {
  margin-bottom: 40px;
}

.block-header .tag-badge {
  color: #2980b9;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.block-header .tag-badge.alt {
  color: #a855f7;
}

.block-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}

/* --- बायाँ हिस्सा: INTERACTIVE FEATURES GRID --- */
.interactive-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-box-v2 {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.icon-circle-v2 {
  width: 45px;
  height: 45px;
  background: rgba(56, 189, 248, 0.1);
  color: #2980b9;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin-bottom: 15px;
}

.feature-box-v2 h4 {
  font-size: 16px;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: #f1f5f9;
}

.feature-box-v2 p {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}


.feature-box-v2:hover {
  transform: translateY(-5px);
  background: #243249;
  border-color: #2980b9;
  box-shadow: 0 10px 25px rgba(56, 189, 248, 0.1);
}


.creative-industries-list {
  display: flex;
  flex-direction: column;
}

.ind-list-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 20px 0;
  border-bottom: 1px solid #334155;
  position: relative; 
  cursor: pointer;
  transition: all 0.3s ease;
}

.ind-list-item .num {
  font-size: 18px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
  transition: color 0.3s ease;
}

.ind-details h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
  font-weight: 600;
  color: #e2e8f0;
  transition: color 0.3s ease;
}

.ind-details p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}


.hover-preview-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: 100px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.hover-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.ind-list-item:hover {
  padding-left: 10px;
}

.ind-list-item:hover .num {
  color: #a855f7;
}

.ind-list-item:hover .ind-details h3 {
  color: #a855f7;
}

.ind-list-item:hover .hover-preview-img {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) scale(1) translateX(-20px); 
}

/* रिस्पॉन्सिव डिज़ाइन */
@media (max-width: 991px) {
  .mega-split-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 576px) {
  .interactive-features-grid {
    grid-template-columns: 1fr;
  }
  .block-header h2 {
    font-size: 26px;
  }
  .hover-preview-img {
    display: none; 
  }
}
