body {
      font-family: 'Roboto', sans-serif;
      background-color: #ffffff;
      scroll-behavior: smooth;
}
.header {
    padding: 5px 0 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-logo {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.header-logo img {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.header-logo img:hover {
    transform: scale(1.05);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    padding-right: 15px;
}

.contact-info {
  text-align: right;
  font-size: 16px;
}
.contact-info a {
  text-decoration: none;
}

a {
  text-decoration: none !important;
}

.award {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 5em;

}

.carousel-item img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

/* Product Section (Top to Bottom)*/

.cardp-container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
gap: 20px;
max-width: 1200px;
margin: auto;
background-image: url("../images/aw65.png");
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
}

.cardp {
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
overflow: hidden;
text-align: left;
transition: transform 0.2s ease;
}

.cardp:hover {
transform: translateY(-5px);
}

.cardp img {
width: 100%;
height: 260px;
object-fit: cover;
border-radius: 4px;
display: block;
margin-bottom: 10px;
}

.cardp-title {
color: #0066b3;
font-size: 18px;
margin: 15px;
}

.cardp-desc {
font-size: 14px;
color: #555;
margin: 0 15px 15px;
}

/* Procduct Section Ends */

.icon-card:hover i,
.icon-card:hover .icon-card-title {
  color: #ef5342;
  transition: color 0.2s;
}

.blueline {
  height: 5px;
  width: 8em;
  background-color: #ef5342;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* What We Do Section */
.whatwedo-modern {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.whatwedo-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14,84,168,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.whatwedo-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
}

.whatwedo-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.whatwedo-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0e54a8;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.whatwedo-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fa1713 0%, #0e54a8 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.whatwedo-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 0;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 450px;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0e54a8 0%, #fa1713 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.service-card-modern:hover::before {
  transform: scaleX(1);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 45px rgba(14, 84, 168, 0.2);
}

.service-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-modern:hover .service-image {
  transform: scale(1.1);
}

.service-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: rgba(14, 84, 168, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-card-modern:hover .service-number {
  background: #fa1713;
  transform: scale(1.1) rotate(360deg);
}

.service-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0e54a8;
  margin: 0;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.service-card-modern:hover .service-title {
  color: #fa1713;
}

.service-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
}

.service-read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: white;
  background: linear-gradient(135deg, #0e54a8 0%, #1a6ec7 100%);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 84, 168, 0.3);
  margin-top: auto;
}

.service-read-more:hover {
  background: linear-gradient(135deg, #fa1713 0%, #d4001a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250, 23, 19, 0.4);
  color: white;
  gap: 12px;
}

.service-read-more i {
  transition: transform 0.3s ease;
}

.service-read-more:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-card-modern {
    height: 420px;
  }
  
  .service-image-wrapper {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .service-card-modern {
    height: auto;
    min-height: 400px;
  }

  .service-content {
    padding: 20px;
  }

  .service-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .service-title {
    font-size: 1.1rem;
  }

  .service-number {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
}

/* 
---------------------------------------------
FOOTER SECTION START
--------------------------------------------- 
*/

.footer {
  background: #2c2c2c;
  color: #cfcfcf;
  padding: 40px 0;
}

.footer a {
  color: #cfcfcf;
  text-decoration: none;
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 700;
}

.footer ul {
  padding-left: 0;
}

.footer ul li a {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 0.97rem;
}

.footer ul li a:hover {
  color: #ef5342;
  text-decoration: underline;
}

.footer .copy {
  border-top: 1px solid #575758;
  padding-top: 1em;
  margin-top: 1em;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer .row > div {
    margin-bottom: 1.5em;
  }
  .footer h5 {
    margin-bottom: 0.5em;
  }
  .footer ul li a {
    font-size: 1.05rem;
    padding: 0.5em 0;
    display: block;
  }
  .footer .copy {
    font-size: 0.85rem;
    padding-top: 0.7em;
  }
}

  /* Footer Links */
  .container {
  max-width: 1300px;
  /* margin-top: 30px; */
}

.container2 {
  margin: 0 auto;
  /* background: rgb(216 216 216 / 34%); */
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(55, 118, 183, 0.10);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(2px);
  transition: box-shadow 0.3s;
  margin-bottom: 20px;
}

.container2:hover {
  box-shadow: 0 16px 48px rgba(55, 118, 183, 0.18);
}

.swiper {
  width: 100%;
  max-height: 600px;
}

.swiper-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center; 
  display: block;
}
.social-top {
  font-size: 11px; 
}
.social-top a { 
  color: var(--bs-body-color)!important;
} 

.full-width-home {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 600px;
  overflow: hidden;
  margin-top: 30px;
}

.full-width-home2 {
  background-image: url("../images/handing-bag.png");
}

.full-width-home .bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.full-width-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1a1a2ef0;
  z-index: 1;
  pointer-events: none;
}

.full-width-home > .container {
  position: relative;
  z-index: 2;
}

/* 
---------------------------------------------
Modern CTA Section Styles
--------------------------------------------- 
*/

.cta-section-modern {
padding: 80px 0;
background: linear-gradient(135deg, #b2c0ce3b 0%, #899cb0 100%);
position: relative;
overflow: hidden;
}

.cta-section-modern::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(14, 84, 168, 0.05) 0%, transparent 70%);
border-radius: 50%;
}

/* Header */
.cta-header {
margin-bottom: 50px;
}

.cta-header-badge {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 12px 24px;
background: #fff;
border-radius: 50px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
margin-bottom: 20px;
color: #0e54a8;
font-weight: 600;
font-size: 14px;
}

.cta-header-badge i {
font-size: 18px;
}

.cta-main-title {
font-size: 2.5rem;
font-weight: 700;
color: #1a1a1a;
margin-bottom: 15px;
}

.cta-main-title .text-primary {
color: #0e54a8 !important;
}

.cta-subtitle {
font-size: 1.1rem;
color: #666;
max-width: 600px;
margin: 0 auto;
}

/* Contact Card */
.cta-contact-card {
background: #fff;
border-radius: 20px;
padding: 40px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
}

.cta-contact-header {
text-align: center;
margin-bottom: 35px;
}

.cta-logo {
max-width: 120px;
height: auto;
}

.cta-contact-title {
font-size: 1.5rem;
font-weight: 700;
color: #0e54a8;
margin-bottom: 10px;
}

.cta-contact-subtitle {
color: #666;
font-size: 0.95rem;
}

/* Contact Info */
.cta-contact-info {
flex-grow: 1;
}

.cta-info-row {
display: flex;
gap: 20px;
padding: 20px 0;
border-bottom: 1px solid #f0f0f0;
}

.cta-info-row:last-child {
border-bottom: none;
}

.cta-info-icon-wrapper {
width: 50px;
height: 50px;
min-width: 50px;
background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 20px;
transition: transform 0.3s ease;
}

.cta-info-row:hover .cta-info-icon-wrapper {
transform: scale(1.1);
}

.cta-info-details {
flex: 1;
}

.cta-info-label {
display: block;
font-size: 0.85rem;
color: #999;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 5px;
}

.cta-info-value {
font-size: 1rem;
color: #333;
font-weight: 500;
text-decoration: none;
transition: color 0.3s ease;
display: inline-block;
}

a.cta-info-value:hover {
color: #0e54a8;
}

/* Action Button */
.cta-action-wrapper {
margin-top: 30px;
text-align: center;
}

.cta-primary-btn {
background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
color: #fff;
padding: 15px 40px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
border: none;
box-shadow: 0 8px 25px rgba(14, 84, 168, 0.3);
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
}

.cta-primary-btn:hover {
transform: translateY(-3px);
box-shadow: 0 12px 35px rgba(14, 84, 168, 0.4);
background: linear-gradient(135deg, #1a6dcc 0%, #0e54a8 100%);
color: #fff;
}

/* Map Card */
.cta-map-card {
background: #fff;
border-radius: 20px;
overflow: hidden;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
}

.cta-map-header {
padding: 25px 30px;
background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
color: #fff;
display: flex;
align-items: center;
gap: 15px;
}

.cta-map-header i {
font-size: 24px;
}

.cta-map-header h4 {
margin: 0;
font-size: 1.25rem;
font-weight: 600;
}

.cta-map-container {
flex-grow: 1;
position: relative;
min-height: 400px;
}

.cta-map-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}

.cta-map-link {
padding: 15px 30px;
background: #f8f9fa;
color: #0e54a8;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.cta-map-link:hover {
background: #0e54a8;
color: #fff;
}

/* Quick Contact */
.cta-quick-contact {
margin-top: 50px;
}

.quick-contact-item {
background: #fff;
padding: 25px;
border-radius: 15px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
}

.quick-contact-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.quick-contact-item i {
font-size: 28px;
color: #0e54a8;
}

.quick-contact-item span {
font-weight: 600;
color: #333;
font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 991px) {
.cta-main-title {
  font-size: 2rem;
}

.cta-contact-card,
.cta-map-card {
  margin-bottom: 20px;
}
}

@media (max-width: 767px) {
.cta-section-modern {
  padding: 50px 0;
}

.cta-main-title {
  font-size: 1.75rem;
}

.cta-contact-card {
  padding: 25px;
}

.cta-info-row {
  flex-direction: column;
  gap: 10px;
}

.cta-map-container {
  min-height: 300px;
}
}

.new_home_web .topHead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 40px;
  margin-left: 0px;
  margin: 30px 0 25px 0;
}

