 :root {
    --blue-primary: #ef7f1a;  
  }

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f9fbff;
  color: #222831;
  line-height: 1.5;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Focus-visible outlines for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Utilities */
.container {
  max-width: 1140px;
  padding: 0 1rem;
  margin: 0 auto;
}

.flex {
  display: flex;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Shared button styles */
.button,
.get-quote-btn,
.learn-more-btn,
.discover-btn {
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.button,
.get-quote-btn {
  background-color: #f0801a;
  color: white;
  padding: 0.5rem 1.4rem;
  font-size: 1rem;
}

.button:hover, .button:focus, .get-quote-btn:hover, .get-quote-btn:focus {
    background-color: #bd7d43;
    outline: none;
    color: #fff;
}
.footer-box p a:hover{
  color: #f0801a;
}

.learn-more-btn,
.discover-btn {
  background-color: #f0801a;
  color: white;
  padding: 0.55rem 1.4rem;
  font-size: 1rem;
}

.learn-more-btn:hover,
.learn-more-btn:focus,
.discover-btn:hover,
.discover-btn:focus {
  background-color: #bd7d43;
  outline: none;
}

.discover-btn {
  margin-top: 0.5rem;
  display: inline-flex;
}

/* Text styles */
.heading-lg {
  font-size: 2rem;
  font-weight: 700;
  color: #222831;
  margin-bottom: 0.75rem;
}

.heading-md {
  font-size: 1.375rem;
  font-weight: 700;
  color: #222831;
  margin-bottom: 0.75rem;
}

.subheading {
  color: #556080;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.text-primary {
  color: #0496c9;
  font-weight: 700;
}

.text-accent {
  color: #00c1a7;
  font-weight: 700;
}

.text-muted {
  color: #556080;
}

/* Header / Navbar */
header {
  background: white;
  box-shadow: 0 1px 4px rgb(63 63 68 / 0.1);
  position: sticky;
  top: 0;
      z-index: 999;
}

.navbar {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-label {
    margin-bottom: .5rem;
    font-weight: 600;
}
h5#siteVisitModalLabel {
    font-size: 20px;
    font-weight: 600;
}

.navbar .logo,
footer .logo-footer {
  font-weight: 700;
  font-size: 1.25rem;
  color: #f0801a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .logo-icon,
footer .logo-icon {
  background-color: #f0801a;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav ul li a {
    font-weight: 600;
    color: #222831;
    padding: 0px 0px 5px;
    transition: color 0.3s ease;
    position: relative;
    font-size: 16px;
    margin: 0px 6px;
    text-transform: capitalize;
}

nav ul li a.active {
    border-bottom: 3px solid #ef7f1a;
    color: #ef7f1a;
}
nav ul li a:hover,
nav ul li a:focus {
  color: #ef7f1a;
  outline: none;
}
nav ul li a.active:hover{
  border-bottom: 0px;
}
nav ul li a.active:before{
  border-bottom: 0px;
}

/* Hero Section */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5,100,242,0.85), rgba(0,193,167,0.85)),
    url("https://storage.googleapis.com/...") no-repeat center/cover;
  color: white;
  padding: 6rem 1rem 5rem;
  text-align: center;
  overflow: hidden;
}

.hero p.premium {
  display: inline-block;
  background: rgba(255 255 255 / 0.25);
  border-radius: 50px;
  padding: 0.2rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  user-select: none;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero h1 span.accent {
  color: #00c1a7;
}

.hero p.desc {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0.5rem auto 2.5rem;
  font-weight: 500;
}

.hero .btn-group {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero .btn-secondary {
  background-color: white;
  color: #f0801a;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 160px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus {
  background-color: #eee;
  outline: none;
}

/* Core Services */
section.core-services {
  padding: 4rem 1rem 3rem;
  background-color: #f4f8ff;
  text-align: center;
}

section.core-services .container {
  max-width: 900px;
}

section.core-services h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

section.core-services p.subtitle {
  font-weight: 400;
  color: #76839a;
  margin-bottom: 2rem;
}

.services-grid {
  display: flex;
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 2px 8px rgb(63 63 68 / 0.08);
  text-align: center;
  transition: box-shadow 0.25s ease;
  cursor: default;
}

.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 3px 14px rgb(5 100 242 / 0.3);
}

.service-icon {
    background-color: #f0801a;
    color: white;
    width: 100%;
    height: auto;
    margin: 0 auto 12px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1;
}

.service-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: #222831;
}

.service-desc {
  font-size: 0.9rem;
  color: #76839a;
  line-height: 1.3;
  padding: 0 0.5rem;
}

/* Quality Section */
section.quality {
  padding: 4rem 1rem;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.quality-text {
  flex: 1 1 360px;
  max-width: 480px;
  font-size: 1rem;
  color: #222831;
}

.quality-text h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222831;
}
.quality-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #222831;
}

