/*------------------------------------------------------------------
 * Multipurpose: Free Template by FreeHTML5.co
 * Author: https://freehtml5.co
 * Facebook: https://facebook.com/fh5co
 * Twitter: https://twitter.com/fh5co
 -------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of styles content]

1 - Header
2 - Hero
3 - CTA
4 - Services
5 - Featured
6 - Recent Posts
7 - Trust
8 - Pricing Tables
9 - Testimonials
10 - Clients
11 - CTA 2
12 - Footer Widgets
13 - Foot Note
--------------------------------------------------------------------*/
/*-----------------------------------
    1 - Header
------------------------------------*/
header {
  background-color: rgba(26, 10, 56, 0.53);
  color: #fff;
  z-index: 1000;
}

header a {
  color: #fff;
}

header::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.02);
  position: absolute;
  left: 0;
  bottom: -20px;
}

.nav-link {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}

.contact {
  font-size: 12px;
}

.tel {
  margin-right: 30px;
}

.contact i {
  color: #ee1515;
  margin-right: 10px;
}

.login {
  padding: 10px 20px;
  font-size: 14px;
  margin-right: 25px;
  text-transform: uppercase;
}

.contact a:hover,
.login:hover {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.login i {
  color: #ee1515;
  margin-right: 8px;
}

.navbar-brand h1 {
  margin: 0;
}

.social {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.social li:not(:last-child) {
  margin-right: 20px;
}

.social a {
  font-size: 14px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #ee1515;
  border-radius: 4px;
  line-height: 40px;
  text-align: center;
  background-color: transparent;
  transition: all 0.25s ease-in-out;
}

.social a:hover {
  color: #fff;
  background-color: #ee1515;
}

.navbar-brand img {
  width: 135px;
}

.navbar-collapse .search-form input[type="text"] {
  border: 1px solid #ced4da;
  color: #333;
  padding: 1.5625rem 0.625rem;
}

.navbar-collapse .search-form .btn {
  margin-top: 0;
  border-radius: 0;
  margin-left: -1px;
}

.navbar-collapse .nav-link {
  font-size: 1.125rem;
  transition: all 0.2s ease-in-out;
}

.navbar-collapse .nav-link:hover {
  color: #ee1515;
}

.cart,
.login-icon,
.search-icon {
  color: #fff;
  font-size: 1.5rem;
}

.cart:hover,
.login-icon:hover,
.search-icon:hover {
  color: #ee1515;
}

.cart {
  margin-left: 20px;
}

form input.btn-primary:hover,
form button.btn-primary:hover {
  background-color: #fff;
  color: #ee1515;
}

/*-----------------------------------
    1 - Hero  (Modern Redesign)
------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 0;
}

/* ---- Background ---- */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/hero2.png") no-repeat center center / cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.8) 0%,
    rgba(0,0,0,0.75) 10%,
    rgba(255,0,0,0.8) 10%,
    rgba(255,0,0,0.8) 15%,
    rgba(0,0,0,0.75) 15%,
    rgba(0,0,0,0.65) 85%,
    rgba(255,0,0,0.8) 85%,
    rgba(255,0,0,0.8) 88%,
    rgba(0,0,0,0.65) 88%,
    rgba(0,0,0,0.65) 90%,
    rgba(255,0,0,0.8) 90%,
    rgba(255,0,0,0.8) 93%,
    rgba(0,0,0,0.65) 93%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: -1;
}

/* ---- Floating decorative shapes ---- */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
}

.shape-1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #ee1515 0%, transparent 70%);
  top: -180px;
  right: -120px;
  animation: hero-float 8s ease-in-out infinite;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, #4a6cf7 0%, transparent 70%);
  bottom: 10%;
  left: -80px;
  animation: hero-float 10s ease-in-out infinite 1s;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #ee1515 0%, transparent 70%);
  top: 35%;
  left: 40%;
  animation: hero-float 12s ease-in-out infinite 2s;
}

.shape-4 {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #ffd700 0%, transparent 70%);
  bottom: 20%;
  right: 18%;
  animation: hero-float 7s ease-in-out infinite 0.5s;
}

.shape-5 {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, #ee1515 0%, transparent 70%);
  top: 60%;
  right: 5%;
  animation: hero-float 9s ease-in-out infinite 3s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%      { transform: translateY(-30px) scale(1.05); }
}

/* ---- Hero content layout ---- */
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  color: #fff;
}

/* ---- Badge ---- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 21, 21, 0.18);
  border: 1px solid rgba(238, 21, 21, 0.35);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #f0b0b0;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-badge i {
  color: #ee1515;
  font-size: 15px;
}

/* ---- Headline ---- */
.hero-content h1 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content .text-highlight {
  color: #ee1515;
  display: inline-block;
}