.new_home_web .text-blk.heading {
  font-size: 2.5em;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-left: 0px;
  color : #1650a0;
}

.new_home_web .orangeLine {
  height: 5px;
  width: 12em;
  background-color: linear-gradient(90deg, #fa1713 0%, #0e54a8 100%);
}

.new_home_web .orangeText {
  color: #e81c1f;
}

.btn-primary.fw-bold.mt-2 {
  transition: background 0.2s, transform 0.2s;
}

.btn-primary.fw-bold.mt-2:hover {
  background: #fa1713 !important;
  transform: scale(1.08);
  color: #fff !important;
}

/* Fade-in animation for sections */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.42,.01,.44,.99), transform 0.8s cubic-bezier(.42,.01,.44,.99);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Button hover pulse */
.cta-button, .btn-primary {
  transition: transform 0.2s;
}
.cta-button:hover, .btn-primary:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 24px #132afa66;
}

.tm-section-pad-top {
  padding-bottom: 40px;
  background-image: url("https://workik-widget-assets.s3.amazonaws.com/widget-assets/images/aw65.png");
}

.tm-content-box {
  padding-top: 20px;
  padding-bottom: 40px;
}

.tm-text-primary {
  color: #37A;
}

.tm-font-big {
  font-size: 1.25rem;
}

