 /* slider top */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      /* ===== Slider Wrapper ===== */
      .hero-slider {
        position: relative;
        width: 100%;
        height: 420px;
        overflow: hidden;
      }

      /* ===== Slides ===== */
      .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1s ease;
      }

      .slide.active {
        opacity: 1;
      }

      /* ===== Dark Overlay ===== */
      .slide::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
      }

      /* ===== Content ===== */
      .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
        width: 90%;
      }

      /* Breadcrumb */
      .breadcrumb {
        font-size: 14px;
        opacity: 0.8;
        margin-bottom: 10px;
      }

      /* Heading */
      .slide-content h1 {
        font-size: 44px;
        font-weight: 700;
      }

      /* ===== Arrows ===== */
      .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 26px;
        color: #fff;
        background: rgba(255, 255, 255, 0.2);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border-radius: 50%;
      }

      .arrow:hover {
        background: #ff3c2f;
      }

      .prev {
        left: 20px;
      }
      .next {
        right: 20px;
      }

      /* ===== Responsive ===== */
      @media (max-width: 768px) {
        .hero-slider {
          height: 300px;
        }
        .slide-content h1 {
          font-size: 28px;
        }
      }
      /* slider top end */
      body {
        margin: 0;
        padding: 0;
        background-color: #ffffff;
        font-family: "Open Sans", sans-serif;
        color: #333333;
      }

      /* ===== Container ===== */
      .container {
        max-width: 1140px;
        margin: auto;
        padding: 60px 20px;
      }

      /* ===== Section ===== */
      section {
        margin-bottom: 50px;
      }

      /* ===== Heading ===== */
      .section-title {
        font-family: "Playfair Display", serif;
        font-size: 34px;
        font-weight: 700;
        color: #1b1464;
        margin-bottom: 25px;
      }

      /* ===== Paragraph ===== */
      .section-text {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 18px;
      }

      /* ===== Sub Heading ===== */
      .sub-title {
        font-size: 22px;
        font-weight: 600;
        color: #1b1464;
        margin-bottom: 15px;
      }

      /* ===== List ===== */
      ul {
        padding-left: 20px;
      }

      ul li {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 8px;
      }

      /* ===== Extra Section Background (optional future use) ===== */
      .light-bg {
        background-color: #f9f9f9;
        padding: 50px 20px;
      }
      <style > body {
        margin: 0;
        font-family: "Open Sans", sans-serif;
        background: #fff;
        color: #333;
      }

      /* ===== Container ===== */
      .container {
        max-width: 1140px;
        margin: auto;
        padding: 60px 20px;
      }

      /* ===== Headings ===== */
      h2 {
        font-family: "Playfair Display", serif;
        font-size: 34px;
        color: #0b1a5e;
        margin-bottom: 15px;
      }

      h3 {
        font-family: "Playfair Display", serif;
        font-size: 26px;
        color: #0b1a5e;
        margin: 40px 0 10px;
      }

      /* ===== Text ===== */
      p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
      }

      /* ===== Social Media Grid ===== */
      .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
      }

      /* ===== Card ===== */
      .social-card {
        text-align: center;
        padding: 25px 15px;
        border-radius: 8px;
        text-decoration: none;
        color: #000;
        transition: 0.3s ease;
      }

      .social-card i {
        font-size: 42px;
        margin-bottom: 15px;
      }

      .social-card span {
        display: block;
        font-weight: 600;
      }

      /* ===== Colors Same as Screenshot ===== */
      .facebook {
        background: #ffc6dd;
      }
      .facebook i {
        color: #1877f2;
      }

      .instagram {
        background: #ffe6a6;
      }
      .instagram i {
        color: #e1306c;
      }

      .linkedin {
        background: #dbffdb;
      }
      .linkedin i {
        color: #0077b5;
      }

      .youtube {
        background: #f3b6b2;
      }
      .youtube i {
        color: #ff0000;
      }

      .twitter {
        background: #d7dadd;
      }
      .twitter i {
        color: #000;
      }

      .google {
        background: #bcd4f6;
      }
      .google i {
        color: #1a73e8;
      }

      /* ===== Hover ===== */
      .social-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      }

      /* ===== Footer Text ===== */
      .leads-text {
        margin-top: 40px;
        font-size: 18px;
        font-weight: 600;
        text-align: center;
      }

      .leads-text span {
        color: red;
      }

      /* ===== Responsive ===== */
      @media (max-width: 768px) {
        h2 {
          font-size: 28px;
        }
        h3 {
          font-size: 22px;
        }
      }
      /* image section  */

      /* ===== Section ===== */
      .fb-image-section {
        padding: 60px 20px;
        background: #ffffff;
      }

      /* ===== Grid ===== */
      .fb-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 30px;
        align-items: center;
      }

      /* ===== Card ===== */
      .fb-card {
        text-align: center;
      }

      /* ===== Image ===== */
      .fb-card img {
        max-width: 100%;
        height: 180px;
        object-fit: contain;
      }

      /* ===== Title ===== */
      .fb-card h4 {
        margin-top: 15px;
        font-size: 16px;
        font-weight: 600;
      }

      .red {
        color: red;
      }

      /* ===== Responsive ===== */
      @media (max-width: 768px) {
        .fb-card img {
          height: 150px;
        }
      }
      /* image section end */