.hero-content .text-white {
  display: block;
  font-size: 0.85em;
  letter-spacing: 2px;
}

/* ---- Description ---- */
.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-desc strong {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

/* ---- CTA Buttons ---- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-cta {
  padding: 16px 40px !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
}

.hero-cta-alt {
  display: inline-flex;
  align-items: center;
  padding: 14px 34px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.hero-cta-alt:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.10);
}

/* ---- Stats Grid (desktop right side) ---- */
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px 14px;
  text-align: center;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-card:hover {
  background: rgba(238, 21, 21, 0.12);
  border-color: rgba(238, 21, 21, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(238, 21, 21, 0.15);
}

.stat-icon {
  display: block;
  font-size: 20px;
  color: #ee1515;
  margin-bottom: 6px;
}

.stat-number {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 3;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/*-----------------------------------
    1b - Page Hero  (sub-pages)
------------------------------------*/
.page-hero {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 0;
  padding-top: 90px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/neibanner.jpg") no-repeat center center / cover;
  z-index: -2;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,rgba(0,0,0,1) 0%,rgba(0,0,0,0.6) 25%,rgba(0,0,0,0.3) 25%,rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,1) 100%);
  z-index: -1;
}

.page-hero-content {
  color: #fff;
  position: relative;
  z-index: 2;
  padding: 40px 0 50px;
}

.page-hero-content h1 {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  margin-bottom: 10px;
  color: #fff;
}

.page-hero-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
}

.page-hero-content p a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.page-hero-content p a:hover {
  color: #ee1515;
}

.page-hero-content .sep {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
}

@media (min-width: 768px) {
  .page-hero {
    min-height: 350px;
  }
  .page-hero-content h1 {
    font-size: 44px;
  }
}

/*-----------------------------------
    2 - CTA Banner  (Modern Redesign)
------------------------------------*/
.cta-banner {
  padding: 50px 0 30px;
  position: relative;
  z-index: 10;
}

.cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #1a0a38 0%, #2d1560 50%, #1a0a38 100%);
  border-radius: 16px;
  padding: 50px 60px;
  color: #fff;
  box-shadow:
    0 20px 60px rgba(26, 10, 56, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative glow */
.cta-banner__inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(238, 21, 21, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner__inner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 108, 247, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ---- Left side ---- */
.cta-banner__left {
  flex: 1 1 380px;
  position: relative;
  z-index: 1;
}

.cta-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #ee1515;
  margin-bottom: 12px;
}

.cta-banner__tag i {
  font-size: 14px;
}

.cta-banner__title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #fff;
}

.cta-banner__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0;
  max-width: 480px;
}