.tm-btn-primary {
  color: white;
  background-color: #369;
  padding: 14px 30px;
}

.tm-btn-primary:hover,
.tm-btn-primary:focus {
  color: white;
  background-color: #38B;
}

.tm-icon {
  animation: iconColorAnim 4s infinite alternate;
  /* color: #ef5342; */
}

@keyframes iconColorAnim {
  0%   { color: rgb(250, 23, 19); }
  /* 50%  { color: rgb(24, 52, 126); } */
  100% { color: rgb(0, 123, 255); } 
}

/* Icon Card Section Styles */
.icon-card-section {
  background: transparent;
  margin-top: -38px;
  position: relative;
  z-index: 2;
}

.icon-card-container {
  max-width: 1300px;
  margin: 0 auto;
}

.icon-card-row {
  background: #fff;
  padding: 24px 16px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgb(0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.icon-card {
  text-align: center;
  flex: 1 1 0;
  text-decoration: none !important;
}

.icon-card i {
  color: #0074b7;
  font-size: 2em;
  margin-bottom: 0.5em;
}

.icon-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #0074b7;
}

.grid-container {
  /* width: min(75rem, 100%); */
  margin-inline: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: 0.8em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(20rem, 100%), 1fr));
  gap: 2rem;
}

.card {
  --grad: #ff29fe7d, rgb(0 189 255);
  padding: 1.5rem;
  background-image: linear-gradient(to bottom left, #ccf9fd29, #ebebfd59);
  border-radius: 2rem;
  gap: 1.5rem;
  display: grid;
  grid-template: 'title icon' 'content content' 'bar bar' / 1fr auto;
  color: #444447;
  box-shadow: 
    inset -2px 2px #ffffff,
    -20px 20px 40px hsl(0 0 0 / .25) ;
}
  .main_head {
    font-size: 1.3rem;
    grid-area: title;
    align-self: end;
    text-transform: uppercase;
    font-weight: 500;
    word-break: break-all;
    
  }
  .iconz {
    grid-area: icon;
    font-size: 3rem;
    
    > i {
      color: transparent;
      background: linear-gradient(to right, var(--grad));
      background-clip: text;
    }
  }
  .content {
    grid-area: content;
    & > *:first-child { margin-top: 0rem}
    & > *:last-child { margin-bottom: 0rem}
  }
  &::after {
    content: "";
    grid-area: bar;
    height: 2px;
    background-image: linear-gradient(90deg, var(--grad));
/*     margin-inline: -1.5rem; */
  }

.my-5 {
    margin-top: 7rem !important;
    margin-bottom: 8rem !important;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}

/* Slide Awards */

.award-slider {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding-bottom: 1rem;
  margin-top: 1.5rem;
}

.award-slider::-webkit-scrollbar {
  height: 8px;
}

.award-slider::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.award-slider::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.award-item {
  flex: 0 0 auto;
  width: 250px;
  height: 330px;
  position: relative;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.award-item::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  z-index: 1;
}

.award-item:hover::after {
  transform: translateY(0);
}

.award-item:hover {
  transform: scale(1.02);
}

.award-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.award-item:hover .product-title {
  opacity: 1;
  transform: translateY(0);
}

.navbar-nav .dropdown:hover .dropdown-menu {
display: block;
}

.navbar-nav .dropdown .nav-link.dropdown-toggle {
cursor: pointer;
}

/* 
---------------------------------------------
EV CHARGING Section Styles
--------------------------------------------- 
*/

/* .heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cardz-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.cardz {
  background-color: #162447;
  border: none;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 23%;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.cardz:hover {
  transform: translateY(-5px);
}

.cardz h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #47b4ff;
}

.cardz p {
  font-size: 1rem;
  margin: 0;
  color: #e6e6e6;
}

.btn-primary {
  background-color: #0066b3;
  border: none;
  padding: 12px 30px !important;
  font-weight: 600;
  margin-top: 20px;
}

.btn-primary:hover {
  background-color: #ed5444;
}

.imgz-fluid {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .cardz {
      width: 48%;
  }
  
  .heading {
      font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cardz {
      width: 100%;
  }
} */

/* 
---------------------------------------------
About Overlap Section Styles
--------------------------------------------- 
*/

.about-overlap-section {
margin-top: 150px;
margin-bottom: 150px;
align-items: center;
}

.overlap-container {
position: relative;
min-height: 480px;
}

.overlap-badge {
position: absolute;
top: -70px;
left: 0;
z-index: 2;
}

.overlap-badge-content {
background: linear-gradient(135deg, #0066b3 0%, #0e54a8 100%);
font-weight: 700;
color: white;
padding: 25px 35px;
font-size: 2rem;
border-radius: 8px;
line-height: 1.3;
box-shadow: 0 8px 25px rgba(0, 102, 179, 0.3);
transition: transform 0.3s ease;
}

.overlap-badge-content:hover {
transform: translateY(-5px);
box-shadow: 0 12px 35px rgba(0, 102, 179, 0.4);
}

.overlap-main-image {
border-radius: 12px;
margin-left: 50px;
width: calc(100% - 50px);
height: 480px;
object-fit: cover;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
transition: transform 0.3s ease;
}

.overlap-main-image:hover {
transform: scale(1.02);
}

.overlap-info-card {
background: white;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
position: absolute;
right: 0;
bottom: -95px;
width: 55%;
max-width: 500px;
border-radius: 12px;
padding: 35px 30px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border-left: 4px solid #fa1713;
}

.overlap-info-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.overlap-card-title {
font-weight: 700;
color: #0066b3;
font-size: 2.2rem;
line-height: 1.2;
margin-bottom: 20px;
}

.overlap-divider {
width: 60px;
height: 4px;
background: linear-gradient(90deg, #fa1713 0%, #0e54a8 100%);
margin-bottom: 20px;
border-radius: 2px;
}

.overlap-description {
font-size: 1rem;
color: #333;
line-height: 1.8;
margin-bottom: 25px;
}

.overlap-cta-btn {
background: #0066b3 !important;
color: white !important;
border: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
}

.overlap-cta-btn:hover {
background: #0e54a8;
color: white;
transform: translateX(5px);
box-shadow: 0 5px 20px rgba(0, 102, 179, 0.3);
}

.overlap-cta-btn i {
transition: transform 0.3s ease;
}

.overlap-cta-btn:hover i {
transform: translateX(3px);
}

/* Decorative Elements */
.overlap-container::before {
content: '';
position: absolute;
top: -30px;
right: -30px;
width: 150px;
height: 150px;
background: radial-gradient(circle, rgba(14,84,168,0.1) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
}

.overlap-container::after {
content: '';
position: absolute;
bottom: -50px;
left: 20px;
width: 120px;
height: 120px;
background: radial-gradient(circle, rgba(250,23,19,0.08) 0%, transparent 70%);
border-radius: 50%;
z-index: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
.overlap-info-card {
  width: 60%;
}
}

@media (max-width: 992px) {
.overlap-badge-content {
  font-size: 1.7rem;
  padding: 20px 30px;
}

.overlap-card-title {
  font-size: 1.9rem;
}

.overlap-info-card {
  width: 65%;
  padding: 30px 25px;
}
}

@media (max-width: 768px) {
.about-overlap-section {
  margin: 60px 0 100px;
}

.overlap-container {
  min-height: auto;
}

.overlap-badge {
  position: static;
  margin-bottom: 20px;
}

.overlap-badge-content {
  font-size: 1.5rem;
  padding: 15px 25px;
}

.overlap-main-image {
  margin-left: 0;
  width: 100%;
  height: 350px;
  margin-bottom: 30px;
}

.overlap-info-card {
  position: static;
  width: 100%;
  max-width: 100%;
  padding: 25px 20px;
}

.overlap-card-title {
  font-size: 1.6rem;
}

.overlap-description {
  font-size: 0.95rem;
}
}

@media (max-width: 576px) {
.overlap-badge-content {
  font-size: 1.3rem;
  padding: 12px 20px;
}

.overlap-card-title {
  font-size: 1.4rem;
}

.overlap-main-image {
  height: 280px;
}

.overlap-cta-btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}
}

/* 
---------------------------------------------
Modern Products Section
--------------------------------------------- 
*/
.products-modern-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.products-modern-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f0f7ff" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top center;
  background-size: cover;
  opacity: 0.5;
}

.products-header {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.products-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: white;
  border-radius: 50px;
  color: #0066b3;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(0,102,179,0.15);
  margin-bottom: 20px;
}

.products-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.products-accent {
  color: #0066b3;
  position: relative;
}

.products-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0066b3 0%, #ff0065 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.products-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.product-modern-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.product-modern-card:hover::before {
  transform: scaleX(1);
}

.product-modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,102,179,0.2);
}

