/* ============================= */
/* Banner Section Styling */
/* ============================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.banner-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* background: linear-gradient(135deg, #1f5f4a, #7c19d0); */
  position: relative;
  overflow: hidden;
  color: #232323;
}

*{
    font-family: "Poppins", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Space Grotesk", sans-serif;
}

/* Subtle pattern overlay */
.banner-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
}

/* Content Animation */
.banner-content {
  animation: fadeSlide 1.2s ease forwards;
  opacity: 0;
  transform: translateY(40px);
}

@keyframes fadeSlide {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading */
.main-heading {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}

.main-heading span {
  font-weight: 600;
  border-bottom: 4px solid #2788D8;
  display: inline-block;
  padding-bottom: 8px;
  color: #D87727;
}

/* Paragraph */
.sub-text {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 6px;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.feature-list li {
  margin-bottom: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.feature-list li i {
  background: #8e8e8e;
  color: #ffffff;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s;
}
.highlight .feature-list li i {
     background: #01ff00;
 
 }
/* Hover Effect on List */
.feature-list li:hover {
  transform: translateX(10px);
  color: #d87727;
}

.feature-list li:hover i {
  background: #D87727;
  transform: rotate(360deg);
}

/* Button */
.read-btn {
    background: #2788D8;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    display: inline-block;
    text-decoration:none;
}

.read-btn:hover {
  background: #D87727;
  color: #2788d8;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Image */
.banner-image {
  /* max-width: 90%; */
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Responsive */
@media (max-width: 991px) {
  .main-heading {
    font-size: 38px;
  }

  .banner-section {
    text-align: center;
    padding: 60px 0;
  }

  .feature-list li {
    justify-content: center;
  }

  .banner-image {
    margin-top: 40px;
  }
}
/* ========================= */
/* Rotating Feature Bar */
/* ========================= */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.feature-bar {
  color: #fff;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  background: #76bcf5;
  background: linear-gradient(90deg, rgba(118, 188, 245, 0) 0%, rgba(47, 141, 219, 0.57) 15%, rgb(24 102 165) 30%, rgb(17 88 146) 70%, rgba(39, 136, 216, 0.59) 85%, rgba(10, 93, 161, 0) 99%);
}

.feature-bar::before {content: "";height: 100vh;width: 140px;background: #ffffff;background: linear-gradient(90deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.59) 80%, rgba(255, 255, 255, 0) 100%);position: absolute;left: 0;top: 0;z-index: 99;}


.feature-bar::after {content: "";height: 100vh;width: 140px;position: absolute;right: 0;top: 0;z-index: 99; background: #ffffff;
background: linear-gradient(280deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.59) 80%, rgba(255, 255, 255, 0) 100%);}



.feature-wrapper {
  width: 100%;
  overflow: hidden;
}
.feature-wrapper img {     width: 200px; object-fit: cover;}

.feature-track {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}

.feature-bar:hover .feature-track {
  animation-play-state: paused;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  transition: 0.3s ease;
}

.feature-item i {
  font-size: 18px;
  color: #d87727;
  transition: 0.3s;
}

/* Hover effect */
.feature-item:hover {
  color: #d87727;
  transform: scale(1.05);
}

.feature-item:hover i {
  transform: rotate(15deg);
}

/* Animation */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item {
    padding: 0 20px;
    font-size: 14px;
  }
  .feature-bar::before { display: none; }
  .feature-bar::after { display: none;  }
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #1f5f4a;
}

/* Section */
.category-section {
  padding: 100px 0;
}

/* Card */
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  cursor: pointer;
  /* padding: 10px; */
}

/* Image */
.category-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: 0.6s ease;
  border-radius: 25px;
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(10 93 162), rgb(39 135 215 / 0%));
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 25px;
  transition: 0.5s ease;
}

/* Default Visible Items */
.overlay h3 {
  font-size: 25px;
  margin-bottom: 10px;
  transform: translateY(64px);
  transition: 0.4s ease;
  color: #fff;
}

.overlay a {
  color: #d87727;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  position: relative;
  transition: 0.4s ease;
}

/* Paragraph hidden by default */
.overlay p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #ddd;
  opacity: 0;
  transform: translateY(64px);
  transition: 0.4s ease;
}

/* Underline animation */
.overlay a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #2788D8;
  left: 0;
  bottom: -4px;
  transition: 0.4s ease;
}

.overlay a:hover::after {
  width: 100%;
}

/* Hover Effects */
.category-card:hover img {
  transform: scale(1.1);
}

.category-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

