@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
a:hover,
a:focus,
a:visited,
a:active {
  text-decoration: none;
}

p,
ul,
li {
  padding: 0;
  margin: 0;
}


body {
  font-family: 'Sora', sans-serif;
}

/* header */
header {
  position: unset;
  left: 0;
  right: 0;
  top: 0;
  z-index: 99;
}

header .headermn {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #ecf1fb;
}

header .headermn .navbar {
  position: relative;
}

header .headermn .navbar .navbar-brand {
  width: 12%;
}

header .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  transition: .5s;
  position: relative;
  padding: 0px 0px !important;
}

header .nav-link:hover,
header .nav-link:focus {
  color: #df0e1e;
}

header .navbar-nav {
  gap: 25px;
}

header .navbar-toggler {
  border: none;
  color: #df0e1e;
  font-size: 28px;
  border-radius: 0;
}

header .navbar-toggler:focus {
  box-shadow: none;
}

header .offcanvas-title img {
  width: 34%;
}

header .navbar-nav {
  position: relative;
  align-items: center;
}

.sticky {
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed !important;
  top: 0px;
  animation: slideDown .5s ease-out;
  background-color: #fff;
  box-shadow: 0 0 10px #00000021;
}

.sticky .headermn .navbar .navbar-brand {
  width: 12%;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(10);
  }
}

header .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: #df0e1e;
}

header .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #df0e1e;
}

header .navbar-nav .nav-link {
  position: relative;
}

header .navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #df0e1e;
}

/* button */
header .navbar .whatsapp li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #df0e1e, #e72f3d);
  transition: .35s;
  margin-top: 10px;
  box-shadow: 0 20px 40px rgb(224 21 36 / 14%);
}

header .navbar .whatsapp li i {
  transition: .35s;
}

header .navbar .whatsapp li a:hover {
  transform: translateY(-4px);
  color: #fff;
}

header .navbar .whatsapp:hover i {
  transform: translateX(6px);
}

/* ===== DROPDOWN (GRID) ===== */
header .navbar-nav .nav-item.dropdown {
  position: static;
}

@media (min-width: 992px) {
  header .dropdown-menu {
    position: absolute !important;
    left: 50% !important;
    top: 100% !important;
    transform: translateX(-50%) !important;
    width: 600px;
    padding: 5px;
    border-radius: 16px;
    border: none;
    border-top: 4px solid #df0e1e;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 18px;
  }

  header .dropdown-menu.show {
    display: grid !important;
  }

  header .dropdown-menu li {
    width: 100%;
    list-style: none;
  }

  header .dropdown-menu li .dropdown-item {
    font-size: 16px !important;
    font-weight: 600;
    color: #222;
    padding: 12px 14px 12px 30px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all .2s ease;
    white-space: nowrap;
  }

  header .dropdown-menu li .dropdown-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #df0e1e;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
  }

  header .dropdown-menu li .dropdown-item:hover {
    background: #fff3f4;
    color: #df0e1e;
  }

  header .dropdown-menu li .dropdown-item:hover::before {
    transform: translateY(-50%) scale(1.4);
  }
}

@media (max-width: 991px) {
  header .dropdown-menu {
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    gap: 2px;
    position: static !important;
    width: 100% !important;
  }

  header .dropdown-menu.show {
    display: flex !important;
  }

  header .dropdown-menu li {
    width: 100%;
    list-style: none;
  }

  header .dropdown-menu li .dropdown-item {
    font-size: 15px !important;
    font-weight: 600;
    color: #222;
    padding: 12px 14px 12px 30px;
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    transition: all .2s ease;
    white-space: normal;
  }

  header .dropdown-menu li .dropdown-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #df0e1e;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }

  header .dropdown-menu li .dropdown-item:hover {
    background: #fff3f4;
    color: #df0e1e;
  }
}

/* footer */
/*==========================
FOOTER
==========================*/

#footer {
  background: #fff;
  color: #222;
  overflow: hidden;
  border-top: 5px solid #df0e1e;
}

/*==========================
TOP
==========================*/

#footer .footer-top {
  background: #fff7f7;
  padding: 70px 0;
}

#footer .row {
  row-gap: 20px;
}

/*==========================
ABOUT
==========================*/

#footer .footer-about img {
  width: 190px;
  margin-bottom: 25px;
}

#footer .footer-about p {
  font-size: 16px;
  line-height: 30px;
  color: #222;
  margin-bottom: 20px;
}

#footer .footer-about h6 {
  font-size: 18px;
  font-weight: 700;
  color: #df0e1e;
}

/*==========================
HEADINGS
==========================*/

#footer h3 {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

#footer h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 3px;
  background: #df0e1e;
  border-radius: 50px;
}