.product-image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f8f9fa;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-modern-card:hover .product-image {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0 102 179 / 0%), rgb(0 0 0 / 38%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-modern-card:hover .product-overlay {
  opacity: 1;
}

.product-view-btn {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066b3;
  font-size: 1.5rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.product-modern-card:hover .product-view-btn {
  transform: scale(1);
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, #0093ff2b, #11eae666);
  color: #0066b3;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.product-modern-card:hover .product-title {
  color: #0066b3;
}

.product-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f8f9fa;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #6c757d;
  font-weight: 600;
}

.product-feature-tag i {
  color: #28a745;
  font-size: 0.7rem;
}

/* CTA Button */
.products-cta {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.products-cta-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  padding: 16px 40px !important;
  background: linear-gradient(135deg, #0066b3 0%, #004d8c 100%);
  color: white !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0,102,179,0.3);
  transition: all 0.4s ease;
}

.products-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,102,179,0.4);
  background: linear-gradient(135deg, #004d8c 0%, #0066b3 100%);
  color: white;
}

.products-cta-btn i {
  transition: transform 0.3s ease;
}

.products-cta-btn:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .products-modern-section {
    padding: 60px 0;
  }

  .products-main-title {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image-wrapper {
    height: 200px;
  }

  .product-content {
    padding: 20px;
  }

  .product-title {
    font-size: 1.1rem;
  }
}

