* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: 'Poppins', sans-serif; */
  font-family: "Manrope", sans-serif;
}

:root {
  --primary-color: #00022b;
  --secondary-color: #f5f5f5;
  --text-size: 14px;
  --accent-color: #ff6b6b;
  --text-color: #333333;
  --background-color: #ffffff;
  --hover-color: #00bdb6;
}

/* Primary button style */
.prime-btn {
  background-color: var(--primary-color);
  width: 110px;
  height: 34px;
  border: none;
  padding: 5px 15px;
  font-size: 11px;
  color: var(--secondary-color);
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}

/* Base link style */
.navbar-nav .nav-link {
  position: relative;
  color: var(--primary-color);
  font-weight: 500;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

/* Underline (hidden by default) */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--hover-color); /* change color here */
  transition: width 0.3s ease;
}

/* Hover effect */
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active link (permanent underline) */
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Optional: change text color on hover */
.navbar-nav .nav-link:hover {
  color: var(--hover-color);
}

/* Active link color */
.navbar-nav .nav-link.active {
  color: var(--hover-color) !important; /* change to your brand color */
  font-weight: 600;
}

/* Optional: hover color */
.navbar-nav .nav-link:hover {
  color: var(--hover-color) !important; /* change to your brand color */
}

.navbar-collapse {
  position: static; /* default */
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: white;

    background: rgba(0, 2, 43, 0.96);
    backdrop-filter: blur(14px);

    padding: 25px 20px;
    border-radius: 0 0 12px 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;

    /* animation */
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .navbar-collapse.show {
    opacity: 1;
  }

  .navbar-collapse {
    transition: all 0.35s ease;
  }

  .navbar-collapse.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
    color: white;

  }

  .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }
}
/* =========================
   BANNER SECTION
========================= */
.banner-section {
  position: relative;
  width: 100%;
  height: 100vh;
  /* overflow: hidden; */
}

.banner-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.banner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(76.1deg, #00022b 0%, rgba(0, 2, 43, 0) 87.11%);
  z-index: 1;
}

/* =========================
   BANNER CONTENT
========================= */
.banner-content {
  position: absolute;
  bottom: -55px;
  left: 0;

  width: 100%;
  max-width: 813px;

  min-height: 402px;

  padding: 35px;
  color: white;
  z-index: 10;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  background: linear-gradient(
    100.4deg,
    rgba(0, 2, 43, 0.85) 41.43%,
    rgba(0, 7, 145, 0.34) 99.63%
  );

  border-style: solid;
  border-width: 4px 4px 4px 0;
  border-color: #ffffff;
  border-radius: 0 8px 8px 0;
}