/*==========================
LINKS
==========================*/

#footer .footer-links ul,
#footer .footer-contact ul,
#footer .footer-cities ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#footer .footer-links ul li {
  margin-bottom: 14px;
}

#footer .footer-links ul li a {
  color: #222;
  text-decoration: none;
  transition: .4s;
  display: inline-block;
  position: relative;
}

#footer .footer-links ul li a:before {
  content: "➜";
  color: #df0e1e;
  margin-right: 8px;
  opacity: 0;
  transition: .4s;
}

#footer .footer-links ul li a:hover {
  color: #df0e1e;
  transform: translateX(8px);
}

#footer .footer-links ul li a:hover:before {
  opacity: 1;
}

/*==========================
CONTACT
==========================*/

#footer .footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: #222;
  line-height: 28px;
}

#footer .footer-contact ul li i {
  width: 42px;
  height: 42px;
  background: #df0e1e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#footer .footer-contact ul li a {
  color: #222;
  text-decoration: none;
  transition: .4s;
}

#footer .footer-contact ul li a:hover {
  color: #df0e1e;
}

/*==========================
SOCIAL
==========================*/

#footer .footer-social {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

#footer .footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #df0e1e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: .4s;
  text-decoration: none;
}

#footer .footer-social a:hover {
  background: #222;
  transform: translateY(-5px);
}

/*==========================
CITIES
==========================*/

#footer .footer-cities {
  background: #fff;
  border-top: 1px solid #f2dede;
  border-bottom: 1px solid #f2dede;
  padding: 55px 0;
}

#footer .footer-cities h4 {
  font-size: 18px;
  color: #df0e1e;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#footer .footer-cities ul li {
  margin-bottom: 12px;
}

#footer .footer-cities ul li a {
  color: #222;
  text-decoration: none;
  transition: .4s;
  font-size: 15px;
}

#footer .footer-cities ul li a:hover {
  color: #df0e1e;
  padding-left: 8px;
}

/*==========================
BOTTOM
==========================*/

#footer .footer-bottom {
  background: #df0e1e;
  padding: 20px 0;
}

#footer .footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

#footer .footer-bottom p {
  color: #fff;
  margin: 0;
  font-size: 15px;
}

#footer .footer-bottom ul {
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}

#footer .footer-bottom ul li {
  position: relative;
}

#footer .footer-bottom ul li:not(:last-child):after {
  content: "|";
  color: #fff;
  position: absolute;
  right: -14px;
}

#footer .footer-bottom ul li a {
  color: #fff;
  text-decoration: none;
  transition: .4s;
  font-size: 15px;
}

#footer .footer-bottom ul li a:hover {
  color: #ffe3e6;
}


/* quickcontact */

.quickcontact {
  width: 45px;
  position: fixed;
  top: 70%;
  right: 15px;
  z-index: 102;
}

/* modal */

.modal form.row {
  row-gap: 20px;
}

.modal .btn-theme {
  border-radius: 0px;
  background: #df0e1e;
  color: #fff;
}

.modal .btn-theme:hover {
  background-color: #000;
  color: white;
}

.modal .form-control {
  border-radius: 0px;
  border: none;
  box-shadow: none;
  background-color: #f1f1f1;
}

.modal .form-control:focus {
  border-color: #000;
}

.modal .submit {
  background-color: #df0e1e;
  color: #fff;
  font-weight: 500px;
  padding: 10px;
  border: 0;
  transition: .5s;
}

.modal .submit:hover {
  background-color: #000;
}


#hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
  background: url("../images/banner-new.png") center bottom/cover no-repeat;
}

#hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .98) 0%, rgb(255 255 255) 28%, rgb(255 255 255 / 0%) 52%, rgb(255 255 255 / 0%) 72%, rgb(255 255 255 / 0%) 100%);
  z-index: 1;
}

#hero-section .container {
  position: relative;
  z-index: 2;
}

#hero-section .hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -1px;
  margin: auto;
  margin-bottom: 15px;
  color: #df0e1e;
}

#hero-section .hero-subtitle {
  font-size: 36px;
  line-height: 44px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
  color: #000;

}

#hero-section .hero-rating {
  display: block;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 50px;
  background: #fff0;
  margin-bottom: 20px;
}

#hero-section .hero-rating img {
  width: 22px;
}

#hero-section .hero-rating span {
  font-size: 17px;
  color: #222;
}

#hero-section .hero-rating strong {
  color: #ee8524;
}

#hero-section .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  /* font-size: 18px; */
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #df0e1e, #e72f3d);
  transition: .35s;
  box-shadow: 0 20px 40px rgb(224 21 36 / 14%);
}

#hero-section .hero-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

#hero-section .hero-btn i {
  transition: .35s;
}