/* EV Image Slider Styles */
    .ev-image-slider {
      position: relative;
      width: 100%;
      height: auto;
      overflow: hidden;
      border-radius: 8px;
      max-height: 357.75px;
      justify-items: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .ev-slider-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .ev-slide {
      display: none;
      width: 100%;
      height: 100%;
    }

    .ev-slide.active {
      display: block;
      animation: fadeInSlide 0.5s ease-in-out;
    }

    .ev-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    @keyframes fadeInSlide {
      from {
        opacity: 0;
        transform: scale(1.05);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* Slider Indicators */
    .ev-slider-indicators {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 10;
    }

    .ev-indicator {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid rgba(255, 255, 255, 0.8);
    }

    .ev-indicator:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: scale(1.2);
    }

    .ev-indicator.active {
      background: white;
      width: 30px;
      border-radius: 6px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .ev-image-slider {
        margin-top: 30px;
      }
      
      .ev-slider-indicators {
        bottom: 10px;
      }
      
      .ev-indicator {
        width: 10px;
        height: 10px;
      }
      
      .ev-indicator.active {
        width: 24px;
      }
    }

/* 
---------------------------------------------
Modern EV Charging Section
--------------------------------------------- 
*/
.ev-charging-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 100%);
  position: relative;
  overflow: hidden;
}