.quality-text p.desc {
    margin-bottom: 10px;
    color: #4a4f59;
    line-height: 1.5;
}

.quality-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 2rem;
}

.quality-point {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: #4a4f59;
}

.quality-point-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #00c1a7;
  stroke-width: 2.5;
}

.quality-image {
  flex: 1 1 420px;
  max-width: 520px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.quality-image img {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  display: block;
}
.loks img{
  height: 600px !important;
}
.years-tag {
  position: absolute;
  background: #00c1a7;
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 12px 0 0 12px;
  font-size: 0.95rem;
  bottom: 16px;
  right: 0;
  box-shadow: 0 4px 8px rgb(0 193 167 / 0.5);
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Stats Section */
section.stats {
  background-color: #f0801a;
  color: white;
  padding: 2.5rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  font-weight: 700;
  user-select: none;
}

.stat-item {
  min-width: 100px;
  font-size: 1.15rem;
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-weight: 400;
  font-size: 0.875rem;
  opacity: 0.85;
  user-select: text;
}

/* Why Choose Section */
section.why-choose {
  padding: 4rem 1rem 3rem;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

section.why-choose h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #222831;
  user-select: none;
}

section.why-choose p.subtitle {
  font-weight: 400;
  color: #76839a;
  margin-bottom: 2.5rem;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  max-width: 940px;
  margin: 0 auto 2.5rem;
  user-select: none;
}

.choose-card {
  background-color: #f9fbff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgb(5 100 242 / 0.07);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s ease;
}

.choose-card:hover,
.choose-card:focus-within {
  box-shadow: 0 6px 20px rgb(5 100 242 / 0.27);
  cursor: default;
}

.choose-icon {
  background-color: #f0801a;
  color: white;
  font-size: 22px;
     width: 100%;
    height: auto;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  color: #222831;
}

.choose-desc {
        font-size: 0.9rem;
    color: #76839a;
    line-height: 1.3;
   
    line-height: 1.3;
    user-select: text;
}

/* Call-to-Action Section */
section.cta {  
    color: white;
    text-align: center;
    padding: 3rem 1rem 5rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(https://media.istockphoto.com/id/1320539946/vector/halftone-grunge-design.jpg?s=612x612&w=0&k=20&c=wgkyex3LdJW-ZXgm7bHRJyKRCx5GHJXbnmEDmpVwX5A=);
}

section.cta h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

section.cta p {
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-form {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-input {
  min-width: 160px;
  border-radius: 4px;
  border: none;
  padding: 0.55rem 1rem;
  font-weight: 500;
  font-size: 1rem;
  outline: none;
}

.cta-input:focus {
  box-shadow: 0 0 6px #00c1a7;
}

.cta-btn {
  background-color: white;
  color: #f0801a;
  border-radius: 4px;
  border: none;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  min-width: 140px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-btn:hover,
.cta-btn:focus {
  background-color: #e4e9f7;
  outline: none;
}

/* Footer */
footer {
  background-color: #f4f8ff;
  padding: 3rem 1rem 1.5rem;
  font-size: 0.9rem;
  color: #556080;
  margin-top: 2rem;
  user-select: none;
}

footer .container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4d9e6;
}

footer h3 {
  color: #f0801a;
  font-weight: 700;
  margin-bottom: 1rem;
  user-select: text;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.55rem;
}

footer ul li a {
  color: #556080;
  font-weight: 500;
  transition: color 0.25s ease;
}

footer ul li a:hover,
footer ul li a:focus {
  color: #f0801a;
  outline: none;
}

footer .logo-desc {
  font-weight: 400;
  max-width: 280px;
  color: #556080;
  user-select: text;
}

footer .contact-info {
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 220px;
}

footer .contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #556080;
}

footer .contact-item svg {
  fill: #f0801a;
  width: 16px;
  height: 16px;
  user-select: none;
}

footer .legal {
  font-weight: 400;
  font-size: 0.8rem;
  color: #7a869a;
  text-align: center;
  margin-top: 1rem;
  user-select: text;
}

/* Icons (inline SVG) */
.icon-manufacturing,
.icon-importing,
.icon-repacking,
.icon-quality,
.icon-industry,
.icon-support {
  width: 24px;
  height: 24px;
  fill: white;
  stroke: white;
}

/* Scrollbar customization and hiding duplicates */
.timeline::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.timeline::-webkit-scrollbar-thumb {
  background-color: #2563eb;
  border-radius: 10px;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom badge styles */
.badge {
  @apply text-xs inline-block py-0.5 px-2 rounded-full font-semibold tracking-wide;
}
.badge-wood {
  @apply bg-green-100 text-green-800;
}
.badge-metal {
  @apply bg-red-100 text-red-800;
}
.badge-glass {
  @apply bg-blue-100 text-blue-800;
}
.badge-feature {
  @apply text-xs bg-gray-200 py-0.5 px-2 rounded-lg text-gray-600 mr-2 mb-2 inline-block;
}

nav ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    margin: auto;
    background-color: #ef7f1a;
    height: 3px;
    width: 0;
    transition: all 0.25s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
nav ul li:hover > a:before {
    width: 100%;
}
.bts {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    margin-top: 15px;
}
.footer-box p {
    margin-bottom: 7px;
}
.footer-box p a {
    font-weight: 600;
    text-transform: capitalize;
  }
.bg-blue-700,.bg-blue-600,.to-cyan-600{
  --tw-bg-opacity: 1;
  background-color: rgb(239 127 26) !important;
}
.text-blue-600{
  color: rgb(239 127 26) !important;
}
.navbar.container {
    max-width: 85%;
}
.text-teal-400 {
    --tw-text-opacity: 1;
    color: rgb(255 255 255) !important;
}
.footer-box h4 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.text-xs {
    font-size: 14px !important;
   
}
p {
    font-size: 16px;
}
.text-sm {
    font-size: 16px !important;
    
}
h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.17em; }
h4 { font-size: 1em; }
h5 { font-size: 0.83em; }
h6 { font-size: 0.67em; }

p.socailp a i {
    font-size: 18px;
    margin-right: 10px;
}
.hero {
    background: linear-gradient(rgb(2 3 4 / 85%), rgb(35 41 48 / 85%)), url(../imgs/banners.png) no-repeat center center / cover;
    color: #fff;
    padding: 6rem 1rem 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.scroll-indicator {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 40px;
    border: 2px solid var(--blue-primary);
    border-radius: 14px;
    box-sizing: border-box;
    cursor: pointer;
}
.scroll-indicator::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--blue-primary);
    border-radius: 50%;
    margin: 5px auto 0 auto;
    animation: scrollMove 2s infinite ease-in-out;
}
.hero .badge-custom {
    background-color: #fff;
    color: var(--blue-primary);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}
.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}
.hero h1 .primary-blue {
    color: var(--blue-primary);
}
.hero h5 {
    font-weight: 600;
    margin: 15px 0px;

}
.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    font-weight: 500;
    letter-spacing: 0.03em;
}
.hero .btn-group-custom {
    display: inline-flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero .btn-primary-custom {
    background-color: var(--blue-primary);
    border: none;
    border-radius: 30px;
    font-weight: 700;
    padding: 0.7rem 2.25rem;
    font-size: 1rem;
    color: #fff;
    transition: background-color 0.3s ease;
}
.hero .btn-pill {
    background-color: transparent;
    border: 1.5px solid var(--blue-primary);
    color: var(--blue-primary);
    font-weight: 600;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.875rem;
    cursor: default;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.hero .btn-pill i {
    margin-right: 0.375rem;
}

div#foot {
  background-size: cover;
  background-repeat: no-repeat;
   background-image: url(https://files.123freevectors.com/wp-content/original/121377-light-grey-abstract-texture-background.jpg);
  }


.head h3 {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin: 0px !important;
    text-align: center;
}
.head p {
    color: #121314CC;
    text-align: center;
}
.review-box1 {
    background-color: #fff;
    padding: 25px;
    border: 2px dotted #f1f1f1;
    height: 350px;
    overflow-y: auto;
}

    .review-box1 p {
        margin-bottom: 0px;
        color: #707070;
    }

.r-text h6 {
    font-weight: 600;
    margin: 0px;
}

.r-text p {
    color: #707070;
    margin: 0px;
}

.r-img img {
    width: auto !important;
    margin-right: 10px;
}

.review-box2 {
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.boxes_designs {
    box-shadow: 0px 0px 4px 0px rgba(24, 59, 86, 0.05);
    padding: 30px;
    border-radius: 6px;
    background-color: #cccccc14;
}
.owl-theme .owl-nav {
    display: none;
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 5px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #f0801a;
}

.modal-backdrop {
  z-index: 1050 !important;
}

.modal {
  z-index: 1055 !important;
}
.btn-check:focus+.btn, .btn:focus {
    outline: 0;
    box-shadow: none;
}
.text-blue-200 {
    --tw-text-opacity: 1;
    color: rgb(255 255 255) !important;
}
.text-2xl {
    font-size: 34px !important;
    line-height: 2rem;
}
ul.navbar-nav.ml-auto.mb-2.mb-lg-0 {
    align-items: center;
}
div#navbarSupportedContent {
    padding-left: 0px !important;
}
.services-carousel-item {
    position: relative;
    padding: 30px;
    background-color: #FFF;
    border-radius: 8px;
   
}
.services-carousel-item i{
  font-size: 40px;
    line-height: 1.1;
    display: inline-block;
    margin-bottom: 30px;
    color: #F57009;
    position: relative;
    padding: 15px 0 0 15px;
}
.services-carousel-item h4 {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
    text-transform: capitalize;
    position: relative;
}
.services-carousel-item p {
    margin-bottom: 0;
    color: #9B9B9B;
    font-size: 16px;
    font-weight: 400;  
    line-height: 25px;
}
.services-carousel-item-products {
    min-height: 650px !important;
}
.services-carousel-item i:before{
      display: inline-block;
    position: relative;
    z-index: 1;
}

.services-carousel-item i:after{
  content: '';
    background-color: #FDE4D0;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    border-radius: 40% 45% 40% 30%;
}
p.socailp {
    margin-top: 20px;
}
p.socailp a i {
    font-size: 20px;
}
.upper {
    text-transform: lowercase !important;
}

.services {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}
.bg-section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 75%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.services .bg-section {
    background-image: url(../images/blog/blog-2.jpg);
    height: calc(100% - (20px / 2));
}
section#products .head h2, section#products .head p {
    color: #fffafc !important;
    z-index: 99999999;
}
.services-carousel-item-products>img {
    height: 100px;
    width: auto !important;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background-color: rgb(28 26 48 / 85%);
}


/* Custom scrollbar for testimonials container */
    .testimonials-scroll::-webkit-scrollbar {
      height: 6px;
    }
    .testimonials-scroll::-webkit-scrollbar-thumb {
      background-color: #f97316; /* orange-500 */
      border-radius: 3px;
    }
    /* Custom nav underline */
    nav a.active {
      border-bottom-width: 3px;
      border-color: #f97316;
      color: #f97316;
    }
    /* Blog cards hover */
    .blog-card:hover {
      box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
      transform: translateY(-5px);
      transition: all 0.3s ease;
    }

 .blog-header {
            background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') center center/cover no-repeat;
            height: 280px;
            display: flex;
            align-items: flex-end;
            padding-left: 2rem;
            padding-bottom: 2rem;
            color: #fff;
            text-shadow: 0 1px 6px rgba(0,0,0,0.6);
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .blog-header h1 {
            font-size: 2.5rem;
        }
        .blog-meta {
            margin-top: 0.5rem;
            font-size: 0.9rem;
            color: #ddd;
        }

        /* Blog content */
        .blog-content {
            background-color: #fff;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .blog-content h2 {
            color: #f48020;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        .blog-content p {
            margin-bottom: 1rem;
            line-height: 1.8;
        }
        .blog-content img {
            max-width: 100%;
            margin: 1.5rem 0;
            border-radius: 8px;
                height: 500px;
        }
        blockquote {
            background: #f0f0f0;
            border-left: 5px solid #f48020;
            margin: 1.5rem 0;
            padding: 1rem 1.5rem;
            font-style: italic;
            color: #555;
        }

        /* Author Info */
        .author-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            border-top: 1px solid #ddd;
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }
        .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: unset;
    padding: 10px;
    background-color: #fff;
}
        .author-details {
            font-size: 0.9rem;
        }
        .author-details h4 {
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: #f48020;
        }

        /* Related posts */
        .related-posts {
            margin-top: 3rem;
        }
        .related-posts h3 {
            color: #333;
            border-left: 5px solid #f48020;
            padding-left: 0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .related-list {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .related-item {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            width: calc(33.333% - 1rem);
            padding: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .related-item img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 1rem;
        }
        .related-item a {
            font-weight: 600;
            color: #f48020;
            margin-top: auto;
        }
        .related-item a:hover {
            text-decoration: underline;
        }


.review-box1 h4{
  font-weight: 600;
  padding-bottom: 10px;
}

.author-avatar{

}
/* Add to existing styles.css */
.service-img, .choose-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card, .choose-card {
  transition: transform 0.3s ease;
}

.service-card:hover, .choose-card:hover {
  transform: translateY(-5px);
}

/* Ensure the services grid displays 4 items */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
 .scrollbar-thin::-webkit-scrollbar {
      height: 6px;
    }
    .scrollbar-thin::-webkit-scrollbar-track {
      background: transparent;
    }
    .scrollbar-thin::-webkit-scrollbar-thumb {
      background-color: #f97316; /* orange-500 */
      border-radius: 10px;
    }
    /* Smooth card hover effect */
    .sheet-card:hover {
      box-shadow: 0 12px 20px -5px rgba(249, 115, 22, 0.4);
      transform: translateY(-6px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .sheets{
      box-shadow: none !important;
    }

    @keyframes scrollMove {
    0%, 100% {
      transform: translateY(0);
      opacity: 1;
    }
    50% {
      transform: translateY(14px);
      opacity: 0.3;
    }
  }