#hero-section .hero-btn:hover i {
  transform: translateX(6px);
}



#solar-category {
  padding: 40px 0;
  border-bottom: 4px solid #df0e1e29;
  background: #fff;
}

#solar-category .section-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 30px;
}

#solar-category .section-title span {
  color: #df0e1e;
}

#solar-category .solar-box {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: .35s;
}

#solar-category .solar-icon {
  width: 78px;
  height: 78px;
  min-width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#solar-category .solar-icon img {
  width: 100%;
  transition: .4s;
}

#solar-category .solar-content a {
  color: #000000;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;

}

#solar-category .solar-content a i {
  font-size: 20px;
  transition: .35s;
}

#solar-category .solar-content p {
  font-size: 16px;
  line-height: 24px;
  color: #222;
}


#solar-category .solar-box:hover {
  transform: translateY(-8px);
}

#solar-category .solar-box:hover .solar-icon img {
  transform: scale(1.08);
}

#solar-category .solar-box:hover a {
  color: #df0e1e;
}

#solar-category .solar-box:hover a i {
  transform: translateX(6px);
}


#why-vedansh {
  padding: 40px 0;
  background: #fff;
}


#why-vedansh .section-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#why-vedansh .section-title span {
  color: #df0e1e;
}

#why-vedansh .section-subtitle {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

#why-vedansh .why-card {
  text-align: center;
  padding: 18px;
  border-radius: 20px;
  transition: .4s;
  height: 100%;
}

#why-vedansh .why-img {
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 15px;
  border: 1px solid #df0e1e;
}

#why-vedansh .why-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  transition: .5s;
}

#why-vedansh .why-card h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  margin-bottom: 5px;
}

#why-vedansh .why-card p {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
  margin-bottom: 0;
}

#why-vedansh .why-card:hover {
  transform: translateY(-10px);
  /* box-shadow:0 18px 45px rgba(0,0,0,.08);
    background:#fff; */
}

#why-vedansh .why-card:hover .why-img img {
  transform: scale(1.08);
}

#why-vedansh .why-card:hover h4 {
  color: #df0e1e;
}


#solar-counter {
  padding: 40px 0;
  background: #fff;
}

#solar-counter .section-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#solar-counter .section-title span {
  color: #df0e1e;
}

#solar-counter .section-subtitle {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

#solar-counter .counter-box {
  background: #fff3f4;
  border-radius: 16px;
  padding: 35px 30px;
  transition: .35s;
  height: 100%;
}

#solar-counter .counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

#solar-counter .counter-icon {
  color: #df0e1e;
  font-size: 28px;
  margin-bottom: 5px;
}

#solar-counter .counter-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 10px;
}

#solar-counter .counter-box p {
  margin: 0;
  font-size: 16px;
  color: #222;
}

#solar-counter .bottom-box {
  background: #fff3f4;
  border: 1px solid #fff3f4;
  border-radius: 18px;
  padding: 25px 35px;
}

#solar-counter .bottom-content {
  display: flex;
  align-items: center;
  gap: 18px;
}

#solar-counter .bottom-content i {
  font-size: 34px;
  color: #df0e1e;
}

#solar-counter .bottom-content p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #222;
}

#solar-counter .counter-btn {
  display: inline-block;
  background: #df0e1e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: .35s;
}

#solar-counter .counter-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

#solar-guarantee {
  padding: 40px 0;
  background: linear-gradient(90deg, #e6ced1 0%, #f2d3b747 55%, #f6c4c72e 100%);
  overflow: hidden;
}

#solar-guarantee .section-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#solar-guarantee .section-title span {
  display: block;
  color: #df0e1e;
}

#solar-guarantee .section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 20px;
}

#solar-guarantee .solar-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #df0e1e;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  transition: .35s;
}

#solar-guarantee .solar-btn:hover {
  color: #fff;
  transform: translateY(-4px);
}

#solar-guarantee .feature-box {
  transition: .35s;
}

#solar-guarantee .feature-box i {
  font-size: 32px;
  color: #df0e1e;
  margin-bottom: 15px;
}

#solar-guarantee .feature-box h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  margin-bottom: 5px;
  color: #000;
}

#solar-guarantee .feature-box p {
  margin: 0;
  font-size: 18px;
  color: #222;
  line-height: 1.7;
}

#solar-guarantee .feature-box:hover {
  transform: translateY(-6px);
}

#solar-guarantee .shield-image img {
  width: 100%;
  max-width: 280px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }

}


#work-process {
  background: #ffffff;
  overflow: hidden;
}

#work-process .process-content {
  padding: 0px 8%;
}


#work-process h2 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 20px;
}

#work-process h2 span {
  color: #df0e1e;
}