.ev-charging-modern::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(71, 180, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Section Header */
.ev-section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.ev-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: #47b4ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.ev-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.ev-gradient-text {
  background: linear-gradient(135deg, #003db5 0%, #00ff8873 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ev-title-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #003db5 0%, #00ff8873 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.ev-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Content Wrapper */
.ev-content-wrapper {
  position: relative;
  z-index: 2;
}

.ev-intro-text {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
}

.ev-intro-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.ev-intro-text strong {
  color: #47b4ff;
}

/* Feature Cards Grid */
.ev-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.ev-feature-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

.ev-feature-card:hover {
  background: rgba(71, 180, 255, 0.15);
  border-color: rgba(71, 180, 255, 0.3);
  transform: translateY(-3px);
}

.ev-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #003db5 0%, #00ff8873 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.ev-feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin: 0 0 3px 0;
}

.ev-feature-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Stats Row */
.ev-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.ev-stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.ev-stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #47b4ff 0%, #00ff88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.ev-stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

/* CTA Buttons */
.ev-cta-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ev-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #003db5 0%, #00ff8873 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(71, 180, 255, 0.4);
  transition: all 0.3s ease;
}

.ev-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(71, 180, 255, 0.6);
  color: white;
}

.ev-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 16px 35px;
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ev-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #47b4ff;
  color: white;
}

/* Image Showcase */
.ev-image-showcase {
  position: relative;
}