/* On hover move heading slightly up */
.category-card:hover .overlay h3 {
  transform: translateY(-10px);
}

/* Show paragraph smoothly */
.category-card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* Slight movement for button */
.category-card:hover .overlay a {
  transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
  .category-card img {
    height: 350px;
  }
}
/* Section Background */
.benefits-section {
    position: relative;
    padding: 50px 0;
    color: #fff;
    overflow: hidden;

    background: linear-gradient(
        154deg,
        rgba(118, 188, 245, 1) 0%,
        rgba(39, 136, 216, 1) 41%,
        rgba(10, 93, 161, 1) 99%
    );
}

/* REPEAT TEXTURE OVERLAY */
.benefits-section::before {
    content: "";
    position: absolute;
    inset: 0;
    
    background-image:
        radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);

    background-size: 4px 4px, 6px 6px;
    background-position: 0 0, 2px 2px;

    pointer-events: none;
}

/* Layout */
.container {
  /* display: flex; */
  /* align-items: center; */
  /* gap: 60px; */
  /* flex-wrap: wrap; */
}

/* Image */
.benefit-image {
  flex: 1;
  text-align: center;
  animation: slideLeft 1.2s ease forwards;
}

.benefit-image img {
  max-width: 400px;
  width: 100%;
  transition: transform 0.5s ease;
  border-radius: 18px;
  background: #ffffff24;
  padding: 15px;
}

.benefit-image img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* Content */
.benefit-content {
  flex: 1.3;
  animation: slideRight 1.2s ease forwards;
}

.section-subtitle {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffffff;
}

.section-title {
  font-size: 36px;
  margin-bottom: 7px;
  color: #fff;
  font-weight: 700;
}

/* Benefit Cards */
.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-card {
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) {/* animation-delay: 0.6s; */}
.benefit-card:nth-child(4) { animation-delay: 0.8s; }
.benefit-card:nth-child(5) { animation-delay: 1s; }
.benefit-card:nth-child(6) { animation-delay: 1.2s; }

.benefit-card h3 {
     font-size: 18px;
    margin-bottom: 10px;
    color: #cba117;
    font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: #ddd;
}

/* Hover Effect */
.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 18px 14px rgb(255 166 71 / 6%);
}

/* Animations */
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .benefit-content {
    margin-top: 40px;
  }
}
.compare-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  font-size: 16px;
}

.compare-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 60px;
}

.compare-container {
  max-width: 1200px;
  margin: auto;
}

/* PERFECT GRID ALIGNMENT */
.comparison-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
}

/* Header */
.table-header {
  padding: 25px;
  font-weight: 600;
  text-align: center;
  background: rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Cells */
.comparison-table > div {
  padding: 22px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Feature column left align */
.feature {
  text-align: left !important;
  padding-left: 30px !important;
  background: rgba(255,255,255,0.02);
}

/* Highlight Column (Theme Matching Orange) */
.highlight-col {
  background: linear-gradient(180deg, #2788D8, #145b95);
  color: #fff;
}

/* Icons */
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  color: #2788D8;
  font-weight: bold;
}

.cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #aaa;
}

/* Hover effect */
.comparison-table > div:hover {
  background: rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

/* Responsive */
@media (max-width: 992px) {
  .comparison-table {
    grid-template-columns: 1fr;
  }

  .table-header {
    text-align: left;
  }

  .feature {
    text-align: left !important;
  }
}
.steps-section {
  padding: 100px 8%;
  color: #fff;
  position: relative;
  background: linear-gradient(154deg, rgba(118, 188, 245, 1) 0%, rgba(39, 136, 216, 1) 41%, rgba(10, 93, 161, 1) 99%);
}
.steps-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 4px 4px, 6px 6px;
    background-position: 0 0, 2px 2px;
    pointer-events: none;
}



.steps-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 70px;
}

/* Wrapper */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* Subtle connecting line */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 90px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, transparent, #d69a07, transparent);
  z-index: 0;
}

/* Card */
.step-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
  z-index: 1;
  text-align: center;
}

/* Hover */
.step-card:hover {
  transform: translateY(-12px);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 50px rgba(255, 77, 0, 0.15);
}

/* Image */
.step-image {
  position: relative;
  margin-bottom: 20px;
}

.step-image img {
     width: auto;
    height: 70px;
  object-fit: cover;
  border-radius: 16px;
}

/* Step badge */
.step-badge {
  position: relative;
  margin: auto;
  bottom: -12px;
  left: 0;
  transform: translateX(-50%);
  background: #d69a07;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* Title */
.step-card h3 {
     margin-top: 25px;
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
}

/* Text */
.step-card p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-wrapper::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
  }
}