#work-process .process-item {
  display: flex;
  gap: 22px;
  margin-bottom: 15px;
  position: relative;
}

#work-process .process-item:last-child {
  margin-bottom: 0;
}

#work-process .process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 40px;
  width: 2px;
  height: 100%;
  background: #df0e1e;
}

#work-process .process-number {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: 2px solid #df0e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #df0e1e;
  font-weight: 700;
  background: #fff;
}

#work-process .process-text h4 {
  font-size: 23px;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

#work-process .process-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin: 0;
}

#work-process .process-image {
  height: 600px;
}

#work-process .process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


#testimonial {
  padding: 40px 0;
  background: #faf8f8;
}

#testimonial .testimonial-heading span {
  color: #df0e1e
}

#testimonial .testimonial-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#testimonial .testimonial-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 250px
}

#testimonial .testimonial-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#testimonial .testimonial-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15));
  display: flex;
  align-items: flex-end;
  padding: 35px;
}

#testimonial .testimonial-video-content {
  color: #fff;
}

#testimonial .testimonial-video-content span {
  font-size: 55px;
}

#testimonial .testimonial-video-content h4 {
  font-size: 28px;
  font-weight: 600;
  margin: 10px 0;
}

#testimonial .testimonial-video-content p {
  margin: 0;
}

#testimonial .testimonial-rating-card {
  background: #fffef4;
  border: 1px solid #efd98c;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
}

#testimonial .testimonial-rating-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#testimonial .testimonial-rating-top h2 {
  font-size: 58px;
  font-weight: 700;
  color: #000;
}

#testimonial .testimonial-stars {
  color: #f7b500;
  font-size: 22px;
  margin: 15px 0;
  letter-spacing: 3px;
}

#testimonial .testimonial-rating-top p {
  font-size: 18px;
}

#testimonial .testimonial-rating-top img {
  width: 65px;
}

#testimonial .testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 25px rgb(181 181 181 / 22%);
}

#testimonial .testimonial-quote {
  font-size: 30px;
  color: #df0e1e;
  display: block;
}

#testimonial .testimonial-card .para {
  height: 120px;
  /* Adjust as needed */
  overflow-y: auto;
  padding-right: 8px;
  color: #222;
  line-height: 1.7;
  font-size: 18px;
}

/* Scrollbar Width */
#testimonial .testimonial-card .para::-webkit-scrollbar {
  width: 6px;
}

/* Scrollbar Track */
#testimonial .testimonial-card .para::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Scrollbar Thumb */
#testimonial .testimonial-card .para::-webkit-scrollbar-thumb {
  background: #df0e1e;
  /* Red */
  border-radius: 10px;
}

/* Hover */
#testimonial .testimonial-card .para::-webkit-scrollbar-thumb:hover {
  background: #df0e1e
}

/* Firefox */
#testimonial .testimonial-card .para {
  scrollbar-width: thin;
  scrollbar-color: #df0e1e #f1f1f1;
}

#testimonial .testimonial-user {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

#testimonial .testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

#testimonial .testimonial-user h6 {
  margin: 0;
  font-weight: 600;
}

#testimonial .owl-dots {
  display: none;
}


/*============================= FAQ ============================  */
#faq-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
  border-bottom: 4px solid #df0e1e29;
}

#faq-section .faq-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#faq-section .faq-heading span {
  color: #df0e1e;
}


#faq-section #faqAccordion {
  column-count: 2;
  column-gap: 25px;
}

#faq-section .faq-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

#faq-section .faq-btn {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

#faq-section .faq-btn:hover {
  background: #faf8f8;
}

#faq-section .faq-question {
  text-align: left;
}

#faq-section .faq-icon {
  color: #df0e1e;
  transition: .3s;
  margin-left: 15px;
  flex-shrink: 0;
}

#faq-section .faq-btn:not(.collapsed) .faq-icon {
  transform: rotate(90deg);
}

#faq-section .faq-body {
  background: #fff;
  padding: 18px 20px;
  color: #444;
  line-height: 1.8;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}


/*=========================
BLOG
==========================*/

#blog {
  padding: 40px 0;
  background: #fff;
}

#blog #blog-heading {
  margin-bottom: 40px;
}

#blog #blog-heading h2 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#blog #blog-heading h2 span {
  color: #df0e1e
}

#blog .blog-card {
  background: #faf8f8;
  border-radius: 18px;
  overflow: hidden;
  transition: .4s;
  margin: 10px;
}

#blog .blog-card:hover {
  transform: translateY(-6px);
}

#blog .blog-img {
  overflow: hidden;
}

#blog .blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: .4s;
}

#blog .blog-card:hover img {
  transform: scale(1.05);
}

#blog .blog-content {
  padding: 22px;
}