.ev-slider-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ev-slider-track {
  position: relative;
  height: 500px;
}

.ev-slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.ev-slide.active {
  display: block;
  animation: evFadeIn 0.8s ease;
}

.ev-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ev-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.ev-slide-badge {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  color: #1a2332;
  font-size: 0.9rem;
}

@keyframes evFadeIn {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slider Navigation */
.ev-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2332;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.ev-prev {
  left: 20px;
}

.ev-next {
  right: 20px;
}

.ev-slider-nav:hover {
  background: #47b4ff;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

/* Slider Indicators */
.ev-slider-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.ev-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
}

.ev-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.ev-indicator.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Floating Card */
.ev-floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: white;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 15;
  animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ev-floating-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #003db5 0%, #00ff8873 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.ev-floating-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a2332;
}

.ev-floating-text {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
  .ev-charging-modern {
    padding: 70px 0;
  }

  .ev-main-title {
    font-size: 2rem;
  }

  .ev-slider-track {
    height: 400px;
  }

  .ev-floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -50px;
  }
}

@media (max-width: 768px) {
  .ev-features-grid {
    grid-template-columns: 1fr;
  }

  .ev-stats-row {
    grid-template-columns: 1fr;
  }

  .ev-cta-wrapper {
    flex-direction: column;
  }

  .ev-cta-button,
  .ev-secondary-btn {
    width: 100%;
    justify-content: center;
  }

  .ev-slider-track {
    height: 350px;
  }

  .ev-slider-nav {
    width: 40px;
    height: 40px;
  }

  .ev-prev {
    left: 10px;
  }

  .ev-next {
    right: 10px;
  }

  .ev-floating-card {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

/* 
---------------------------------------------
Best Sellers Section
--------------------------------------------- 
*/
.bestseller-section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
}

.bestseller-header {
  text-align: center;
  margin-bottom: 60px;
}

.bestseller-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50px;
  color: #333;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.bestseller-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bestseller-accent {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bestseller-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700 0%, #0e54a8 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.bestseller-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Best Seller Cards */
.bestseller-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.bestseller-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.bestseller-badge-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
}

.badge-hot {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.badge-popular {
  background: linear-gradient(135deg, #ffec85 0%, #ffe500 100%);
  color: #333;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.badge-trusted {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 176, 155, 0.4);
}

.bestseller-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.bestseller-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bestseller-card:hover .bestseller-image {
  transform: scale(1.1);
}

.bestseller-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(14, 84, 168, 0.95) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.bestseller-card:hover .bestseller-hover-overlay {
  opacity: 1;
}

.bestseller-view-btn {
  background: white;
  color: #0e54a8;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.bestseller-card:hover .bestseller-view-btn {
  transform: translateY(0);
}

.bestseller-view-btn:hover {
  background: #0e54a8;
  color: white;
}

.bestseller-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.bestseller-category {
  font-size: 0.8rem;
  color: #0e54a8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bestseller-product-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.bestseller-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bestseller-features-list {
  margin-bottom: 20px;
}

.bestseller-features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
}

.bestseller-features-list .feature-item i {
  color: #00b09b;
  font-size: 1rem;
}

.bestseller-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 2px solid #f0f0f0;
  margin-top: auto;
}

.bestseller-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

.bestseller-stats .stat-item i {
  color: #ffd700;
}

/* 
---------------------------------------------
Promotions Section
--------------------------------------------- 
*/
.promotion-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  position: relative;
  overflow: hidden;
}

.promotion-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.promotion-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.promotion-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promotion-accent {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.promotion-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff416c 0%, #ffd700 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.promotion-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Promo Cards */
.promo-featured-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
}

.promo-featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.promo-ribbon {
  position: absolute;
  top: 20px;
  left: -35px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  padding: 8px 40px;
  transform: rotate(-45deg);
  font-weight: 700;
  font-size: 0.8rem;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
}

.promo-ribbon-blue {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
}

