/* Main body font 
body {
    font-family: 'Inter', sans-serif;
    color: #222;
}*/

/* Headings (big bold serif like screenshot) */
h1, h2, h3, .hero-title, .catalog-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

/* Italic sub-heading style */
.catalog-content h2 span {
    font-style: italic;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

body {
      font-family: 'Roboto', sans-serif;
      background-color: #fff;
      color: #222;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 60px;
      font-family: 'Roboto', sans-serif;
      position: sticky;
      top: 0;
      background-color: #fff;
      z-index: 100;
      border-bottom: 1px solid #eee;
    }

    .logo {
      font-family: 'Merriweather', serif;
      font-weight: 700;
      font-size: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

.logo img {
  height: 70px;        /* ideal for header */
  width: auto;
  display: block;
}

.footer-logo {
  max-width: 320px;
}

.footer-logo-img {
  height: 50px;          /* adjust if needed */
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-logo p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
}


    nav a {
      text-decoration: none;
      color: #222;
      margin-left: 30px;
      font-weight: 500;
      font-size: 16px;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #007BFF;
    }

    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 100px 60px;
      position: relative;
    }

    .hero-text {
      max-width: 600px;
    }

    .hero-text span {
      display: inline-block;
      font-size: 14px;
      color: #999;
      border: 1px solid #ddd;
      padding: 5px 15px;
      border-radius: 20px;
      margin-bottom: 20px;
    }

    .hero-text h1 {
      font-family: 'Merriweather', serif;
      font-size: 64px;
      line-height: 1.1;
      font-weight: 700;
      animation: fadeInUp 1s ease forwards;
    }

    /* Dots background effect */
    .hero-bg {
      position: absolute;
      right: 50px;
      top: 50%;
      transform: translateY(-50%);
      width: 400px;
      height: 400px;
      border-radius: 50%;
      border: 1px solid rgba(0,123,255,0.2);
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      grid-template-rows: repeat(10, 1fr);
      gap: 20px;
    }

    .hero-bg div {
      width: 4px;
      height: 4px;
      background: rgba(0,123,255,0.3);
      border-radius: 50%;
      animation: float 3s infinite alternate;
    }

    @keyframes float {
      0% { transform: translateY(0px); }
      100% { transform: translateY(-10px); }
    }

    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(40px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        padding: 80px 20px;
	grid-template-columns: 1.2fr 1fr;
	align-items: center;
      }

      .hero-bg {
        width: 200px;
        height: 200px;
        right: 20px;
      }

      .hero-text h1 {
        font-size: 48px;
      }
    }

    @media (max-width: 576px) {
      .hero-text h1 {
        font-size: 36px;
      }

      nav a {
        margin-left: 15px;
        font-size: 14px;
      }
    }

/*body {margin:0;font-family:Arial;background:#fafafa;}
header nav a {color:#fff;margin-right:20px;text-decoration:none;font-size:16px;}
.hero {padding:80px 20px;text-align:center;background:#eaeaea;}*/
button {padding:10px 20px;border:none;background:#333;color:white;border-radius:5px;}
.features {display:flex;justify-content:center;gap:20px;padding:40px;}
.card {background:white;padding:20px;border-radius:10px;width:30%;box-shadow:0 0 8px rgba(0,0,0,0.1);}
.gallery-grid {display:grid;grid-template-columns:repeat(3,1fr);gap:15px;}
.gallery-grid img {width:100%;height:auto;border-radius:10px;}
.page-content {padding:40px;}
.contact-form {display:flex;flex-direction:column;max-width:400px;}
.contact-form input,textarea {margin-bottom:10px;padding:10px;}
.anim-fade {animation:fade 1s;}
.anim-slide {animation:slide 1s;}
@keyframes fade {from{opacity:0;}to{opacity:1;}}
@keyframes slide {from{transform:translateY(20px);opacity:0;}to{transform:translateY(0);opacity:1;}}
.core-services {
    padding: 60px 8%;
    background: #fafafa;
}

.services-header {
    text-align: left;
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
}

.services-header p {
    font-size: 20px;
    max-width: 700px;
    color: #555;
    margin-top: 10px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e4e4e4;
    padding: 40px 30px;
    border-radius: 6px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.icon-box {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-header h2 {
        font-size: 36px;
    }
}

.catalog {
    padding: 70px 0;
    background: #e7eff5;
}

.catalog-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.catalog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.catalog-content {
    padding: 50px;
}

.catalog-label {
    font-size: 14px;
    letter-spacing: 2px;
    color: #555;
    font-weight: 600;
}

.catalog-content h2 {
    font-size: 52px;
    margin: 15px 0 20px;
    line-height: 1.1;
    font-weight: 700;
}

.catalog-content h2 span {
    font-style: italic;
    color: #2b2b2b;
}

.catalog-content p {
    font-size: 18px;
    color: #444;
    max-width: 550px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.catalog-list {
    list-style: none;
    padding: 0;
}

.catalog-list li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
}

.catalog-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #79a8d8;
    font-size: 26px;
    top: -3px;
}

/* Responsive */
@media (max-width: 900px) {
    .catalog-container {
        grid-template-columns: 1fr;
    }

    .catalog-content {
        padding: 30px 20px;
    }

    .catalog-content h2 {
        font-size: 40px;
    }
}

/* SECTION WRAPPER */
.custom-solutions {
    padding: 100px 0;
    background: #ffffff;
}

/* GRID LAYOUT */
.cs-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.cs-title {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #333;
    line-height: 1.1;
}

.cs-desc {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    margin: 25px 0 35px;
}

.cs-btn {
    display: inline-block;
    border: 2px solid #444;
    padding: 14px 28px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #444;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.cs-btn:hover {
    background: #444;
    color: #fff;
}

/* MIDDLE SECTION */
.cs-number {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #dbe8f2;
}

.cs-heading {
    margin-top: -20px;
    font-size: 34px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333;
}

.cs-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin: 20px 0;
}