#blog .blog-content a {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  text-decoration: none;
  display: block;
}

#blog .blog-content a:hover {
  color: #df0e1e
}

#blog .blog-content span {
  font-size: 16px;
  color: #222;
}

#blog .owl-stage {
  display: flex;
}

#blog .owl-item {
  display: flex;
}

#blog .blog-card {
  width: 100%;
}

#blog .owl-dots {
  margin-top: 35px;
  text-align: center;
}

#blog .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #d6d6d6 !important;
  display: block;
  border-radius: 50%;
}

#blog .owl-dot.active span {
  background: #222222 !important;
}

#blog .owl-nav {
  position: absolute;
  right: 0;
  bottom: -70px;
}

#blog .owl-prev,
#blog .owl-next {
  width: 52px;
  height: 52px;
  border: 1px solid #d8d8d8 !important;
  border-radius: 50% !important;
  background: #fff !important;
  font-size: 24px !important;
  margin-left: 10px;
  transition: .3s;
  color: #222
}

#blog .owl-prev:hover,
#blog .owl-next:hover {
  background: #df0e1e !important;
  color: #fff !important;
  border-color: #df0e1e !important;
}


/* ======================================================================= */
/* ================================ SCROLLTOTOP-SECTION =============================== */
/* ======================================================================= */

#scrollTopBtn {
  position: fixed;
  bottom: 17px;
  right: 15px;
  width: 42px;
  height: 42px;
  background-color: #df0e1e;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: background-color .3s ease
}

#scrollTopBtn:hover {
  background-color: #000000
}

#scrollTopBtn.show {
  display: flex
}


#about {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

#about .about-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#about .about-heading span {
  color: #df0e1e
}

#about .about-text {
  max-width: 950px;
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: auto;
}

#about .about-img {
  overflow: hidden;
  border-radius: 28px;
}

#about .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
}

#about .about-img:hover img {
  transform: scale(1.08);
}

#about .about-img-lg {
  height: 345px;
}

#about .about-img-md {
  height: 270px;
}

#about .about-img-sm {
  height: 260px;
}



#vision {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

#vision .vision-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#vision .vision-heading span {
  display: inline-block;
  color: #df0e1e
}

#vision .vision-text {
  max-width: 950px;
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: auto;
}

#vision .vision-card {
  text-align: center;
  padding: 20px 25px;
}

#vision .vision-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#vision .vision-icon img {
  max-width: 100%;
  transition: .4s;
}

#vision .vision-card:hover .vision-icon img {
  transform: translateY(-8px) scale(1.05);
}

#vision .vision-card h4 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
}

#vision .vision-card p {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: auto;
}


#team {
  padding: 40px 0;
  background: #fff3f4;
}

#team .team-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#team .team-heading span {
  color: #df0e1e;
}


#team .team-card {
  text-align: center;
}

#team .team-img {
  width: 260px;
  height: 320px;
  margin: auto;
  background: #f3f6fb;
  /* Same background for all cards */
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transition: .4s;
}

#team .team-card:hover .team-img {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
}

#team .team-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#team .team-card h4 {
  color: #000000;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
}

#team .team-card span {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: auto;
}




/*=============================
Journey
==============================*/

#journey {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
  position: relative;
}

#journey .journey-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 60px;
}



#journey .journey-title span {
  color: #df0e1e;
}

#journey .journey-wrapper {
  position: relative;
  height: 400px;
}

#journey .journey-line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40px;
  z-index: 1;
}

#journey .journey-item {
  position: absolute;
  text-align: center;
  z-index: 2;
}

#journey .journey-circle {

  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
  margin: auto;
}

#journey .journey-circle img {

  width: 52px;
  height: 52px;
  object-fit: contain;

}

#journey .journey-item h4 {

  margin-top: 22px;
  color: #000000;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;
}

#journey .journey-item p {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  margin: auto;
  max-width: 210px;

}

/* positions */

#journey .items1 {

  left: 10px;
  top: 130px;

}

#journey .items2 {
  left: 22%;
  top: 15px;
}

#journey .items3 {
  left: 43%;
  top: 55px;
}

#journey .items4 {
  left: 64%;
  top: 90px;
}

#journey .items5 {
  right: 10px;
  top: 15px;
}


#solar-consultation {
  background: #eef3fb;
}

#solar-consultation .consultation-left {
  position: relative;
  height: 100%;
  overflow: hidden
}

#solar-consultation .consultation-bg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#solar-consultation .consultation-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .8) 30%, rgba(255, 255, 255, 0) 70%);
}

#solar-consultation .consultation-content {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  width: 100%
}

#solar-consultation .consultation-subtitle {
  font-size: 20px;
  color: #df0e1e5c;
  font-weight: 700
}

