/* COMMON FLOAT STYLE */
.float {
  position: fixed;
  bottom: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease;
}

/* LEFT - BROCHURE */
.float.brochure {
  left: 20px;
  background: #2c2c2c;
}

/* RIGHT - WHATSAPP */
.float.whatsapp {
  right: 20px;
  background: #25d366;
}

/* WhatsApp Icon */
.float.whatsapp img {
  width: 20px;
  height: 20px;
}

/* HOVER (DESKTOP) */
@media (hover: hover) {
  .float:hover {
    transform: translateY(-3px);
  }
}

/* ========================= */
/* 📱 MOBILE VIEW (ICON ONLY) */
/* ========================= */
@media (max-width: 768px) {
  .float {
    padding: 14px;
    width: 56px;
    height: 56px;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
  }

  /* Hide text, show icon only */
  .float span {
    display: none;
  }

  .float.brochure {
    left: 16px;
  }

  .float.whatsapp {
    right: 16px;
  }

  .float.whatsapp img {
    width: 26px;
    height: 26px;
  }
}

.spec-gradient {
  background: linear-gradient(90deg, #ff0055, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.spec-list li::marker {
  color: red;
  font-weight: 700;
}

.highlight {
  color: #ff3b3b;
}

.spec-img {
  max-width: 90%;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1330px;
  }
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fb;
  color: #333;
  /* padding: 20px; */
}

.patent-container {
  max-width: 1200px;
  margin: 0 auto;
}

.patent-section {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.patent-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--primary-color);
}

.section-title {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.patent-details {
  margin-bottom: 30px;
}

.patent-item {
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.patent-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

.patent-images {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.patent-img-container {
  flex: 1;
  min-width: 280px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patent-img-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.patent-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.patent-caption {
  padding: 15px;
  background-color: var(--secondary-color);
  font-style: italic;
  color: #555;
  text-align: center;
}

.patent-number-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.patent-icon {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.2rem;
}

.patent-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #777;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .patent-section {
    padding: 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .patent-img-container {
    min-width: 100%;
  }

  .patent-img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .patent-section {
    padding: 20px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .patent-item {
    font-size: 1rem;
  }
}

/* Headings */
.strength h3,
.bio h3,
.storage h3 {
  background: linear-gradient(90deg, #2fd3b3 0%, #6fe3c1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 56px;
  line-height: 1.0714285714;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  margin: 0;
}

/* Paragraph text */
.strength p,
.bio p,
.storage p {
  font-size: 24px;
  line-height: 1.3334133333;
  font-weight: 500;
  letter-spacing: 0.009em;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
}

/* Images – slightly smaller than default */
.strength img,
.bio img,
.storage img {
  max-width: 55%;
  height: auto;
}
/* Strength rows left padding */
.strength .strength-row {
  padding-left: 8.5%;
}
@media (max-width: 768px) {
  .strength h3,
  .bio h3,
  .storage h3 {
    font-size: 32px;
    line-height: 1.2;
  }

  .strength p,
  .bio p,
  .storage p {
    font-size: 18px;
    line-height: 1.4;
  }
  .strength .strength-row {
    padding-left: 0;
  }
}

.support img {
  max-width: 140px;
  opacity: 0.9;
}

.support img:hover {
  opacity: 1;
}

/* Default (mobile & tablet) */
.support img {
  max-width: 140px;
  height: auto;
}

/* Desktop only */
@media (min-width: 992px) {
  .support img {
    max-width: 300px; /* 👈 increase size for web */
  }
}
/* Industry titles (smaller than section h3) */
.industry-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Industry icons */
.industries-support img {
  max-width: 80px;
}

/* Desktop – slightly larger icons */
@media (min-width: 992px) {
  .industries-support img {
    max-width: 100px;
  }
}
/* Default: desktop & tablet */
.industry-item {
  text-align: right; /* text right-aligned */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

/* Footer container spacing */
.footer {
  font-size: 14px;
  background-color: #f2f2f2;
}

/* Footer menu */
.footer-col {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

.footer-col li a {
  font-size: 15px;
  text-decoration: none;
  color: #333;
}

.footer-col li a:hover {
  text-decoration: underline;
}

/* Social icons */
.social-icons a {
  margin-left: 18px;
  font-size: 20px;
  color: #333;
}

.social-icons a:hover {
  color: #000;
}

/* Footer base */

.footer-base {
  font-size: 13px;
}

/* Legal links */
.footer-legal-links a {
  margin-left: 20px;
  white-space: nowrap;
  color: #333;
  text-decoration: none;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

.nowrap {
  white-space: nowrap;
}

/* Mobile footer alignment */
@media (max-width: 768px) {
  /* Top menu links */
  .footer-col {
    justify-content: center;
    gap: 20px;
  }

  /* Social icons */
  .social-icons {
    display: flex;
    justify-content: center;
    margin-top: 12px;
  }

  .social-icons a {
    margin: 0 10px;
  }

  /* More ways text */
  .footer-more-ways {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
  }

  /* Legal section */
  .footer-legal {
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center !important;
    margin-top: 8px;
  }

  .footer-legal-links a {
    margin: 0 8px;
    font-size: 12px;
  }
}

/* Page heading */
.inner-head-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  margin: 0;
}

/* Centered reading column */
.about-content {
  max-width: 820px; /* 👈 THIS fixes the desktop look */
}

/* Paragraph styling */
.about-content p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 24px;
  color: #111;
}

/* Intro paragraph */
.about-content .head-desc {
  font-size: 22px;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .inner-head-title {
    font-size: 36px;
  }

  .about-content p {
    font-size: 17px;
  }

  .about-content .head-desc {
    font-size: 18px;
  }
}

.about-content {
  max-width: 900px; /* controls reading width */
  margin-left: auto;
  margin-right: auto;
}
/* About page header */
.about-header {
  background-color: #f5f6f7; /* light neutral background */
  padding: 80px 0; /* vertical space */
  text-align: center;
}

/* Header title */
.about-header .inner-head-title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica,
    Arial, sans-serif;
  margin: 0;
  color: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .about-header {
    padding: 80px 0;
  }

  .about-header .inner-head-title {
    font-size: 36px;
  }
}

/* Wrapper centers image */
.about-divider-wrap {
  display: flex;
  justify-content: center;
}

/* Default (desktop / web) */
.about-divider-img {
  width: 720px; /* 👈 BIG image for web */
  max-width: 100%;
  height: auto;
}

/* Mobile only */
@media (max-width: 768px) {
  .about-divider-img {
    width: 90vw; /* 👈 scales with screen width */
  }
}

.contact-header {
  background: #f5f6f7;
  padding: 80px 0;
}

.contact-header h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
}

.contact-header h2 span {
  font-weight: 400;
  color: #444;
}

@media (max-width: 768px) {
  .contact-header {
    padding: 80px 0;
  }

  .contact-header h2 {
    font-size: 32px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.contact-info .timing {
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
}

.info-block {
  margin-bottom: 18px;
}

.info-block h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: #222;
}

.info-block a,
.info-block p {
  font-size: 15px;
  color: #0066cc;
  text-decoration: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fafafa;
}

.contact-form button {
  background: #1f6fb2;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}
.hero-slider {
  /* height: 40vw;
    width: 30vw; */
}

.hero-slider img {
  height: 80vh;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slider img {
    height: 55vh;
  }
}