.promo-image-side {
  height: 100%;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-featured-card:hover .promo-image {
  transform: scale(1.1);
}

.promo-badge-stack {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.promo-discount-badge {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(255, 65, 108, 0.5);
  display: inline-block;
}

.promo-bundle-badge {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
}

.promo-limited-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 6px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-block;
}

.promo-content-side {
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.promo-category {
  font-size: 0.8rem;
  color: #0e54a8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.promo-product-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.promo-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.promo-features {
  margin-bottom: 20px;
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: #555;
  font-weight: 600;
}

.promo-feature-item i {
  color: #00b09b;
  font-size: 1rem;
}

.promo-validity {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  border-radius: 8px;
  color: #856404;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 65, 108, 0.4);
  transition: all 0.3s ease;
  align-self: flex-start;
}

.promo-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 65, 108, 0.6);
  color: white;
}

.promo-cta-blue {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
  box-shadow: 0 8px 25px rgba(14, 84, 168, 0.4);
}

.promo-cta-blue:hover {
  box-shadow: 0 12px 35px rgba(14, 84, 168, 0.6);
}

/* Small Promo Cards */
.promo-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.promo-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.promo-badge-new {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
}

.promo-badge-service {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
}

.promo-card-image {
  height: 200px;
  overflow: hidden;
}

.promo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-card-image img {
  transform: scale(1.1);
}

.promo-card-content {
  padding: 25px;
}

.promo-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.promo-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.promo-card-footer {
  padding-top: 15px;
  border-top: 2px solid #f0f0f0;
}

.promo-learn-more {
  color: #0e54a8;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.promo-learn-more:hover {
  gap: 12px;
  color: #ff416c;
}

/* CTA Banner */
.promo-cta-banner {
  background: linear-gradient(135deg, #0e54a8 0%, #1a6dcc 100%);
  padding: 40px;
  border-radius: 20px;
  margin-top: 60px;
  box-shadow: 0 15px 50px rgba(14, 84, 168, 0.3);
}

.promo-banner-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.promo-banner-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.promo-banner-btn {
  background: white;
  color: #0e54a8;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: none;
}

.promo-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  background: #ffd700;
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .bestseller-title,
  .promotion-title {
    font-size: 2rem;
  }

  .promo-image-side {
    min-height: 250px;
  }

  .promo-content-side {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .bestseller-section,
  .promotion-section {
    padding: 60px 0;
  }

  .bestseller-title,
  .promotion-title {
    font-size: 1.8rem;
  }

  .promo-featured-card .row {
    flex-direction: column;
  }

  .promo-ribbon {
    top: 15px;
    left: -30px;
    padding: 6px 35px;
    font-size: 0.75rem;
  }

  .promo-banner-title {
    font-size: 1.4rem;
  }

  .promo-cta-banner {
    padding: 30px 20px;
    text-align: center;
  }
}

/* ===== Product Flip Card Styles ===== */
.product-flip-wrapper {
  perspective: 1000px;
  cursor: pointer;
}

.product-flip-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 450px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.product-flip-wrapper.flipped .product-flip-container {
  transform: rotateY(180deg);
}

.product-flip-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
}

.product-flip-front {
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.product-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #0e54a8 0%, #1a73e8 100%);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-back-content {
  color: white;
  text-align: center;
}

.product-back-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.product-back-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

.product-back-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  text-align: left;
  display: inline-block;
}

.product-back-content ul li {
  padding: 6px 0;
  font-size: 0.9rem;
}

.product-back-content ul li i {
  color: #ffd700;
  margin-right: 8px;
}

.product-back-btn {
  display: inline-block;
  background: white;
  color: #0e54a8;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-back-btn:hover {
  background: #ec2225;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(236, 34, 37, 0.4);
}

@media (max-width: 768px) {
  .product-flip-container {
    min-height: 400px;
  }
  
  .product-back-content h4 {
    font-size: 1.3rem;
  }
  
  .product-back-content p {
    font-size: 0.85rem;
  }
  
  .product-back-content ul li {
    font-size: 0.85rem;
  }
}