#solar-consultation .consultation-title {
  font-size: 36px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0;
  color: #000;
}

#solar-consultation .consultation-rating {
  font-size: 17px;
  color: #222;
}

#solar-consultation .consultation-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 50px;
  letter-spacing: -1px;
  color: #df0e1e;
  margin-bottom: 30px;
}

#solar-consultation .consultation-rating img {
  height: 20px
}

#solar-consultation .consultation-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 2
}

#solar-consultation .consultation-stat {
  flex: 1;
  background: rgba(0, 0, 0, .45);
  color: #fff;
  padding: 5px;
  border-radius: 10px;
  text-align: center;
  font-size: 12px;
}

#solar-consultation .consultation-form-box {
  background: #fff3f4;
  padding: 35px;
  height: 100%
}


#solar-consultation .consultation-form-box h2 {
  font-size: 32px;
  line-height: 36px;
  font-weight: 600;
  letter-spacing: 0;
  color: #000;
}

#solar-consultation .consultation-form-box p {
  font-size: 17px;
  color: #222;
}




#solar-consultation .form-control {
  height: 50px;
  border-radius: 10px
}

#solar-consultation .form-control:focus {
  color: #222;
  border-color: #fff3f4;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgb(225 25 40 / 37%);
}

#solar-consultation .consultation-btn {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px
}

#solar-consultation .btn-check:checked+.consultation-btn {
  background: #e42231;
  color: #fff
}

#solar-consultation .consultation-submit-btn {
  width: 100%;
  background: #df0e1e;
  color: #fff;
  border: 0;
  padding: 16px;
  border-radius: 10px;
  position: relative;
  font-weight: 700
}

#solar-consultation .consultation-badge {
  position: absolute;
  right: 8px;
  top: -10px;
  background: #ffd54f;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #000
}

#solar-consultation .consultation-calculator {
  margin-top: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 12px
}



/* contact */
/* â”€â”€ CONTACT SECTION â”€â”€ */
#contact {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

#contact .contact-label-text {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
}

#contact .contact-label-text span {
  color: #df0e1e;
}

#contact .contact-heading {
  text-align: center;
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
  margin-bottom: 40px;
}

/* â”€â”€ FORM WRAP â”€â”€ */
#contact .contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(208, 65, 14, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* â”€â”€ FORM TOP â”€â”€ */
#contact .contact-form-wrap .contact-form-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  margin-bottom: 5px;
  color: #222;
}

#contact .contact-form-wrap .contact-form-sub {
  font-size: 16px;
  line-height: 24px;
  color: #222;
}

/* â”€â”€ FIELD â”€â”€ */
#contact .contact-form-wrap .contact-field {
  position: relative;
}

#contact .contact-form-wrap .contact-field i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #df0e1e;
  font-size: 13px;
  z-index: 1;
}

#contact .contact-form-wrap .contact-field.contact-textarea i {
  top: 16px;
  transform: none;
}

#contact .contact-form-wrap .contact-field .form-control {
  padding-left: 38px;
  height: 48px;
  border: 1px solid rgba(208, 65, 14, 0.15);
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #222;
  background: #faf8f5;
  box-shadow: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#contact .contact-form-wrap .contact-field .form-control:focus {
  border-color: #df0e1e;
  box-shadow: 0 0 0 3px rgba(208, 65, 14, 0.08);
  background: #fff;
}

#contact .contact-form-wrap .contact-field textarea.form-control {
  height: 120px;
  padding-top: 14px;
  resize: none;
}

/* â”€â”€ SUBMIT BUTTON â”€â”€ */
#contact .contact-form-wrap .contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, #df0e1e, #e72f3d);
  transition: .35s;
  margin-top: 10px;
  box-shadow: 0 20px 40px rgb(224 21 36 / 14%);
  border: none;
}

#contact .contact-form-wrap .contact-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

#contact .contact-form-wrap .contact-btn i {
  transition: .35s;
}


#contact .contact-form-wrap .contact-btn:hover i {
  transform: translateX(6px);
}


/* â”€â”€ INFO WRAP â”€â”€ */
#contact .contact-info-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(208, 65, 14, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
}

#contact .contact-info-wrap .contact-info-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  margin-bottom: 15px;
  color: #222;
}

/* â”€â”€ INFO ITEM â”€â”€ */
#contact .contact-info-wrap .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

#contact .contact-info-wrap .contact-info-item:last-child {
  margin-bottom: 0;
}

/* â”€â”€ INFO ICON â”€â”€ */
#contact .contact-info-wrap .contact-info-item .contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #fff3ee, #ffe0d4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(208, 65, 14, 0.15);
}