/* ---- Right side ---- */
.cta-banner__right {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner__stats {
  display: flex;
  gap: 20px;
}

.cta-stat {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-stat:last-child {
  border-right: none;
}

.cta-stat__num {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: #ee1515;
}

.cta-stat__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.cta-banner__btn {
  padding: 14px 34px !important;
  font-size: 15px !important;
  white-space: nowrap;
}

/* ---- CTA 2 (bottom of page) ---- */
.cta2 .cta-banner__inner {
  background: linear-gradient(135deg, #1a0a38 0%, #ee1515 100%);
}

/*-----------------------------------
    1 - Services
------------------------------------*/
.title {
  font-weight: 700;
  text-transform: uppercase;
}

.title h6 {
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.title h1 {
  font-size: 35px;
}

.title .title-blue {
  color: #26264b;
}

.title .title-primary {
  color: #ee1515;
}

.services {
  padding: 80px 0 50px;
}

.services .title {
  margin-bottom: 20px;
}

.services .media {
  margin: 40px 0;
}

.services h5 {
  color: #26264b;
  border-bottom: 2px solid #e7e7e7;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/*-----------------------------------
    1 - Featured
------------------------------------*/
.featured {
  padding: 80px 0;
  background-color: #fafafa;
}

.featured p {
  margin: 35px 0 53px;
}

.featured .media i {
  font-size: 24px;
  color: #ee1515;
}

.featured .media h5 {
  text-transform: uppercase;
  color: #26264b;
}

.featured .btn {
  margin-top: 80px;
}

.featured-img {
  position: relative;
  height: 530px;
  margin-top: 60px;
}

.featured-big {
  position: absolute;
  width: 100%;
  height: 80%;
  bottom: 0;
  right: 0;
}

.featured-small {
  position: absolute;
  width: 50%;
  height: 40%;
  bottom: 0;
  left: 0;
  padding: 25px 25px 0 0;
  background-color: #fff;
}

/*-----------------------------------
    1 - Recent Posts
------------------------------------*/
.recent-posts {
  padding: 65px 0 100px;
}

.recent-posts .btn {
  margin-top: 60px;
}

.recent-posts .row .col-lg-6:nth-of-type(odd) .post-thumb {
  margin-top: 30px;
}

.recent-posts .row .col-lg-6:nth-of-type(even) .post-thumb {
  margin-bottom: 30px;
}

.single-rpost {
  margin: 35px 0 0;
}

.post-thumb {
  flex: 0 0 273px;
}

.post-content {
  color: #ccc;
}

.post-content time {
  font-size: 14px;
  color: #ccc;
}

.post-content h3 {
  margin: 10px 0 2px;
}

.post-content h3 a {
  color: #26264b;
  font-weight: 600;
}

.post-content h3 a:hover {
  font-weight: 700;
  text-decoration: none;
}

.post-content a {
  color: #ccc;
}

.post-content a:hover {
  color: #26264b;
}

.post-content .post-btn {
  color: #6e6e6e;
  text-align: center;
  font-size: 10px;
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  background-color: whitesmoke;
}

.post-content .post-btn:hover {
  color: #fff;
  background-color: #ee1515;
}

/*-----------------------------------
    1 - Trust
------------------------------------*/
.trust {
  padding: 75px 0;
  background-color: #26264b;
  color: #ddd;
  position: relative;
}

.trust .title {
  margin-bottom: 46px;
}

.trust h1 {
  color: #fff;
}

.trust h5 {
  font-size: 24px;
  color: #fefefe;
  margin: 28px 0 12px;
}

.trust ul {
  color: #fff;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
}

.trust li {
  margin-bottom: 15px;
}

.trust .gallery img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.trust .gal-img {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.trust .gal-img i {
  font-size: 72px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}

.trust .gal-img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.trust .gal-img:hover {
  cursor: pointer;
}

.trust .gal-img:hover i {
  opacity: 1;
}

.trust .gal-img:hover::after {
  opacity: 1;
}

.trust .gal-img3 {
  top: -50%;
  left: 50%;
}

/*-----------------------------------
    1 - Pricing Table
------------------------------------*/
.pricing-table {
  padding: 100px 0;
}

.single-pricing {
  padding: 65px 0 40px;
  margin-top: 23px;
  color: #fff;
  background: #26264b;
  border: 0px solid #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.2s ease-in-out;
}

.single-pricing span {
  font-size: 12px;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 15px;
  background-color: transparent;
  position: absolute;
  top: 28px;
  right: 6px;
  transition: all 0.2s ease-in-out;
}

.single-pricing h2 {
  margin-bottom: -5px;
}

.single-pricing .desc {
  color: #9d9d9d;
  padding-bottom: 30px;
  margin-bottom: 32px;
  border-bottom: 2px solid #2f2f2f;
  transition: all 0.2s ease-in-out;
}

.single-pricing .price {
  font-size: 2rem;
  margin-bottom: 8px;
}

.single-pricing p {
  color: #ddd;
}

.single-pricing p:last-of-type {
  margin-bottom: 25px;
}

.single-pricing svg {
  width: 170px;
  position: absolute;
  top: -45px;
  right: -60px;
  z-index: -1;
  transition: all 0.5s ease-in-out;
}

.single-pricing:hover {
  border: 4px solid #fff;
  box-shadow: 0px 10px 18px 0px rgba(0, 0, 0, 0.16);
  margin: 19px 0 -4px;
}

.single-pricing:hover span {
  background-color: #26264b;
}

.single-pricing:hover .desc {
  color: #fff;
  border-bottom: 2px solid rgba(245, 245, 245, 0.322);
}

.single-pricing:hover svg {
  width: 500%;
  top: -200%;
  right: -50%;
}

.single-pricing:hover .btn {
  box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.35);
}

/*-----------------------------------
    1 - Testimonials
------------------------------------*/
.testimonial-and-clients {
  background: url(../images/test-clients-bg.png) center center/cover no-repeat #ee1515;
}

.testimonials {
  padding: 95px 0 85px;
  color: #fff;
  border-bottom: 1px solid #26264b;
}

.testimonials .test-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials .test-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 90px;
}

.testimonials h5 {
  color: #26264b;
  margin-top: 15px;
}

.testimonials span {
  color: #c4c4c4;
  display: inline-block;
  margin: 0 0 17px;
}

.testimonials p {
  font-size: 17px;
  line-height: 27px;
}

.test-pagination {
  text-align: center;
  margin-top: 8px;
}

.test-pagination span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #26264b;
  margin-bottom: 0;
  transition: all 0.2s ease-in-out;
}

.test-pagination span:hover {
  cursor: pointer;
}

.test-pagination span:not(:last-child) {
  margin-right: 10px;
}

.test-pagination span.swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: white;
}

/*-----------------------------------
    1 - Clients
------------------------------------*/
.clients {
  padding: 70px 0;
}

.clients .swiper-wrapper {
  text-align: center;
}

/*-----------------------------------
    1 - Footer
------------------------------------*/
footer {
  background: url(../images/footer-bg.png) center center/cover no-repeat #26264b;
}

/*-----------------------------------
    1 - Footer Widgets
------------------------------------*/
.footer-widgets {
  padding: 100px 0;
}

.footer-widgets .col-md-6 .single-widget:not(:first-child) .widget-tiltle {
  margin: 40px 0 30px;
}

.single-widget {
  color: #aaa;
}

.single-widget .widget-tiltle {
  font-size: 17px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 45px;
}

.single-widget i {
  color: #ee1515;
}

.single-widget h6 {
  color: #fff;
}

.single-widget .media {
  margin-bottom: 20px;
}

.contact-widget a {
  color: #aaa;
}

.contact-widget i {
  font-size: 22px;
}

.twitter-widget i,
.twitter-widget h6 {
  color: #777;
}

span {
  color: #fff;
}

.recent-post-widget .rcnt-img {
  width: 68px;
  height: 68px;
  border-radius: 4px;
  overflow: hidden;
}

.recent-post-widget .rcnt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recent-post-widget a {
  color: #fff;
}

.recent-post-widget p {
  font-size: 13px;
}

.recent-post-widget i {
  margin-right: 10px;
}

.recent-post-widget i:last-of-type {
  margin-left: 15px;
}

.tags-widget {
  margin: -10px -10px 0 0;
}

.tags-widget a {
  color: #aaa;
  display: inline-block;
  padding: 10px 12px;
  border-radius: 2px;
  background-color: #363636;
  font-size: 14px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  margin: 10px 10px 0 0;
}

.tags-widget a:hover {
  text-decoration: none;
  color: #26264b;
  background-color: #ee1515;
}

.subscribe-widget form {
  margin-bottom: 10px;
}

.subscribe-widget input {
  font-size: 14px;
  padding: 0px 10px;
  background-color: #444;
  border: none;
  line-height: 0;
  position: relative;
  z-index: 1;
}

.subscribe-widget input:focus {
  outline: none;
  box-shadow: none;
}

.subscribe-widget button {
  background: #ee1515;
  border: none;
  padding: 9px 14px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-left: -10px;
  position: relative;
  z-index: 5;
}

.subscribe-widget button i {
  color: #fff;
}

.subscribe-widget .social-nav {
  margin-top: 32px;
}

.subscribe-widget .social-nav a {
  display: inline-block;
  text-align: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #fff;
  color: #ddd;
  background-color: #444;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-right: 10px;
}

.subscribe-widget .social-nav a i {
  color: #ddd;
}

.subscribe-widget .social-nav a:hover {
  background-color: #ee1515;
}

/*-----------------------------------
    1 - Foot Note
------------------------------------*/
.foot-note {
  padding: 35px 0;
  background-color: #ee1515;
  color: #26264b;
}

.foot-note a {
  color: #26264b;
}

.foot-note a:last-child {
  margin-left: 30px;
}

.foot-note a.fh5-link {
  margin-left: 0;
}

/*-----------------------------------
    Buttons — Complete Redesign
------------------------------------*/

.btn {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border-width: 2px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* ---- btn-primary ---- */
.btn-primary {
  background: linear-gradient(135deg, #ee1515 0%, #cc0f0f 100%);
  border-color: #ee1515;
  color: #fff;
  box-shadow: 0 4px 15px rgba(238, 21, 21, 0.3);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #cc0f0f 0%, #b00 100%);
  border-color: #cc0f0f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(238, 21, 21, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(238, 21, 21, 0.35);
}

/* ---- btn-outline-primary ---- */
.btn-outline-primary {
  color: #ee1515;
  border-color: #ee1515;
  background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background: #ee1515;
  border-color: #ee1515;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(238, 21, 21, 0.3);
}

/* ---- btn-outline-secondary ---- */
.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  background: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #fff;
  background: #6c757d;
  border-color: #6c757d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

/* ---- btn-sm ---- */
.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.btn-sm:hover {
  transform: translateY(-2px);
}

/* ---- btn-block ---- */
.btn-block {
  padding: 14px 32px;
}

/* ---- Ripple effect (subtle) ---- */
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::after {
  width: 300px;
  height: 300px;
}

/* ---- Post circular button ---- */
.post-btn {
  font-family: "Rajdhani", sans-serif;
  color: #6e6e6e;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
}

.post-btn:hover {
  color: #fff;
  background-color: #ee1515;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 21, 21, 0.3);
  text-decoration: none;
}

/* (subscribe-btn removed — now uses cta-banner__btn) */

/* ---- Active filter buttons ---- */
.btn-group .btn.active,
.btn-group .btn:active {
  background: #ee1515;
  border-color: #ee1515;
  color: #fff;
}

/* ---- Card/box hover lift ---- */
.product-card:hover,
[style*="translateY(-5px)"] {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ---- Floating Action Button (expand on hover) ---- */
.float-btn-group {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}

/* ---- Main toggle button (always visible) ---- */
.float-btn-main {
  width: 60px;
  height: 60px;
  background: #1a3a5c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(26,58,92,0.35);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
  cursor: pointer;
}

.float-btn-main:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(26,58,92,0.5);
  background: #2c5f8a;
}

.float-btn-main svg {
  position: relative;
  z-index: 2;
}

/* ---- Top wrapper (hover zone for main button + expand) ---- */
.float-btn-top {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---- Expandable panel (hidden, floats above main button) ---- */
.float-btn-expand {
  position: absolute;
  bottom: calc(100% + 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px) scale(0.3);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom center;
}

.float-btn-top:hover .float-btn-expand {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ---- Grid for site buttons (2x4) ---- */
.float-btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* ---- Shared button base ---- */
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.float-btn:hover {
  text-decoration: none;
}

.float-btn:active {
  transform: scale(0.92);
}

/* ---- Site buttons ---- */
.float-btn-site {
  width: 42px;
  height: 42px;
  background: #1a3a5c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  font-family: 'Rajdhani', sans-serif;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.float-btn-top:hover .float-btn-site {
  opacity: 1;
  transform: scale(1);
}

.float-btn-site:hover {
  background: #2c5f8a;
  box-shadow: 0 5px 20px rgba(26,58,92,0.4);
  color: #fff;
}

/* ---- Always-visible WhatsApp button ---- */
.float-btn-wa {
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.float-btn-wa svg {
  position: relative;
  z-index: 2;
}

.float-btn-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  background: #20bd5a;
}

.float-btn-wa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.25);
  animation: wa-pulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ---- Staggered pop-in animation for "splitting" effect ---- */
.float-btn-grid .float-btn-site:nth-child(1) { transition-delay: 0.02s; }
.float-btn-grid .float-btn-site:nth-child(2) { transition-delay: 0.04s; }
.float-btn-grid .float-btn-site:nth-child(3) { transition-delay: 0.06s; }
.float-btn-grid .float-btn-site:nth-child(4) { transition-delay: 0.08s; }
.float-btn-grid .float-btn-site:nth-child(5) { transition-delay: 0.10s; }
.float-btn-grid .float-btn-site:nth-child(6) { transition-delay: 0.12s; }
.float-btn-grid .float-btn-site:nth-child(7) { transition-delay: 0.14s; }
.float-btn-grid .float-btn-site:nth-child(8) { transition-delay: 0.16s; }

/* ---- Product Detail Tables ---- */
.tab-content table {
  border-collapse: collapse;
  width: 100%;
  min-width: 600px;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.tab-content table,
.tab-content th,
.tab-content td {
  border: 1px solid #ddd;
}

.tab-content th,
.tab-content td {
  padding: 10px 12px;
  text-align: center;
  vertical-align: middle;
}

.tab-content th {
  background-color: #26264b;
  color: #fff;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
}

.tab-content tr:nth-child(even) {
  background-color: #f9f9f9;
}

.tab-content tr:hover {
  background-color: #f0f0f0;
}

/* Table header row */
.tab-content table thead th {
  background-color: #26264b;
  color: #fff;
}

/* Responsive table wrapper */
.tab-content {
  overflow-x: auto;
}

/* ---- Footer Animation (IntersectionObserver, no AOS dependency) ---- */
.footer-anim {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.footer-anim-left {
  transform: translateX(-30px);
}
.footer-anim-right {
  transform: translateX(30px);
}
.footer-anim.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Tab Content Width Fix ---- */
#productTabsContent {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
}

#productTabsContent .tab-pane > div {
  width: 100%;
  max-width: 100%;
}

#productTabsContent img {
  max-width: 100%;
  height: auto;
}

#productTabsContent .row {
  margin-left: 0;
  margin-right: 0;
}