.banner-content .text {
  font-size: 11px;
  width: 768px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.banner-heading {
  font-size: 64px;
  line-height: 1.15;
  margin: 18px 0;
  font-weight: 700;
}

/* =========================
   SEARCH BAR
========================= */
.search-container {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-icon {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.search-container input {
  width: 100%;
  height: 52px;

  padding-left: 42px;
  padding-right: 16px;

  color: white;
  border-radius: 6px;
  font-size: 14px;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(12px);
  outline: none;
}

.search-con {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: white;
}

/* Search Button */
.search-container .button {
  width: 170px;
  height: 52px;

  font-size: 14px;
  font-weight: 600;

  color: var(--hover-color);
  border-radius: 6px;
  border: none;

  background: #ffffff;
  cursor: pointer;

  transition: 0.3s ease;
}

.search-container .button:hover {
  transform: translateY(-2px);
}

/* =========================
   HERO SECTION
========================= */
.hero-section {
  margin-top: 120px;
}

.hero-box {
  padding: 10px;
}

.hero-box .icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.hero-heading {
  font-size: 22px;
  margin-bottom: 10px;
}

.hero-text {
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   LARGE TABLET
========================= */
@media (max-width: 992px) {
  .banner-section {
    height: 85vh;
  }

  .banner-content {
    max-width: 620px;
    padding: 28px;
  }

  .banner-heading {
    font-size: 48px;
  }

  .hero-section {
    margin-top: 100px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .banner-section {
    height: 75vh;
  }

  .banner-content {
    bottom: 25px;
    max-width: 92%;
    padding: 24px;
    min-height: auto;
  }

  .banner-heading {
    font-size: 38px;
    line-height: 1.2;
  }

  .search-container {
    gap: 10px;
  }

  .search-container input {
    height: 48px;
    font-size: 13px;
  }

  .search-container .button {
    width: 150px;
    height: 48px;
    font-size: 13px;
  }

  .hero-section {
    margin-top: 80px;
  }

  .hero-heading {
    font-size: 20px;
  }

  .hero-text {
    font-size: 14px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .banner-section {
    height: 65vh;
  }

  .banner-content {
    left: 10px;
    right: 10px;
    bottom: 15px;

    max-width: calc(100% - 20px);

    padding: 18px;

    border-width: 3px 3px 3px 0;
  }

  .banner-content .text {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .banner-heading {
    font-size: 28px;
    margin: 12px 0;
  }

  .search-container {
    flex-direction: column;
    align-items: stretch;
    margin-top: 15px;
  }

  .search-icon {
    min-width: 100%;
  }

  .search-container input {
    height: 44px;
    font-size: 13px;
    padding-left: 38px;
  }

  .search-container .button {
    width: 100%;
    height: 44px;
    font-size: 13px;
  }

  .search-con {
    width: 14px;
    height: 14px;
    left: 12px;
  }

  .hero-section {
    margin-top: 60px;
  }

  .hero-box {
    text-align: center;
    padding: 15px 10px;
  }

  .hero-heading {
    font-size: 18px;
  }

  .hero-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 400px) {
  .banner-section {
    height: 60vh;
  }

  .banner-heading {
    font-size: 24px;
  }

  .banner-content {
    padding: 15px;
  }

  .search-container input,
  .search-container .button {
    height: 42px;
    font-size: 12px;
  }

  .hero-heading {
    font-size: 17px;
  }

  .hero-text {
    font-size: 12px;
  }
}

/* accessories-section */
/* Section spacing */
.accessories-section {
  margin-top: 80px;
}

/* Heading line */
.accessories-heading .line {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--hover-color);
  margin-top: 10px;
}

/* Text */
.accessories-para {
  max-width: 580px; /* instead of fixed width */
  font-size: 16px;
  line-height: 1.6;
}

/* Right side cards spacing */
.accessories-section .col-md-5 > div {
  margin-bottom: 30px;
}

/* Paragraph safety */
.accessories-section p {
  max-width: 100%;
}

/* Main image */
.img-container .centrifuges-img {
  width: 100%;
  max-width: 680px;
  height: auto;
}

/* Side images */
.rotors-img,
.accessories-img {
  width: 100%;
  max-width: 480px;
  height: 192px;
  border-radius: 10px;
}

/* Headings */
.accessories-section h2 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: bold;
}

.accessories-section h3 {
  font-size: clamp(18px, 3vw, 20px);
}

@media (max-width: 768px) {
  .accessories-section {
    margin-top: 60px;
  }

  /* Stack spacing */
  .accessories-section .row {
    gap: 30px;
  }

  /* Center images */
  .img-container {
    text-align: center;
  }

  /* Reduce text size slightly */
  .accessories-para {
    font-size: 14px;
  }

  /* Fix heading spacing */
  .accessories-section h3 {
    margin-top: 15px;
  }
}

/* technical-section */

.technical-section {
  margin-top: 50px;
  width: 100%;
  height: 675px;
  padding-top: 96px;
  padding-bottom: 96px;
  opacity: 1;

  height: auto;
  background: linear-gradient(
    100.7deg,
    #3f59a7 24.27%,
    #744199 73.54%,
    #71ccd2 119.89%
  );

  color: white;
}

/* Main Heading */
.technical-main-heading {
  width: 576px;
  height: 164px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: bold;
  font-size: 48px;
}

/* Highlight text */
.technical-subHeading {
  color: var(--hover-color);
  font-size: 48px;
}

/* Paragraph */
.technical-para {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 500px;
}

/* Card */
.technical-card {
  padding: 20px;
}

/* Icon */
.icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--hover-color);
}

/* Card heading */
.card-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* =========================
   LARGE TABLET
========================= */
@media (max-width: 992px) {
  .technical-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    height: auto;
  }

  .technical-main-heading {
    width: 100%;
    height: auto;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .technical-subHeading {
    font-size: 40px;
  }

  .technical-para {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }

  .technical-card {
    padding: 18px;
  }

  .card-heading {
    font-size: 19px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .technical-section {
    padding-top: 70px;
    padding-bottom: 70px;
    margin-top: 35px;
    text-align: center;
  }

  .technical-main-heading {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .technical-subHeading {
    font-size: 34px;
  }

  .technical-para {
    font-size: 15px;
    line-height: 1.6;
    margin: auto;
  }

  .technical-card {
    padding: 16px;
    margin-bottom: 20px;
  }

  .icon {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .card-heading {
    font-size: 18px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .technical-section {
    padding-top: 55px;
    padding-bottom: 55px;
    margin-top: 30px;
  }

  .technical-main-heading {
    font-size: 28px;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .technical-subHeading {
    font-size: 28px;
  }

  .technical-para {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .technical-card {
    padding: 14px;
    margin-bottom: 18px;
  }

  .icon {
    font-size: 20px;
  }

  .card-heading {
    font-size: 17px;
    margin-bottom: 8px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 400px) {
  .technical-main-heading {
    font-size: 24px;
  }

  .technical-subHeading {
    font-size: 24px;
  }

  .technical-para {
    font-size: 13px;
    line-height: 1.5;
  }

  .technical-card {
    padding: 12px;
  }

  .icon {
    font-size: 18px;
  }

  .card-heading {
    font-size: 16px;
  }
}

/* news section */

/* Section */
.news-section {
  padding: 80px 0;
  background: #fff;
}

/* Heading */
.news-heading {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: bold;
  margin-bottom: 10px;
}

/* Subtext */
.news-subtext {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

/* Card */
.news-card {
  transition: all 0.3s ease;
}

/* Image */
.news-card img {
  width: 362.67px;
  height: 203.98px;
  border-radius: 8px;
}

/* Date */
.news-date {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  font-weight: 600;
  color: var(--hover-color);
}

/* Title */
.news-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0;
}

/* Text */
.news-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Hover effect */
.news-card:hover {
  transform: translateY(-5px);
}

/* contect-section */
.contect-section {
  margin-top: 40px;
}

/* Image wrapper */
.image-box {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

/* Image */
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEFT gradient */
.first-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.9) 0%,
    rgba(0, 2, 43, 0.4) 50%,
    rgba(0, 2, 43, 0) 100%
  );
}

/* RIGHT gradient */
.second-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(0, 106, 102, 0.9) 0%,
    rgba(0, 106, 102, 0.4) 50%,
    rgba(0, 106, 102, 0) 100%
  );
}

/* Overlay content */
.overlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  color: #fff;
  z-index: 2;

  width: 90%;
  max-width: 420px;
  text-align: center;
  padding: 10px;
}

/* Heading */
.overlay-content h3 {
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 600;
  width: 239px;
  margin-bottom: 10px;
}

/* Paragraph */
.overlay-content p {
  max-width: 320px;
  font-size: clamp(13px, 2.5vw, 15px);
  line-height: 1.6;
  margin-bottom: 18px;
  text-align: justify;
}

/* Buttons */
.pdf-btn,
.contect-btn {
  padding: 12px 20px;
  font-size: clamp(11px, 2vw, 13px);
  border-radius: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

/* Left button */
.pdf-btn {
  background: #fff;
  color: #00022b;
}

/* Right button */
.contect-btn {
  background: #00022b;
  color: #fff;
}

/* Hover */
.pdf-btn:hover {
  background: var(--hover-color);
  color: #fff;
}

.contect-btn:hover {
  background: #fff;
  color: #00022b;
}
/* =========================
   NEWS SECTION
========================= */

/* Tablet */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 20px;
  }

  .news-heading {
    margin-bottom: 12px;
    text-align: center;
  }

  .news-subtext {
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.6;
  }

  .news-card {
    margin-bottom: 25px;
  }

  .news-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .news-date {
    margin-top: 12px;
  }

  .news-card h3 {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0 8px;
  }

  .news-card p {
    font-size: 13px;
    text-align: justify;
    line-height: 1.7;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .news-section {
    padding: 50px 15px;
  }

  .news-heading {
    font-size: 28px;
    line-height: 1.3;
  }

  .news-subtext {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .news-card {
    margin-bottom: 30px;
  }

  .news-card img {
    width: 100%;
    height: auto;
  }

  .news-card h3 {
    font-size: 15px;
    margin: 8px 0;
  }

  .news-card p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .news-heading {
    font-size: 24px;
  }

  .news-subtext {
    font-size: 13px;
  }

  .news-card h3 {
    font-size: 14px;
  }

  .news-card p {
    font-size: 12px;
  }
}

/* =========================
   CONTACT SECTION
========================= */

/* Large Tablet */
@media (max-width: 992px) {
  .contect-section {
    margin-top: 35px;
  }

  .image-box {
    height: 420px;
  }

  .overlay-content {
    max-width: 380px;
    padding: 15px;
  }

  .overlay-content h3 {
    width: 100%;
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .overlay-content p {
    max-width: 100%;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .contect-section {
    margin-top: 30px;
  }

  .image-box {
    height: 360px;
  }

  .overlay-content {
    width: 92%;
    max-width: 340px;
    padding: 10px;
  }

  .overlay-content h3 {
    width: 100%;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 14px;
    text-align: center;
  }

  .overlay-content p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: center;
  }

  .pdf-btn,
  .contect-btn {
    padding: 11px 18px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .image-box {
    height: 300px;
  }

  .overlay-content {
    width: 95%;
    max-width: 300px;
  }

  .overlay-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .overlay-content p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
    padding: 0 5px;
  }

  .pdf-btn,
  .contect-btn {
    width: 100%;
    max-width: 220px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .overlay-content .d-flex,
  .overlay-content .btn-group {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  .image-box {
    height: 260px;
  }

  .overlay-content h3 {
    font-size: 20px;
  }

  .overlay-content p {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .pdf-btn,
  .contect-btn {
    font-size: 11px;
    padding: 9px 14px;
  }
}

/* footer section */

/* Footer */
.footer-section {
  background-color: #00022b;
  color: #fff;
  padding: 60px 0 20px;
}

/* Logo */
.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

/* Text */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  max-width: 300px;
}

/* Headings */
.footer-heading {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* List */
.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

/* Links */
.footer-section a {
  text-decoration: none;
  color: #aaa;
  font-size: 13px;
  transition: 0.3s;
}

.footer-section a:hover {
  color: var(--hover-color);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  font-size: 10px;
  padding-top: 15px;
  text-align: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-section {
    padding: 40px 15px;
  }

  .footer-text {
    max-width: 100%;
  }

  .footer-heading {
    margin-top: 10px;
  }
}

/* hero-header section */
.hero-header {
  position: relative;
  width: 100%;
  min-height: 433px;
  overflow: hidden;
}

.hero-header img {
  width: 100%;
  height: 433px;
  object-fit: cover;
}

/* Overlay */
.hero-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, #00022b 10%, rgba(0, 7, 145, 0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
  max-width: 600px;
  width: 90%;
}

.hero-content h2 {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: bold;
}

.hero-content .subtitle {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: #ddd;
}

.subtitle-sub {
  font-size: clamp(14px, 2vw, 18px);
  color: #ddd;
  margin-top: 40px;
}

.hero-content p {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.6;
  margin-top: 15px;
}

/* Tablet */
@media (max-width: 992px) {
  .hero-content {
    left: 4%;
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-header {
    min-height: auto;
  }

  .hero-header img {
    height: 260px;
  }

  /* Remove overlay darkness issue */
  .hero-header::before {
    display: none;
  }

  .hero-content {
    position: static;
    transform: none;
    padding: 20px;
    background: #00022b;
    width: 100%;
  }

  .hero-content h2 {
    font-size: 26px;
  }

  .hero-content .subtitle-sub {
    margin-top: 5px;
  }

  .hero-content p {
    margin-top: 10px;
  }

  .hero-content .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-header img {
    height: 200px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: 13px;
  }
}

/* product-listing section */

/* sidebar */
.sidebar {
  position: sticky;
  top: 5px; /* space from top */
  height: auto;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 189, 182, 0.45) rgba(0, 0, 0, 0.08);
}

.sidebar::-webkit-scrollbar {
  width: 8px;
}

.sidebar::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 189, 182, 0.45);
  border-radius: 999px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 189, 182, 0.65);
}

.offcanvas .sidebar {
  position: relative;
  top: 10px;
  max-height: none;
}

.offcanvas-body {
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  padding: 0;
}

.offcanvas-body::-webkit-scrollbar {
  width: 8px;
}

.offcanvas-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(0, 189, 182, 0.45);
  border-radius: 999px;
}

.offcanvas-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 189, 182, 0.65);
}

.sidebar h6 {
  width: 224px;
  height: 56px;
  font-size: 18px;
  line-height: 28px;
}
.sidebar .text-muted {
  font-size: 10px;
}

.sidebar ul li {
  padding: 10px 0;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: Uppercase;
  cursor: pointer;
  color: rgba(100, 116, 139, 1);
}

.sidebar ul li.active {
  color: var(--hover-color);
  font-weight: 600;
}

/* PRODUCT CARD */
.product-card {
  width: 435px;
  height: auto;
  /* background: rgba(255, 255, 255, 1); */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgb(163, 163, 163);
  transition: 0.3s;
  padding: 24px;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-img {
  width: 385px;
  height: 256px;
  position: relative;
  background: rgba(246, 241, 255, 1);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.product-img img {
  max-width: 100%;
  height: 180px;
  object-fit: contain;
}

.text-muted {
  /* margin-top: 0px; */
  font-size: 10px;
}

.text-muted2 {
  font-size: 13px;
  font-weight: bold;
}

.form-check {
  margin-top: 15px;
  margin-bottom: 15px;
}

.form-check label {
  font-size: 14px;
}

.text-muted3 {
  font-size: 13px;
  font-weight: bold;
}

.form-range {
  width: 224px;
  height: 4px;
  opacity: 1;
  border-radius: 9999px;
  margin-top: 20px;
  color: #00bdb6;
  margin-bottom: 24px;
}

.side-btn {
  border: none;
  width: 80.47px;
  height: 43px;
  font-size: 11px;
  text-decoration: none;
  color: rgba(0, 106, 102, 1);
  font-weight: bold;
}

.state-parent {
  display: flex;
  justify-content: space-between;
}

.state-child {
  display: flex;
  flex-direction: column;
}

.state-child strong {
  font-size: 16px;
}

/* BADGE */
.product-img .badge {
  position: absolute;
  top: 10px;
  right: 10px;
}

/* btns */
.btn-container {
  width: 385px;
  height: 77px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.view_btn {
  width: 146px;
  height: 43px;
  font-size: 11px;
  text-decoration: none;
  color: rgba(0, 106, 102, 1);
  font-weight: bold;
}

.add_btn {
  background: rgba(0, 189, 182, 1);
  width: 219.59px;
  height: 42.5px;
  border-radius: 8px;
  border: none;
  font-size: 11px;
  color: white;
  font-weight: Bold;
}

/* responsive */
@media (max-width: 576px) {
  .row > .sidebar {
    display: none; /* hide desktop sidebar on mobile */
  }

  .product-card {
    width: 100%;
    height: auto;
    padding: 16px;
  }

  .product-img {
    width: 100%;
    height: auto;
  }

  .product-img img {
    height: 150px;
  }

  .btn-container {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .add_btn,
  .view_btn {
    width: 100%;
    text-align: center;
  }

  .state-parent {
    flex-direction: column;
    gap: 10px;
  }
}

@media (min-width: 577px) and (max-width: 991px) {
  .row > .sidebar {
    display: none;
  }

  .product-card {
    width: 100%;
    height: auto;
  }

  .product-img {
    width: 100%;
    height: auto;
  }

  .btn-container {
    width: 100%;
  }
}

/* Generation-style */

.gen-wrapper {
  width: 902px;
  height: 411px;
  display: flex;
  gap: 32px;
}

.first-gen {
  width: 512.83px;
  height: 395px;
  padding: 48px;
  background: rgba(0, 2, 43, 1);
  color: white;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-radius: 8px;
}

.first-gen span {
  font-size: 10px;
  color: rgba(140, 244, 237, 1);
  margin-bottom: 5px;
}

.first-gen h2 {
  width: 416.8333740234375px;
  height: 120px;
  font-size: 48px;
  margin-bottom: 12px;
}

.gen-para {
  font-size: 16px;
  color: rgba(118, 129, 212, 1);
  margin-bottom: 12px;
}

.first-gen .gen-btn {
  width: 212.31px;
  font-size: 12px;
  font-weight: bold;
  height: 40px;
  background: rgba(0, 106, 102, 1);
  color: rgba(255, 255, 255, 1);
  border: none;
  border-radius: 5px;
  margin-top: 15px;
}

.second-gen {
  width: 357.17px;
  height: 395px;
  background: rgba(240, 235, 255, 1);
  border: 1px solid rgba(200, 197, 208, 0.1);
  padding: 32px;
  position: relative;
}

.second-gen h3 {
  width: 291.17px;
  height: 64px;
  font-size: 24px;
  margin-top: 18px;
  font-weight: bold;
}

.second-gen .content {
  width: 291.17px;
  height: 209px;
}

.gen-support {
  position: absolute;
  color: rgba(0, 106, 102, 1);
  font-size: 10px;
  bottom: 20px;
  font-weight: bold;
}
/* FIX overflow + center */
.gen-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

/* 📱 LARGE TABLET */
@media (max-width: 1200px) {
  .gen-wrapper {
    width: 100%;
    height: auto;
  }

  .first-gen,
  .second-gen {
    height: auto;
  }

  .first-gen {
    width: 58%;
  }

  .second-gen {
    width: 42%;
  }

  .first-gen h2 {
    width: 100%;
    height: auto;
  }

  .second-gen h3,
  .second-gen .content {
    width: 100%;
    height: auto;
  }
}

/* 📱 TABLET */
@media (max-width: 992px) {
  .gen-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }

  .first-gen,
  .second-gen {
    width: 100%;
  }

  .first-gen h2 {
    font-size: 36px;
  }
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .gen-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .first-gen,
  .second-gen {
    width: 100%;
    padding: 24px;
  }

  .first-gen h2 {
    font-size: 28px;
  }

  .gen-para {
    font-size: 14px;
  }

  .first-gen .gen-btn {
    width: 100%;
  }

  .gen-support {
    position: static; /* prevents overlap */
    margin-top: 15px;
  }
}

/* 📱 SMALL MOBILE */
@media (max-width: 480px) {
  .first-gen h2 {
    font-size: 22px;
  }

  .second-gen h3 {
    font-size: 18px;
  }
}

/* product details */
.product-detail {
  /* keep your values but don't restrict layout */
  background-color: #f8f9fb;
}

.detail-content-container {
  width: 465.6700134277344px;
  height: 394px;
}

/* IMAGE */
.product-detail-img {
  width: 512px;
  height: 512px;
  text-align: center;
  object-fit: contain; /* prevents distortion */
}

/* TEXT */
.text-teal {
  color: #00a7a0;
  letter-spacing: 1px;
  font-size: 12px;
}

/* BUTTON */
.btn-teal {
  background: #00a7a0;
  color: #fff;
  border-radius: 6px;
  border: none;
}

.btn-teal:hover {
  background: #008c86;
}

/* LINK */
.contact-link {
  color: #00a7a0;
  text-decoration: none;
  border-bottom: 2px solid #00a7a0;
  padding-bottom: 3px;
}

/* DESKTOP ALIGNMENT */
.detail-content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .detail-content-container {
    text-align: center;
    margin-top: 20px;
  }

  .product-img {
    max-width: 280px;
    height: auto;
  }
}

/*  */
/* Default (keep your original design intact) */

/* Fix right column alignment */

/* Add spacing between cards */

.detail-content-container span {
  color: rgba(0, 189, 182, 1);
}

/* Add visual hierarchy like your design */
.detail-content-container .box1,
.box2,
.box1 {
  width: 540px;
  height: 178px;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 10px;
}

.box2 {
  background-color: #0b0f5c; /* dark blue */
  color: #fff;
}

.detail-content-container h3 {
  font-size: 20px;
  padding: 10px;
}

/* Optional icon spacing */
.box1 span,
.box2 span {
  width: 24px;
  height: 31.5px;
  opacity: 1;
  color: #00bdb6;
  display: inline-block;
  margin-right: 20px;
}

.box1 {
  border-left: 4px solid #00bdb6;
}

/* Fix heading alignment */
.box2 h3 {
  vertical-align: middle;
  color: white;
}

/* Make text flexible */
.text-muted-para {
  max-width: 100%;
  height: auto;
  margin-top: 6px;
}

/* Paragraph inside box */
.para-con {
  width: 429px;
  margin-left: 44px;
  font-size: 14px;
}

.text-muted-para {
  width: 527px;
  height: 351px;
  text-align: justify;
}

/* Fix column stacking spacing */
/* .detail-content-container .d-flex {
  width: 100%;
} */
/* ================= RESPONSIVE FIX ================= */

/* Large screens (keep your exact design) */
@media (min-width: 993px) {
  .box1,
  .box2,
  .box3 {
    width: 540px;
  }

  .para-con {
    width: 429px;
    text-align: justify;
  }

  .text-muted-para {
    width: 527px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .box1,
  .box2,
  .box3 {
    width: 100% !important;
    height: auto;
  }

  .para-con {
    width: 100% !important;
    margin-left: 0 !important;
    text-align: justify;
  }

  .text-muted-para {
    width: 100% !important;
    height: auto;
  }

  .col-lg-6 {
    text-align: center !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .box1,
  .box2,
  .box3 {
    padding: 20px;
  }

  .box1 h3,
  .box2 h3 {
    font-size: 18px;
  }

  .para-con {
    font-size: 13px;
    text-align: justify;
  }

  .text-muted-para {
    font-size: 14px;
    text-align: left;
  }
}

/* tabs section */

/* main container card style – matches clean lab aesthetic */
.tab-main-wrapper {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
}

/* Bootstrap tabs override: cleaner, no background, proper spacing */
.nav-tabs {
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 0;
  padding-left: 0.25rem;
  gap: 0.5rem;
}

.nav-tabs .nav-link {
  border: none;
  background: transparent;
  color: #2d3e50;
  font-weight: 600;
  font-size: 1.35rem; /* ~22px */
  padding: 0.75rem 1rem 0.85rem 1rem;
  margin-right: 1.25rem;
  transition: all 0.2s ease;
  font-family: inherit;
  letter-spacing: -0.2px;
  position: relative;
}

.nav-tabs .nav-link:hover {
  color: #00bdb6;
  background: transparent;
  border: none;
}

.nav-tabs .nav-link.active {
  color: #00bdb6;
  background: transparent;
  border: none;
  border-bottom: 3px solid #00bdb6;
  font-weight: 700;
}

/* Tab content panel: fixed height 613px, flex alignment exactly as brief */
.tab-content {
  width: 100%;
  height: 613px;
  display: flex;
  align-items: center;
  background: #f8f4ff;
  border: 3px solid #d9d9d9;
  border-top: none;
  border-radius: 0 0 20px 20px; /* subtle rounding consistent with modern cards */
  padding: 2rem 2rem;
  transition: all 0.2s;
}

/* ensure each pane fills the tab-content area with flex centering */
.tab-pane {
  width: 100%;
  height: 613px;
  display: flex;
  align-items: center;
}

/* left column styles: exact values from design but fluid inside */
.spec-title {
  width: 100%;
  max-width: 360px;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #1e2a3e;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.spec-desc {
  width: 100%;
  max-width: 360px;
  font-size: 18px;
  line-height: 1.5;
  color: #5b6e8c;
  margin-top: 20px;
  margin-bottom: 1rem;
}

.spec-box {
  width: 100%;
  max-width: 360px;
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 16px;
  margin-top: 28px;
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.02),
    0 2px 4px rgba(0, 0, 0, 0.03);
  border: 1px solid #edeff2;
}

.certified-badge {
  font-weight: 700;
  font-size: 1rem;
  color: #00bdb6;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spec-box p {
  width: 100%;
  height: auto;
  font-size: 12px;
  line-height: 17px;
  color: #3a4a6e;
  margin-top: 10px;
  font-weight: 500;
  margin-bottom: 0;
}

/* Right side spec list — consistent spacing and alignment */
.spec-list-container {
  width: 100%;
  max-width: 704px;
  margin-left: auto;
  background: transparent;
  margin-top: 0;
}

.spec-item {
  border-bottom: 2px solid #e2e8f0;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  font-size: 1rem;
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-item span:first-child {
  font-weight: 500;
  color: #2d4059;
  letter-spacing: 0.2px;
  font-size: 12px;
}

.spec-item strong {
  font-weight: 300;
  color: #0b2b3b;
  font-size: 36px;
}

/* Rotors / Accessories panels retain proper alignment, consistent visual */
.rotors-panel,
.accessories-panel {
  height: 613px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.rotors-card-grid,
.accessories-grid {
  background: white;
  border-radius: 28px;
  padding: 2rem 2.2rem;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid #eef2fa;
}

.rotor-spec-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-top: 1.8rem;
  text-align: left;
}

.rotor-metric {
  flex: 1;
  min-width: 140px;
  background: #fafaff;
  padding: 1rem;
  border-radius: 20px;
}

.rotor-metric .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #5d6f8f;
}

.rotor-metric .value {
  font-size: 1.9rem;
  font-weight: 800;
  color: #1f2e45;
  line-height: 1.2;
}

.rotor-metric .unit {
  font-size: 0.85rem;
  color: #6b7c9e;
}

.accessories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.acc-badge {
  background: #f0f2f9;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-weight: 500;
  color: #1e2f44;
}

/* downlode-section */
.down-heading {
  font-size: 30px;
  font-weight: Bold;
  /* margin-left: 55px; */
}

.box-1,
.box-2,
.box-3 {
  width: 341px;
  height: 94px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 30px;
}

.down-pdf h5,
.down-pdf h5,
.down-pdf h5 {
  font-size: 16px;
  font-weight: 700;
}

.down-pdf small {
  font-weight: 400;
  font-size: 14px;
}

/* responsive fine-tune: on smaller screens maintain min-height and paddings */
@media (max-width: 1200px) {
  .tab-content {
    height: 613px;
  }
  .tab-pane {
    height: 613px;
    padding: 2rem 1.5rem;
  }
  .rotors-panel,
  .accessories-panel {
    min-height: 613px;
  }
  .spec-title {
    max-width: 100%;
  }
  .spec-list-container {
    margin-left: 0;
    margin-top: 2rem;
  }
}

@media (max-width: 992px) {
  .tab-content {
    height: auto;
    padding: 1.5rem 1rem;
  }
  .tab-pane {
    height: auto;
    padding: 1.5rem 1rem;
  }
  .rotors-panel,
  .accessories-panel {
    min-height: auto;
  }
  .nav-tabs .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0.75rem;
    margin-right: 0.75rem;
  }
  .spec-title {
    font-size: 32px;
  }
  .spec-list-container {
    margin-top: 2rem;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 1.5rem;
    margin: 0 auto;
  }

  .rotor-spec-detail {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .rotor-metric {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 120px;
  }

  .down-heading {
    font-size: 23px;
    font-weight: Bold;
    text-align: center;

    /* margin-left: 55px; */
  }
}

@media (max-width: 768px) {
  .tab-main-wrapper {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
  }
  .tab-content {
    height: auto;
    border: 3px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
    padding: 1rem;
    margin: 0;
    border-radius: 0 0 16px 16px;
  }
  .tab-pane {
    height: auto;
    padding: 1rem;
    width: 100%;
    display: block;
  }
  .rotors-panel,
  .accessories-panel {
    height: auto;
    min-height: auto;
    text-align: left;
  }
  .nav-tabs {
    gap: 0.25rem;
    padding-left: 0;
  }
  .nav-tabs .nav-link {
    font-size: 0.95rem;
    padding: 0.5rem 0.5rem 0.6rem 0.5rem;
    margin-right: 0.25rem;
    font-weight: 600;
  }
  .spec-title {
    font-size: 26px;
    margin-bottom: 1rem;
    max-width: 100%;
  }
  .spec-desc {
    font-size: 16px;
  }
  .spec-box {
    margin-top: 1.5rem;
    max-width: 100%;
  }
  .spec-box p {
    width: 100%;
    height: auto;
  }
  .spec-list-container {
    margin-left: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }
  .spec-item {
    padding: 0.8rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .spec-item strong {
    font-size: 28px;
    margin-top: 0.5rem;
  }
  .rotors-panel,
  .accessories-panel {
    justify-content: flex-start;
    align-items: stretch;
  }
  .rotors-card-grid,
  .accessories-grid {
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
  }
  .accessories-grid h3 {
    font-size: 1rem;
  }
  .rotor-spec-detail {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  .rotor-metric {
    flex: 1 1 100%;
    min-width: 100%;
    padding: 1rem;
  }
  .rotor-metric .value {
    font-size: 1.5rem;
  }
  .accessories-list {
    gap: 0.8rem;
    /* margin-top: 1rem; */
    flex-direction: column;
    align-items: stretch;
  }
  .acc-badge {
    padding: 0.8rem 1rem;
    width: 100%;
    text-align: left;
  }

  .down-heading {
    font-size: 23px;
    font-weight: Bold;
    text-align: center;

    /* margin-left: 55px; */
  }
}

@media (max-width: 576px) {
  .tab-main-wrapper {
    width: 100%;
    padding: 0;
  }
  .tab-content,
  .tab-pane {
    height: auto;
    border-radius: 12px;
    padding: 0.75rem;
  }
  .rotors-panel,
  .accessories-panel {
    height: auto;
    min-height: auto;
  }
  .nav-tabs .nav-link {
    font-size: 0.85rem;
    padding: 0.4rem 0.4rem 0.5rem 0.4rem;
    margin-right: 0.1rem;
  }
  .spec-title {
    font-size: 22px;
    max-width: 100%;
  }
  .spec-desc {
    font-size: 14px;
    margin-top: 0.75rem;
    max-width: 100%;
  }
  .spec-item {
    gap: 0.3rem;
  }
  .spec-item strong {
    font-size: 20px;
  }
  .spec-item span:first-child {
    font-size: 11px;
  }
  .rotor-metric {
    padding: 0.75rem;
  }
  .rotor-metric .value {
    font-size: 1.3rem;
  }
  .rotor-metric .label {
    font-size: 0.7rem;
  }
  .accessories-grid h3 {
    font-size: 1.1rem;
  }
  .acc-badge {
    font-size: 0.9rem;
    padding: 0.6rem 0.8rem;
  }

  .down-heading {
    font-size: 23px;
    font-weight: Bold;
    text-align: center;
  }
}

/* Normal select dropdown arrow */
.custom-dropdown,
.small-dropdown {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
}

/* If using Select2 */
.select2-container--default .select2-selection--single {
  height: 45px;
  border: 1px solid #ced4da;
  border-radius: 6px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 45px;
  right: 15px;
}

/* Product Configurator */
.config-container {
  width: 100%;
  background:
    linear-gradient(0deg, #ffffff, #ffffff),
    linear-gradient(0deg, #f6f1ff, #f6f1ff);
  padding: 48px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.config-container h2 {
  font-size: 36px;
  font-weight: 800;
}

.config-container p {
  font-size: 18px;
}

.config-header-container {
  width: 1184px;
  height: 76px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cofig-m-heading {
  width: 507px;
  height: 76px;
  gap: 8px;
}

/* =========================
       MESSAGE BOX
    ========================== */
.message-con {
  max-width: 573px;
  height: 52px;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: #eae5ff;
  font-size: 14px;
  margin-left: auto;
  text-align: center;
}

/* =========================
       CARD
    ========================== */
.config-card-container {
  background: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0px 20px 40px rgba(25, 21, 67, 0.06);
  margin-top: 30px;
}

/* =========================
       GRID LAYOUT
    ========================== */
.main-config-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 1184px;
  height: 929px;
  padding: 48px;
}

.config-card-sub-container {
  flex: 1;
  min-width: 300px;
}

/* =========================
       TITLE ROW
    ========================== */
.temp-control-con {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.index-no {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #00022b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

h5 {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* =========================
       BUTTON GROUP
    ========================== */
.temp-control-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
  height: auto;
}

.temp-control-btns button {
  flex: 0 0 auto;
  padding: 10px 16px;
  height: 44px;
  font-size: 14px;
  border-radius: 8px;
  white-space: nowrap;
  cursor: pointer;
}

/* ACTIVE BUTTON */
.temp-btn {
  background: #00022b;
  color: #fff;
  border: none;
}

/* NORMAL BUTTON */
.whiteBtn {
  background: #fff;
  border: 1.5px solid #c8c5d0;
  color: #333;
}

.custom-dropdown {
  width: 100%;
  height: 56px;
  border: none;
  border-radius: 8px;
  background: rgba(246, 241, 255, 1);
  padding: 0 16px;
  font-size: 14px;
  color: #555;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.custom-dropdown:focus,
.custom-dropdown:active {
  outline: none;
  box-shadow: none;
  background: rgba(246, 241, 255, 1);
}

.custom-dropdown::after {
  margin-left: auto;
}

.dropdown-menu {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0d9f5;
  box-shadow: 0px 8px 24px rgba(25, 21, 67, 0.08);
  padding: 8px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 16px;
  color: #333;
}

.dropdown-item:hover {
  background: rgba(246, 241, 255, 1);
  color: #00022b;
}

.value-input {
  width: 70px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(246, 241, 255, 1);
  padding-left: 8px;
}

.small-dropdown {
  width: 267.15px;
  height: 48px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: rgba(246, 241, 255, 1);
  padding: 0 16px;
  font-size: 14px;
  color: #555;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.config-card-sub-container {
  margin-left: 50px;
}

/* =========================
   YELLOW BUTTON
========================= */

.yallow_btn {
  width: 268px;
  max-width: 100%;
  height: 56px;

  border: none;
  border-radius: 8px;

  background: #ffb800;
  color: #00022b;

  font-weight: 600;
  font-size: 14px;

  padding: 0 20px;

  transition: 0.3s ease;
}

.last-container-config {
  width: 1184px;
  height: 120px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.config-box {
  width: 373px;
  height: 112px;
  padding: 24px;
  background: #f0ebff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.config-box-parent1 {
  width: 235px;
  height: 36px;
}
.config-box-parent2 {
  width: 226px;
  height: 52px;
}
.config-box-parent3 {
  width: 207px;
  height: 52px;
}

.config-box h5 {
  font-size: 13px;
  font-weight: 700;
}

.config-box small {
  width: 226px;
  height: 32px;
  color: #47464f;
  font-size: 12px;
}

.circal-icon {
  width: 64px;
  height: 64px;
  border-radius: 64px;
  background-color: #ffffff;
  color: #00022b;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   RESPONSIVE
   ========================== */

/* Tablets (max 1024px) */
@media (max-width: 1024px) {
  .config-header-container,
  .main-config-container {
    width: 100%;
    height: auto;
    padding: 20px;
  }

  .main-config-container {
    flex-direction: column;
    gap: 30px;
  }

  .temp-control-btns button {
    flex: 0 0 auto;
    height: 40px;
    font-size: 13px;
    padding: 8px 14px;
  }

  .config-card-sub-container {
    margin-top: 30px;
  }

  .last-container-config {
    width: 100%;
    flex-direction: column;
    height: auto;
    align-items: stretch;
    gap: 16px;
  }

  .config-box {
    width: 100%;
  }

  .yallow_btn {
    width: 240px;
    height: 52px;
    font-size: 13px;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  h2 {
    font-size: 24px;
    text-align: center;
  }

  p {
    font-size: 14px;
    text-align: center;
  }

  .config-container {
    padding: 24px 16px;
  }

  .config-header-container {
    width: 100%;
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .cofig-m-heading {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .message-con {
    margin: 8px auto 0;
    width: 100%;
    height: auto;
    font-size: 12px;
    padding: 8px 12px;
  }

  .config-card-container {
    padding: 20px 14px;
    border-radius: 10px;
  }

  .main-config-container {
    padding: 16px;
    gap: 20px;
  }

  .temp-control-con {
    gap: 8px;
    margin-bottom: 8px;
  }

  .index-no {
    width: 26px;
    height: 26px;
    font-size: 12px;
    flex-shrink: 0;
  }

  h5 {
    font-size: 13px;
  }

  .temp-control-btns button {
    flex: 0 0 auto;
    height: 36px;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
  }

  .small-dropdown {
    width: 100%;
  }

  .yallow_btn {
    width: 100%;
  }

  .config-card-sub-container {
    margin-left: 0;
  }

  .last-container-config {
    width: 100%;
    flex-direction: column;
    height: auto;
    align-items: stretch;
    /* gap: 16px !important; */
  }

  .config-box {
    width: 100%;
    height: auto;
  }

  .config-box-parent1,
  .config-box-parent2,
  .config-box-parent3 {
    width: 240px;
    height: auto;
  }

  .yallow_btn {
    width: 100%;
    height: 50px;
    margin-top: 16px;
    font-size: 13px;
  }

  .d-lg-flex.justify-content-end {
    justify-content: center !important;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  h2 {
    font-size: 20px;
  }

  .temp-control-btns button {
    flex: 0 0 auto;
    height: 34px;
    font-size: 12px;
  }

  .message-con {
    font-size: 11px;
  }

  .last-container-config {
    width: 100%;
    flex-direction: column;
    height: auto;
    align-items: stretch;
    gap: 16px;
  }

  .yallow_btn {
    height: 46px;
    font-size: 12px;
    border-radius: 6px;
  }
}
/* =========================
   ABOUT PAGE
========================= */

/* =========================
   About Banner Section
========================= */

.about-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* Background Image */
.about-container img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  display: block;
}

/* Dark Overlay */
.about-container::before {
  height: 660px;
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 2, 43, 0.75) 0%,
    rgba(0, 2, 43, 0.35) 45%,
    rgba(0, 2, 43, 0.1) 100%
  );
  z-index: 1;
}

/* =========================
   Content Box
========================= */

.about-container .content {
  position: absolute;
  left: 0;
  top: 70%;
  transform: translateY(-50%);
  z-index: 2;

  width: 813px;
  height: 466px;
  max-width: 813px;

  padding: 50px 40px;

  color: #fff;

  background: linear-gradient(
    100deg,
    rgba(0, 2, 43, 0.95) 30%,
    rgba(18, 26, 113, 0.7) 100%
  );

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;

  border-radius: 0 12px 12px 0;
}

/* Small Text */
.about-container .content small {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #d6d6d6;
}

/* Heading */
.about-container .heading {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 25px;
}

/* Paragraph */
.about-container .text {
  font-size: 24px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 0;
}

/* =========================
   Large Laptop
========================= */

@media (max-width: 1200px) {
  .about-container .content {
    width: 700px;
    height: auto;
    max-width: 90%;
    padding: 40px 35px;
  }

  .about-container .text {
    font-size: 22px;
    max-width: 100%;
  }
}

/* =========================
   Tablet Responsive
========================= */

@media (max-width: 992px) {
  .about-container {
    min-height: 760px;
  }

  .about-container img,
  .about-container::before {
    height: 760px;
  }

  .about-container .content {
    width: 85%;
    max-width: 85%;
    height: auto;

    top: 68%;

    padding: 40px 30px;
  }

  .about-container .heading {
    font-size: 64px;
  }

  .about-container .text {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* =========================
   Mobile Responsive
========================= */

@media (max-width: 576px) {
  .about-container {
    min-height: 700px;
  }

  .about-container img,
  .about-container::before {
    height: 700px;
  }

  .about-container::before {
    background: linear-gradient(
      180deg,
      rgba(0, 2, 43, 0.8) 0%,
      rgba(0, 2, 43, 0.5) 50%,
      rgba(0, 2, 43, 0.85) 100%
    );
  }

  .about-container .content {
    right: 15px;
    top: auto;
    bottom: 25px;
    transform: none;

    width: auto;
    max-width: calc(100% - 30px);
    height: auto;

    padding: 25px 20px;

    border-width: 3px;
    border-left: 0;
  }

  .about-container .content small {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  .about-container .heading {
    font-size: 42px;
    margin-bottom: 18px;
  }

  .about-container .text {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
  }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 400px) {
  .about-container .content {
    padding: 20px 16px;
  }

  .about-container .heading {
    font-size: 34px;
  }

  .about-container .text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =========================
   WHO WE WORK WITH
========================= */

.work-section {
  width: 100%;
  padding: 80px 20px;
  background: #f8f8f8;
}

/* =========================
   Header
========================= */

.work-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.work-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #05072c;
  margin: 0;
  white-space: nowrap;
}

.work-header .line {
  flex: 1;
  height: 1px;
  background: #d8d8d8;
}

.work-header span {
  font-size: 10px;
  letter-spacing: 2px;
  color: #777;
  white-space: nowrap;
}

/* =========================
   Grid
========================= */

.work-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

/* =========================
   Card
========================= */

.work-card {
  min-height: 260px;
  padding: 35px 28px;

  background: #fff;

  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;

  transition: 0.3s ease;
}

.work-card:hover {
  background: #fafafa;
}

.work-card .icon {
  font-size: 22px;
  color: #00707b;
  margin-bottom: 35px;
}

.work-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #12153d;
  margin-bottom: 18px;
}

.work-card p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

/* =========================
   Large Laptop
========================= */

@media (max-width: 1400px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px) {
  .work-section {
    padding: 60px 20px;
  }

  .work-header {
    flex-wrap: wrap;
    gap: 15px;
  }

  .work-header h2 {
    font-size: 38px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .work-card h4 {
    font-size: 24px;
  }

  .work-card p {
    font-size: 16px;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 576px) {
  .work-section {
    padding: 50px 15px;
  }

  .work-header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 35px;
  }

  .work-header h2 {
    font-size: 30px;
  }

  .work-header .line {
    display: none;
  }

  .work-header span {
    font-size: 9px;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card {
    padding: 28px 20px;
  }

  .work-card .icon {
    margin-bottom: 25px;
  }

  .work-card h4 {
    font-size: 22px;
    margin-bottom: 14px;
  }

  .work-card p {
    font-size: 15px;
    line-height: 1.7;
  }
}
/* =========================
   VISION SECTION
========================= */

.vision-section {
  width: 100%;
  height: 665px;
  background-color: #041266;
  padding: 100px 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.vision-wrapper {
  width: 1184px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  gap: 70px;
  padding: 0 20px;
}

/* =========================
   LEFT CONTENT
========================= */

.vision-left {
  width: 544px;
  height: 448px;
  flex-shrink: 0;
}

.vision-left small {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  font-weight: 600;
  color: #00d2ff;
  margin-bottom: 35px;
}

.vision-left .heading {
  width: 544px;
  height: 255px;
}

.vision-left h2 {
  font-size: 72px;
  font-weight: 200;
  color: #ffffff;
  line-height: 1.05;
}

.vision-left h2 span {
  color: #00d2ff;
  font-weight: 400;
}

.vision-left p {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 40px;
  margin-bottom: 0;
}

/* =========================
   RIGHT GRID
========================= */

.vision-right {
  width: 544px;
  height: 328px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-shrink: 0;
}

.vision-card {
  min-height: 220px;
  padding: 40px 35px;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: 0.3s ease;
}

.vision-card.active {
  border-left: 3px solid #00d2ff;
}

.vision-card h5 {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: #00d2ff;
  margin-bottom: 28px;
}

.vision-card p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 0;
}

/* =========================
   Large Laptop
========================= */

@media (max-width: 1200px) {
  .vision-section {
    height: auto;
    padding: 80px 0;
  }

  .vision-wrapper {
    width: 100%;
    gap: 40px;
  }

  .vision-left,
  .vision-right {
    width: 50%;
  }

  .vision-left .heading {
    width: 100%;
    height: auto;
  }

  .vision-left h2 {
    font-size: 60px;
  }
}

/* =========================
   Tablet
========================= */

@media (max-width: 992px) {
  .vision-section {
    height: auto;
    padding: 70px 0;
  }

  .vision-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }

  .vision-left,
  .vision-right {
    width: 100%;
    height: auto;
  }

  .vision-left .heading {
    width: 100%;
    height: auto;
  }

  .vision-left h2 {
    font-size: 54px;
  }

  .vision-left p {
    font-size: 18px;
    max-width: 100%;
  }

  .vision-right {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-card {
    min-height: 190px;
    padding: 30px 24px;
  }

  .vision-card p {
    font-size: 16px;
  }
}

/* =========================
   Mobile
========================= */

@media (max-width: 576px) {
  .vision-section {
    height: auto;
    padding: 50px 0;
  }

  .vision-wrapper {
    gap: 35px;
    padding: 0 15px;
  }

  .vision-left {
    width: 100%;
  }

  .vision-left small {
    font-size: 11px;
    letter-spacing: 3px;
    margin-bottom: 18px;
  }

  .vision-left .heading {
    width: 100%;
  }

  .vision-left h2 {
    font-size: 42px;
    line-height: 1.15;
  }

  .vision-left p {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 25px;
  }

  .vision-right {
    width: 100%;
    height: auto;
    grid-template-columns: 1fr;
  }

  .vision-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .vision-card h5 {
    margin-bottom: 16px;
  }

  .vision-card p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 400px) {
  .vision-left h2 {
    font-size: 34px;
  }

  .vision-left p {
    font-size: 14px;
  }

  .vision-card {
    padding: 20px 16px;
  }
}

/* CAPABILITIES Section */
/* =========================
   IMAGE
========================= */
.image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  max-width: 512px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  margin: auto;
  background: linear-gradient(100.4deg, rgba(#00000040), rgba(#00000040));
  background-blend-mode: saturation;
  border-radius: 10px;
}

/* =========================
   TAG
========================= */
.tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8a94a6;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* =========================
   TITLE
========================= */
.title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #0a0f2c;
  margin-bottom: 30px;
}

/* =========================
   FEATURE ITEM
========================= */
.feature-item {
  width: 100%;
  max-width: 552px;
  min-height: 88px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 25px;
}

.num {
  min-width: 54px;
  font-size: 48px;
  line-height: 1;
  color: #00022b33;
  font-weight: 700;
}

.feature-item h6 {
  font-size: 20px;
  color: #00022b;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item .feature-content-container {
  width: 100%;
  max-width: 412px;
}

.feature-item p {
  font-size: 16px;
  color: #47464f;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
  background: #e7e4f5;
  height: 408px;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-title {
  font-size: 45px;
  font-weight: 700;
  color: #00022b;
  height: 120px;
  max-width: 804px;
  margin: auto;
  line-height: 1.4;
}

/* =========================
   BUTTON HOVER
========================= */
.btn {
  transition: 0.2s ease;
  width: 304px;
  height: 64px;
  border-radius: 9px;
  background-color: #00bdb6;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.btn2 {
  width: 227px;
  max-width: 768px;
  color: #00022b;
  text-decoration: none;
  padding-top: 15px;
  height: 64px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #c8c5d0;
}

.btn:hover {
  transform: translateY(-2px);
}
/* =========================
   LARGE TABLET
========================= */
@media (max-width: 992px) {
  .title {
    font-size: 38px;
    text-align: center;
  }

  .tag {
    text-align: center;
  }

  .image-wrapper {
    margin-bottom: 40px;
  }

  .feature-item {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-content-container {
    max-width: 100%;
  }

  .cta-section {
    height: auto;
    padding: 70px 30px;
    text-align: center;
  }

  .cta-title {
    font-size: 36px;
    height: auto;
    max-width: 100%;
  }

  .btn,
  .btn2 {
    width: 100%;
    max-width: 300px;
  }
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .title {
    font-size: 32px;
    line-height: 1.2;
    text-align: center;
  }

  .tag {
    text-align: center;
  }

  .feature-item {
    gap: 18px;
    margin-bottom: 24px;
  }

  .num {
    font-size: 38px;
    min-width: 42px;
  }

  .feature-item h6 {
    font-size: 18px;
  }

  .feature-item p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
  }

  .cta-section {
    height: auto;
    padding: 60px 20px;
  }

  .cta-title {
    font-size: 30px;
    height: auto;
    line-height: 1.4;
  }

  .btn,
  .btn2 {
    width: 100%;
    max-width: 280px;
    height: 58px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 576px) {
  .title {
    font-size: 28px;
    margin-bottom: 22px;
    text-align: center;
  }

  .tag {
    font-size: 11px;
    text-align: center;
  }

  .image-wrapper img {
    max-width: 100%;
    border-radius: 8px;
  }

  .feature-item {
    gap: 14px;
    margin-bottom: 20px;
  }

  .num {
    font-size: 30px;
    min-width: 30px;
  }

  .feature-item h6 {
    font-size: 16px;
  }

  .feature-item p {
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
  }

  .cta-section {
    padding: 50px 15px;
    height: auto;
  }

  .cta-title {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;
  }

  .btn,
  .btn2 {
    width: 100%;
    max-width: 100%;
    font-size: 13px;
    height: 54px;
  }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 400px) {
  .title {
    font-size: 24px;
  }

  .num {
    font-size: 24px;
    min-width: 24px;
  }

  .feature-item {
    gap: 10px;
  }

  .feature-item h6 {
    font-size: 15px;
  }

  .feature-item p {
    font-size: 13px;
    line-height: 1.5;
  }

  .cta-title {
    font-size: 20px;
  }

  .btn,
  .btn2 {
    height: 50px;
    font-size: 12px;
  }
}