#contact .contact-info-wrap .contact-info-item .contact-info-icon i {
  color: #df0e1e;
  font-size: 16px;
}

/* â”€â”€ INFO BODY â”€â”€ */
#contact .contact-info-wrap .contact-info-item .contact-info-body h5 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #df0e1e;
  margin-bottom: 6px;
}

#contact .contact-info-wrap .contact-info-item .contact-info-body p,
#contact .contact-info-wrap .contact-info-item .contact-info-body a {
  font-size: 16px;
  line-height: 24px;
  color: #222;
  text-decoration: none;
  line-height: 1.7;
  display: block;
  transition: color 0.3s ease;
}

#contact .contact-info-wrap .contact-info-item .contact-info-body a:hover {
  color: #df0e1e;
}

/* â”€â”€ MAP â”€â”€ */
#contact .contact-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(208, 65, 14, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

#contact .contact-map iframe {
  display: block;
  width: 100%;
}

#advantage {
  background: #90000b;
  padding: 40px 0;
  overflow: hidden;
}

#advantage .advantage-heading {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #ffffff;
  margin-bottom: 10px;
}

#advantage .advantage-heading span {
  color: #fcd124;
}

#advantage .advantage-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 30px;
}

#advantage .expert-box {
  background: linear-gradient(90deg, #f4b0b5, #f5b4b9);
  border-radius: 24px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#advantage .expert-img {
  width: 100px;
  flex-shrink: 0;
}

#advantage .expert-img img {
  width: 100%;
}

#advantage .expert-content h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  color: #000000;
  margin-bottom: 10px;
}

#advantage .expert-content p {
  font-size: 16px;
  color: #222;
  line-height: 1.7;
}

#advantage .expert-content a {
  color: #df0e1e;
  font-weight: 600;
  text-decoration: none;
}

#advantage .comparison-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
}

#advantage .compare-card {
  background: linear-gradient(180deg, #c3131f 0%, #90000b 100%);
  box-shadow: inset 0 2px 8px rgba(255, 255, 255, .12);
  border-radius: 22px;
  width: 280px;
  overflow: hidden;
}

#advantage .compare-card.active {
  border: 2px solid #fcd124;
}

#advantage .compare-top {
  text-align: center;
  padding: 25px;
}

#advantage .compare-top img {
  width: 110px;
  margin-bottom: 15px;
}

#advantage .compare-top h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -.5px;
  margin-bottom: 5px;
  color: #fff
}

#advantage .compare-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#advantage .compare-card li {
  padding: 10px 15px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

#advantage .compare-card .bi-check-circle-fill {
  color: #27d980;
  font-size: 20px;
}

#advantage .compare-card .bi-x-circle {
  color: #ff5f5f;
  font-size: 20px;
}


#gallery {
  padding: 40px 0;
  overflow: hidden;
}

#gallery .section-title {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #000;
  margin-bottom: 10px;
}

#gallery .section-title span {
  color: #df0e1e;
}

#gallery .section-subtitle {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: auto;
}

#gallery .gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  background: #000;
}

#gallery .gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: .5s;
  display: block;
}

#gallery .gallery-item:hover img {
  transform: scale(1.08);
  opacity: .8;
}



#solution-detail {
  padding: 40px 0;
  background: #fff;
}

#solution-detail .solution-content h2 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #df0e1e;
  margin-bottom: 10px;
}

#solution-detail .solution-content h3 {
  line-height: 1.5;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -1px;
  color: #df0e1e;
  margin-bottom: 10px;
}

#solution-detail .solution-content h2 span {
  color: #df0e1e;
}

#solution-detail .solution-content p {
  font-size: 16px;
  line-height: 24px;
  color: #222;
  margin-bottom: 22px;
}

#solution-detail .solution-content p strong {color: #df0e1e;}

#solution-detail .solution-content h4 {
  color:#df0e1e;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 28px;
  text-decoration: none;
  font-weight: 600;

}

/*#solution-detail .solution-content ul {*/
/*  padding-left: 25px;*/
/*  margin: 0;*/
/*}*/

/*#solution-detail .solution-content ul li {*/
/*  font-size: 16px;*/
/*  line-height: 24px;*/
/*  color: #222;*/
/*  margin-bottom: 10px;*/
/*}*/

#solution-detail .solution-content ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    column-count:1;
    /*column-gap:20px;*/
    margin-bottom:20px;
}

#solution-detail .solution-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
    color: #222;
}

#solution-detail .solution-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #df0e1e;
    font-size: 16px;
}
/* blog-det */

#blog-detail {
  padding: 40px 0;
  background: #fff;
}

#blog-detail .bd-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(208, 65, 14, 0.12);
  border: 1px solid rgba(208, 65, 14, 0.08);
}
#blog-detail .bd-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
#blog-detail .bd-img-wrap:hover img {
  transform: scale(1.03);
}