.science-section {
  padding: 100px 8%;
  background: #f8f9fb;
  position: relative;
  overflow: hidden;
}

.science-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Label */
.section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #2788D8;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

/* Heading */
.science-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #111;
}

/* Paragraph */
.science-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
  font-size: 15px;
}

/* Highlight text */
.highlight-text {
  font-weight: 600;
  color: #222;
}

/* Certified list */
.certified-list {
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 25px;
}

.certified-list div {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  transition: 0.3s ease;
}

.certified-list span {
  background: #2788D8;
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 12px;
}

/* Hover on list */
.certified-list div:hover {
  transform: translateX(6px);
  color: #2788D8;
}

/* Button (Banner Style) */
.primary-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #2788D8;
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.primary-btn:hover {
  background: #e64300;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255,77,0,0.25);
}

/* Image */
.science-image {
  position: relative;
}

.science-image img {
  width: 100%;
  border-radius: 25px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
  transition: 0.5s ease;
}

.science-image:hover img {
  transform: scale(1.04);
}

/* Subtle Fade Animation */
.science-content,
.science-image {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.science-image {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.inner-block-image image{
        max-width: 650px;
}

/* Responsive */
@media (max-width: 992px) {
  .science-container {
    grid-template-columns: 1fr;
  }

  .science-image {
    margin-top: 40px;
  }

  .certified-list {
    grid-template-columns: 1fr;
  }
}

.ingredients-section {
  background: #f2eee9;
  padding: 90px 0;
}

.section-title-2 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c2c2c;
  margin-bottom: 10px;
}

/* Card */
.ingredient-card {
  background: #ffffff;
  padding: 40px 25px;
  text-align: center;
  border-radius: 8px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* Circular Image */
.ingredient-img {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
}

.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.ingredient-card:hover .ingredient-img img {
  transform: scale(1.08);
}

/* Title */
.ingredient-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

/* Text */
.ingredient-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

.footer color-scheme-3{
    font-size: 15px;
}

/* new_hero_section=== */


/* HERO SECTION */
.hero-section{
    padding:60px 0;
}

/* Left Card */
.hero-card{
    background:#e9e9e9;
    border-radius:30px;
    padding: 30px;
    animation: slideLeft 1s ease forwards;
}

.small-text{
    font-weight:600;
    letter-spacing:1px;
}

.hero-title{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0 30px;
}

.hero-btn{
    background:#f1893c;
    color:#fff;
    padding:15px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.hero-btn:hover{
    background:#e06f1e;
}

/* Right Big Image */
.right-image{
    border-radius:30px;
    position:sticky;
    top:40px;
    overflow:hidden;
    animation: slideRight 1s ease forwards;
    height: 100vh;
    text-align: center;
    background: #76bcf5;
    background: linear-gradient(154deg, rgba(118, 188, 245, 1) 0%, rgba(39, 136, 216, 1) 41%, rgba(10, 93, 161, 1) 99%);
}

.right-image img{
    width:100%;
}

/* Bottom Small Cards */
.small-card{
    border-radius:25px;
    overflow:hidden;
    height:260px;
}

.small-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s;
}
.small-card {
    border-radius:25px;
    overflow:hidden;
    height:260px;
    position:relative;
}

.fade-slider img {
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1s ease-in-out;
    left: 0;
}

.fade-slider img.active {
    opacity:1;
}


/* Animations */
@keyframes slideLeft{
    from{opacity:0; transform:translateX(-60px);}
    to{opacity:1; transform:translateX(0);}
}

@keyframes slideRight{
    from{opacity:0; transform:translateX(60px);}
    to{opacity:1; transform:translateX(0);}
}

/* Responsive */
@media(max-width:991px){
    .hero-title{
        font-size:38px;
    }
    .hero-card{
        padding:40px;
    }
}

/* carowsel_css */


.product-section {
    padding: 60px 0;
    /* background: #f7f7fb; */
}

.section-header h2 {
    margin-bottom: 30px;
}

.carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 12s linear infinite;
}

.card {
    min-width: calc(100% / 6 - -100px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.card img {
    width: 100%;
    border-radius: 8px;
}

.card h3 {
    margin: 15px 0 5px;
}
/* STOP ON HOVER */
.carousel:hover .carousel-track {
    animation-play-state: paused;
}
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.benefit-card {
  /* background: #2e2e2e; */
  /* border: none; */
  /* padding: 30px; */
  border-radius: 10px;
  color: #fff;
}

.benefit-item img {
    width: 48px; height: 48px; object-fit: cover;
}

.benefit-icon {
  font-size: 32px;
  color: #ffffff;
  min-width: 40px;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 16px;
  color: #dcdcdc;
  line-height: 1.6;
}

/* about_us_sec== */
.about-section{
    padding:100px 0;
}

.small-title{
    font-size:16px;
    color:#555;
    margin-bottom:10px;
}

.main-title{
    font-size:60px;
    font-weight:800;
    line-height:1.1;
}

.highlight{
    position:relative;
    display:inline-block;
}

.highlight::after{
    content:"";
    position:absolute;
    left:0;
    bottom:8px;
    width:100%;
    height:10px;
    background: #d87727;
    z-index:-1;
}

.about-text{
    color:#555;
    font-size:16px;
    line-height:1.7;
    margin:25px 0;
}

.about-btn{
    background:#2788D8;
    padding:14px 30px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    color: #ffffff;
    display:inline-block;
}

.about-btn:hover{
    background:#b4ea00;
}

.rating-box{
    margin-top:50px;
    border-top:1px solid #ddd;
    padding-top:25px;
}

.rating-number{
    font-size:48px;
    font-weight:700;
}

.stars{
    color:#000;
    font-size:20px;
}

/* Yellow Image Animation */
.yellow-img{
    position:absolute;
    bottom: -98px;
    right: 19px;
    width:280px;
    animation: floatX 6s ease-in-out infinite alternate;
    border-radius: 10px;
}

@keyframes floatX{
    0%{ transform: translateX(-20px); }
    100%{ transform: translateX(20px); }
}

.image-wrapper{
    position:relative;
}

.main-img{
    width:100%;
    border-radius:8px;
}

@media(max-width:991px){
    .main-title{
        font-size:38px;
    }
    .yellow-img{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }
}

/* banifit_sec */
.trends-section .section-title { color: #2788d8;}
.trends-section{
    padding:80px 0;
}

.section-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    color: #ffffff;
}

.read-btn{
    background: #2788d8;
    padding:14px 28px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    color: #ffffff;
    display:inline-block;
}

.read-btn:hover{
    background:#b4ea00;
    color:#000;
}

.blog-row{
    padding: 40px 15px;
    border-top:1px solid #ddd;
    border-right: 1px solid #ddd;
        transition: transform 0.5s ease;
}

.blog-row:hover img {
    transform: scale(1.05) rotate(-2deg);
}
.blog-row:last-child{
    border-bottom:1px solid #ddd;
}

.author-name{
    font-weight:600;
    color: #2788d8;
}

.blog-title{
    font-size: 15px;
    /* font-weight:600; */
    line-height: 1.2;
}

.category-badge{
    background:#e6f5b5;
    color:#000;
    padding:6px 14px;
    border-radius:8px;
    font-size:14px;
    display:inline-block;
    margin-top:10px;
}

.blog-img{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:6px;
    background: #2788d81f;
    padding: 5px;
}

@media(max-width:991px){
    .section-title{
        font-size:40px;
    }
    .blog-title{
        font-size:22px;
        margin-top:15px;
    }
}
.trends-section .section-title { color: #2788D8; }

/* step_to_step=== */
.pain-steps-section {
  padding: 60px 20px;
  background: #f4f4f4;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.pain-steps-section .section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* Steps Header */
.steps-header {
  display: flex;
}

.step-box {
  flex: 1;
  padding: 25px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  position: relative;
}

.step-box i {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

/* Arrow Shape */
.step-box::after {
  content: "";
  position: absolute;
  right: -29px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 30px solid;
  z-index: 2;
}

/* Your Blue Colors */
.step1 {
  background: #2788d8;
}
.step1::after {
  border-left-color: #2788d8;
}

.step2 {
  background: #1a6aac;
}
.step2::after {
  border-left-color: #1a6aac;
}

.step3 {
  background: #0d497a;
}
.step3::after {
  display: none;
}

/* Content Area */
.steps-content {
  display: flex;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.step-content {
  flex: 1;
  padding: 40px 30px;
  border-right: 1px solid #eee;
  text-align: center;
  box-shadow: 15px -1px 20px 0px #1a6aac57;
}

.step-content:last-child {
  border-right: none;
}

/* Icon Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  background: #2788d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle i {
  color: #fff;
  font-size: 28px;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-header,
  .steps-content {
    flex-direction: column;
  }

  .step-box::after {
    display: none;
  }

  .step-content {
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .step-content:last-child {
    border-bottom: none;
  }
}
.banner-content h1 {
    font-size: 28px;}
.banner-content {
  padding: 0;
    background: transparent;
}

/* table_style==== */

.comparison-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(154deg, rgb(63 70 75) 0%, rgb(11 41 66) 41%, rgb(1 9 15) 99%);
  position: relative;
}

.comparison-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 4px 4px, 6px 6px;
    background-position: 0 0, 2px 2px;
    pointer-events: none;
}

.comparison-section h2 {
  font-size: 42px;
  margin-bottom: 50px;
  font-weight: 700;
  color: #fff;
}

.cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.product-card {
  width: 320px;
  padding: 18px 15px;
  transition: 0.4s ease;
/* From https: //css.glass */
  background: rgb(255 255 255 / 20%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card h3 {
  margin-bottom: 25px;
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
}

.cards-wrapper .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cards-wrapper .feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 15px;
  color: #fff;
  font-weight: 600;
}

.cards-wrapper .feature-list li:before {
    content: "";
    position: absolute;
    height: 2px;
    width: 177px;
    background: red;
    left: 42px;
    right: 0;
    rotate: 357deg;
}
.cards-wrapper .highlight .feature-list li:before {   background: transparent; }

.cards-wrapper .feature-list li:last-child {
  border-bottom: none;
}

.check {
  color: #00ffae;
}

.cross {
  color: #ff4d6d;
}

/* Highlight Main Product */
.cards-wrapper .highlight {
  background: linear-gradient(180deg, #1e90ff, #0052d4);
  box-shadow: 0 20px 50px rgba(0, 82, 212, 0.6);
  transform: scale(1.05);
}

.highlight h3 {
  font-size: 24px;
  color: #ffab65;
  font-weight: bolder;
}

@media(max-width: 768px){
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

/* ---new_css_healthcare--++ */

/* Section */
.healthcare-section{
  padding:100px 20px;
  text-align:center;
  position:relative;
}

.healthcare-section h2{
  font-size:48px;
  font-weight:700;
  color:#0b1b5c;
  line-height:1.2;
  margin-bottom:80px;
}

/* Grid */
.feature-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
  position:relative;
}

/* Cards */
.feature-card{
  background:#eef0f7;
  padding:40px;
  border-radius:12px;
  text-align:left;
  transition:0.4s ease;
  position:relative;
  background: linear-gradient(154deg, rgb(0 131 237) 0%, rgb(0 95 174) 41%, rgb(0 48 89) 99%);
}
.feature-card::before {
        content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 4px 4px, 6px 6px;
    background-position: 0 0, 2px 2px;
    pointer-events: none;
}

.feature-card:hover{
  transform:translateY(-8px);
  box-shadow: 0 15px 40px rgb(0 73 134);
}

.feature-icon{
  width:60px;
  height:60px;
  background:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
  transition:0.6s ease;
}

.feature-icon i{
  font-size:24px;
  color: #d87727;
}

/* Rotate icon on hover */
.feature-card:hover .feature-icon{
  transform:rotate(360deg);
}

.feature-card h4{
  font-size:20px;
  color: #ffffff;
  margin-bottom:15px;
}

.feature-card p{
  font-size:15px;
  color: #ffffff;
  line-height:1.7;
  margin-bottom:20px;
}

.learn-more{
  font-size:14px;
  font-weight:600;
  color: #d87727;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.learn-more i{
  font-size:12px;
}

/* Center Circle */
.center-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:130px;
  height:130px;
  background:#eef0f7;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  animation:spin 12s linear infinite;
}

.center-icon i{
  font-size:50px;
  color: #003e72;
}

/* Auto rotate animation */
@keyframes spin{
  from{ transform:translate(-50%,-50%) rotate(0deg); }
  to{ transform:translate(-50%,-50%) rotate(360deg); }
}

/* Responsive */
@media(max-width:900px){
  .feature-grid{
    grid-template-columns:1fr;
  }
  .center-icon{
    display:none;
  }
}


/* Section wrapper */
.soft-section{
  width:100%;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Main Circle */
.soft-circle{
  /* width:280px; */
  /* height:280px; */
  border-radius:50%;
  background: #d87727;

  /* Neumorphism effect */
  box-shadow: 20px 20px 40px rgb(0 0 0 / 64%), -20px -20px 40px rgb(36 20 20 / 50%);
  /* position:relative; */
}

/* Optional subtle inner highlight */
.soft-circle::after{
  content:"";
  position:absolute;
  top: 0;
  left: 0;
  width: 130px;
  height: 130px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 70%);
  pointer-events:none;
}