.cs-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.cs-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    color: #444;
    font-family: 'Inter', sans-serif;
}

.cs-list li::before {
    content: "○";
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
    color: #8ab6d8;
}

/* RIGHT IMAGE */
.cs-image img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cs-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* MAIN WRAPPER */
.custom-wrapper {
    display: flex;
    width: 100%;
    height: 100vh; /* full height section */
    padding: 40px 70px;
    box-sizing: border-box;
    gap: 80px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

/* LEFT FIXED SECTION */
.left-fixed {
    width: 32%;
    position: sticky;
    top: 0;
    align-self: flex-start;
}

.left-title {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
}

.left-desc {
    font-size: 20px;
    color: #666;
    margin: 25px 0 40px;
    line-height: 1.6;
}

.learn-btn {
    display: inline-block;
    border: 2px solid #333;
    padding: 14px 26px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

/* RIGHT SCROLLABLE SECTION */
.scroll-area {
    width: 68%;
    height: 100%;
    overflow-y: auto;
    padding-right: 20px;
}

/* INNER CONTENT BLOCK */
.scroll-block {
    padding-bottom: 60px;
}

/* NUMBER */
.section-number {
    font-size: 72px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #d8e8f2;
    display: block;
    margin-bottom: -10px;
}

/* HEADING */
.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* PARAGRAPH */
.section-text {
    font-size: 20px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

/* LIST STYLE */
.points {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.points li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    margin-bottom: 12px;
}

.points li::before {
    content: "✓";
    color: #8ab6d8;
    font-weight: 600;
    position: absolute;
    left: 0;
}

/* IMAGE */
.image-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.solution-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 30px 10%;
  background: #fff;
}

/* LEFT FIXED SECTION */
.solution-left {
  position: sticky;
  top: 80px;
  width: 100%;
}

.solution-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.solution-text {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
}

.learn-btn {
  padding: 12px 26px;
  background: transparent;
  border: 2px solid #333;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.learn-btn:hover {
  background: #333;
  color: #fff;
}

/* RIGHT SCROLL AREA */
.solution-right {
  width: 55%;
  height: 90vh;
  overflow-y: scroll;
  padding-right: 20px;
}

.solution-right::-webkit-scrollbar {
  width: 6px;
}

.solution-right::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 6px;
}

.solution-block {
  margin-bottom: 90px;
}

.solution-number {
  font-size: 72px;
  font-weight: 800;
  color: #e6eff9;
  margin-bottom: -10px;
  font-family: "Poppins", sans-serif;
}

.solution-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  font-family: "Poppins", sans-serif;
}

.solution-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solution-block ul {
  margin-bottom: 20px;
}

.solution-block ul li {
  font-size: 17px;
  margin-bottom: 8px;
  color: #333;
}

.solution-img {
  width: 30%;
  border-radius: 10px;
  margin-top: 20px;
}


  /* General Footer Styling */
  .footer {
    background-color: #f7f9fc;
    color: #1a1a1a;
    font-family: 'Arial', sans-serif;
    padding: 50px 20px 20px 20px;
  }

  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Logo Section */
  .footer-logo {
    flex: 1 1 250px;
  }

  .footer-logo .logo-icon {
    display: inline-block;
    background-color: #b0c4de;
    color: #1a1a1a;
    font-weight: bold;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .footer-logo h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .footer-logo p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Links & Services */
  .footer-links, .footer-services, .footer-contact {
    flex: 1 1 150px;
  }

  .footer-links h3, .footer-services h3, .footer-contact h3 {
    font-size: 16px;
    margin-bottom: 15px;
  }

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

  .footer-links li, .footer-services li, .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-links a, .footer-services a {
    text-decoration: none;
    color: #1a1a1a;
  }

  /* Bottom Footer */
  .footer-bottom {
    border-top: 1px solid #d1d9e6;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .footer-bottom-links a {
    margin-left: 20px;
    color: #1a1a1a;
    text-decoration: none;
  }

  .footer-contact li span {
    margin-right: 8px;
  }

  @media(max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .footer-bottom-links a {
      margin-left: 10px;
    }
  }


.solutions {
  padding: 90px 64px 110px;
}

.solutions h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 56px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.solution-card {
  padding: 44px 46px;
  background: #ffffff;
}

.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.solution-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #4b5560;
  margin-bottom: 26px;
}