#blog-detail .bd-content .bd-title {
  margin-bottom: 20px;
}
#blog-detail .bd-content .bd-title a {
  font-size: 22px;
  font-weight: 600;
  color: #1a1210;
  text-decoration: none;
  line-height: 1.3;
  display: block;
  transition: color 0.3s ease;
}
#blog-detail .bd-content .bd-title a:hover {
  color: #e11726;
}

#blog-detail .bd-content .bd-body {
      font-size: 16px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 0;
}
#blog-detail .bd-content .bd-body p {
    font-size: 16px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 15px
}
#blog-detail .bd-content .bd-body p strong {
  color: #1a1210;
  font-weight: 600;
}
#blog-detail .bd-content .bd-body h2,
#blog-detail .bd-content .bd-body h3 {
  font-size: 30px;
  font-weight: 600;
  color: #1a1210;
  margin: 28px 0 12px;
  line-height: 1.2;
}
#blog-detail .bd-content .bd-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: #e11726;
  margin-bottom: 10px;
}
#blog-detail .bd-content .bd-body ul,
#blog-detail .bd-content .bd-body ol {
  padding-left: 22px;
  margin: 12px 0 18px;
}
#blog-detail .bd-content .bd-body ul li,
#blog-detail .bd-content .bd-body ol li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #4a3f3a;
}
#blog-detail .bd-content .bd-body img {
  width: 100%;
  border-radius: 12px;
  margin: 16px 0;
}

#blog-detail .bd-sidebar {
  position: sticky;
  top:120px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(208, 65, 14, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

#blog-detail .bd-sidebar .bd-sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(208, 65, 14, 0.1);
}
#blog-detail .bd-sidebar .bd-sidebar-header .bd-sidebar-line {
  display: inline-block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, #e11726, #f4855a);
  border-radius: 4px;
  flex-shrink: 0;
}
#blog-detail .bd-sidebar .bd-sidebar-header h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1210;
  margin: 0;
}

#blog-detail .bd-sidebar .bd-recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(208, 65, 14, 0.07);
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  border: 1px solid rgba(208, 65, 14, 0.1);
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img:hover img {
  transform: scale(1.08);
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img .bd-recent-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(208, 65, 14, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img:hover .bd-recent-img-overlay {
  opacity: 1;
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-img .bd-recent-img-overlay i {
  color: #fff;
  font-size: 13px;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-info {
  flex: 1;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-info .bd-recent-date {
  font-size: 11px;
  color: #9a8c87;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-info .bd-recent-date i {
  color: #e11726;
  font-size: 11px;
}

#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-info .bd-recent-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1210;
  text-decoration: none;
  line-height: 1.4;
  display: block;
  transition: color 0.3s ease;
}
#blog-detail .bd-sidebar .bd-recent-list .bd-recent-item .bd-recent-info .bd-recent-title:hover {
  color: #e11726;
}

@media (max-width: 991px) {
  #blog-detail .bd-sidebar { position: relative; top: 0; }
  #blog-detail .bd-img-wrap img { height: 280px; }
}
@media (max-width: 576px) {
  #blog-detail .bd-img-wrap img { height: 220px; }
  #blog-detail .bd-sidebar { padding: 22px 16px; }
}


    #lp-thankyou{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:40px 15px;
}

#lp-thankyou .thankyou-wrapper{
    width:100%;
    max-width:1200px;
    margin:auto;
}

#lp-thankyou .thankyou-box{
    max-width:600px;
    margin:auto;
    background:#fff7f7;
    padding:60px 40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

#lp-thankyou .thankyou-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#e21b2a;
    color:#fff;
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 25px;
    font-weight:700;
}

#lp-thankyou h1{
    font-size:42px;
    color:#222;
    margin-bottom:15px;
    font-weight:700;
}

#lp-thankyou p{
    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

#lp-thankyou .thankyou-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #df0e1e, #e72f3d);
    transition: .35s;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgb(224 21 36 / 14%);
}

#lp-thankyou .thankyou-btn:hover {
    transform: translateY(-4px);
    color: #fff;
}

#lp-thankyou .thankyou-btn i {
    transition: .35s;
}

#lp-thankyou .thankyou-btn:hover i {
  transform: translateX(6px);
}

@media(max-width:767px){

#lp-thankyou .thankyou-box{
    padding:40px 25px;
}

#lp-thankyou .thankyou-icon{
    width:75px;
    height:75px;
    font-size:34px;
}

#lp-thankyou h1{
    font-size:30px;
}

#lp-thankyou p{
    font-size:16px;
}

#lp-thankyou .thankyou-btn{
    width:100%;
}

}