.solution-card ul {
  list-style: none;
  padding-left: 0;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14.5px;
  color: #2f2f2f;
}

.solution-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
}



        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 50px;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .feature {
            background-color: #fff;
            padding: 30px 20px;
            border-radius: 8px;
            width: 250px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            text-align: left;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #cce0eb;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 24px;
            color: #1e3a5f;
        }

        .feature h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .feature p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #555;
        }

        @media (max-width: 1000px) {
            .features {
                flex-direction: column;
                align-items: center;
            }
        }


/* ---------- SLIDER CONTAINER ---------- */

.pattern {
  position: relative;
  width: 100%;
  height: 100%;
}


.hero-slider {
  position: relative; /* NOT absolute */
  width: 500px;
  height: 500px;
  margin-left: auto;
  margin-right: 40px;
  z-index: 3;
}

/* ---------- SLIDES ---------- */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ---------- TEXT OVERLAY ---------- */
.slide-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.45);
  padding: 14px 18px;
  max-width: 80%;
}

.slide-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 6px;
}

.slide-text p {
  font-size: 13px;
  opacity: 0.9;
}

/* ---------- ARROWS ---------- */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  width: 36px;
  height: 36px;
  font-size: 20px;
  cursor: pointer;
  z-index: 3;
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-arrow:hover {
  background: #ffffff;
}

/* ---------- PATTERN BEHIND ---------- */
.dot-grid,
.cross-line {
  z-index: 1;
}

/* ---------- MOBILE ---------- */
@media (max-width: 1024px) {
  .hero-slider {
    display: none;
  }
}

/* ---------- PRODUCT SECTION ---------- */
.product-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 520px;
  background: #eef5f8;
}

/* ---------- LEFT SLIDER ---------- */


.product-slider {
  position: relative;
  overflow: hidden;
}

/* Slides */
.p-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.p-slide.active {
  opacity: 1;
}

/* Arrows */
.p-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 20px;
}

.p-arrow.left { left: 20px; }
.p-arrow.right { right: 20px; }

.p-arrow:hover {
  background: #ffffff;
}

/* ---------- RIGHT CONTENT ---------- */
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;   /* REQUIRED */
  overflow: hidden;
}

.product-content {
  padding: 100px 80px;
}

.product-content .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b7280;
}

.product-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin: 20px 0;
}

.product-content h2 em {
  font-style: italic;
}

.product-content p {
  color: #4b5563;
  margin-bottom: 24px;
}

.product-content ul {
  list-style: none;
  padding-left: 0;
}

.product-content li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.product-content li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #7aa6d9;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .product-section {
    grid-template-columns: 1fr;
  }

 
}


/* MAIN LAYOUT */
.solution-container {
  max-width: 2500px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
}

/* LEFT */
.solution-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.solution-text {
  font-size: 16px;
  color: #6b6b6b;
  max-width: 380px;
  margin-bottom: 32px;
}

.learn-btn {
  padding: 12px 26px;
  border: 1px solid #2f2f2f;
  background: transparent;
  cursor: pointer;
}

/* RIGHT BLOCK */
.solution-block {
  position: relative;
}

.solution-number {
  font-size: 56px;
  font-weight: 700;
  color: #e3edf5;
  display: block;
  margin-bottom: 8px;
}

.solution-heading {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 16px;
}

.solution-desc {
  font-size: 15px;
  color: #6b6b6b;
  max-width: 420px;
  margin-bottom: 20px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.solution-list li {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.solution-list li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: #9bbfe3;
}

/* IMAGE */
.solution-right-img {
  width: 160px;
}

.solution-right-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.solution-right-img:hover img {
  transform: scale(1.05);
}

/* INDUSTRIAL APPLICATION BLOCK LAYOUT */
.solution-block-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* TEXT AREA */
.solution-info {
  max-width: 420px;
}

/* IMAGE AREA */
.solution-right-img {
  width: 180px;
  flex-shrink: 0;
}

.solution-right-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


.solution-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
}

