* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter;
  background-color: #fff;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 150px;
  background-color: #0b9586;
  color: white;
  position: relative;
}

.navbar .logo {
  width: 157px;
  height: 54px;
  mix-blend-mode: multiply;
}

.navbar .nav-links {
  display: flex;
  align-items: center;
  list-style-type: none;
  gap: 10px;
}

.navbar .nav-links li a {
  color: white;
  padding: 8px 28px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.navbar .nav-links .active,
.navbar .nav-links li a:hover {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 3px rgba(0, 0, 0, 0.3);
}

.call-us .label {
  font-size: 18px;
  margin-left: 105px;
  font-family: Inter;
  font-weight: 400;
  line-height: 21.78px;
  letter-spacing: 0.9374999403953552px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;

}

.call-us .phone-number {
  font-size: 24px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Responsive Styles for Navbar*/
@media screen and (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
    z-index: 1000;
    flex-direction: row;
    justify-content: space-between; 
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b9586;
    text-align: center;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
    padding: 0;
    display: flex;
  }

  .nav-links.show {
    max-height: 300px;
    padding: 20px 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .call-us {
    display: none;
  }

  .navbar .nav-links li {
    width: 100%;
    text-align: center;
  }

  .navbar .nav-links li a {
    padding: 12px 20px;
    width: 100%;
    display: block;
  }
}

/* Hero Section */
.hero {
  background-size: cover;
  height: 650px;
  background-image: url(images/solar-panels-meadow\ 1.png);
  background-color: radial-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
}

.hero .progress-hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  color: #FFFFFF;
  font-size: 14px;
  padding-top: 150px;
  padding-left: 150px;
}

.hero .progress-bar {
  flex: 1;
  height: 6px;
  background: #575757;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.hero .progress {
  width: 30%;
  height: 100%;
  background: white;
  border-radius: 3px;
}

.hero .hero-content {
  max-width: 729px;
  padding-left: 150px;
  padding-top: 111px;
  gap: 24px;
}

.hero .hero-content .title {
  font-weight: 600;
  font-size: 52px;
  color: #ffffff;
  line-height: 62.93px;
}

.hero .hero-content .description {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  padding-bottom: 32px;
}

.hero .hero-content .btn1 {
  font-family: "inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  color: #fff;
  padding: 12px 34px 12px 34px;
  border-radius: 109px;
  gap: 10px;
  background-color: #3cab90;
  cursor: pointer;
  margin-right: 20px;
}

.hero .hero-content .btn2 {
  font-family: "inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  color: #000;
  padding: 12px 34px 12px 34px;
  border-radius: 109px;
  gap: 10px;
  background-color: #ffbb1c;
  cursor: pointer;
}

/* Responsive Styles for Hero */
@media screen and (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero .hero-content {
    max-width: 90%;
    padding-left: 0;
  }

  .hero .hero-content .title {
    font-size: 42px;
    line-height: 50px;
  }

  .hero .hero-content .description {
    font-size: 18px;
    line-height: 28px;
  }

  .hero .progress-hero-container {
    max-width: 100%;
    padding-left: 0;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 10px;
  }

  .hero .hero-content {
    max-width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero .hero-content .title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero .hero-content .description {
    font-size: 16px;
    line-height: 24px;
  }

  .hero .progress-hero-container {
    padding: 0;
    max-width: 80%;
  }

  .hero .hero-buttons {
    flex-direction: column;
  }

  .hero .hero-content .btn1,
  .hero .hero-content .btn2 {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .hero .hero-content .title {
    font-size: 28px;
    line-height: 36px;
  }

  .hero .hero-content .description {
    font-size: 14px;
    line-height: 22px;
  }

  .hero .hero .progress-hero-container {
    flex-direction: column;
    padding: 0;
  }
}

/* start section-2 */
.section2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 80px;
  max-width: 1440px;
  gap: 24px;
  padding: 80px 145px;
}

.section2-content {
  gap: 50px;
  max-width: 594px;
  height: 476px;
}

.section2 .section2-content .title {
  font-family: "inter";
  font-weight: 600;
  font-size: 42px;
  line-height: 50.83px;
  letter-spacing: -2%;
  color: #101828;
  margin-bottom: 24px;
}

.section2 .section2-content .description {
  font-family: "inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475467;
  margin-bottom: 24px;
  text-align: left;
}

.section2 .section2-content .features p {
  font-family: "Akazan";
  font-weight: 700;
  font-size: 20px;
  line-height: 23.28px;
  letter-spacing: 4px;
  color: #84bd3a;
  text-align: left;
}

.section2 .section2-content .features span {
  font-family: "inter";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: normal;
  color: #101828;
}

.section2 .section2-image {
  border-radius: 12px;
  position: relative;
  display: inline-block;
}

.section2-image .content {
  position: absolute;
  bottom: 20px;
  left: -35px;
  background-color: #ffbb1c;
  width: 266px;
  border-radius: 12px;
  padding: 20px;
  gap: 28px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.section2 .section2-image .content h3 {
  font-family: "Akazan";
  font-weight: 400;
  font-size: 18px;
  line-height: 20.95px;
  letter-spacing: 0.94px;
  color: #2a3334;
  padding-top: 28px;
}


/* Responsive Styles for section2 */
@media screen and (max-width: 1024px) {
  .section2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
  }

  .section2-content {
    max-width: 100%;
  }

  .section2 .section2-content .title {
    font-size: 36px;
    line-height: 45px;
  }

  .section2 .section2-content .description {
    font-size: 18px;
    line-height: 26px;
  }

  .section2 .section2-image {
    width: 100%;
    max-width: 500px;
  }

  .section2-image .content {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    bottom: -50px;
  }
}

@media screen and (max-width: 768px) {
  .section2 {
    padding: 50px 20px;
  }

  .section2 .section2-content .title {
    font-size: 30px;
    line-height: 40px;
  }

  .section2 .section2-content .description {
    font-size: 16px;
    line-height: 24px;
  }

  .section2 .section2-content .features p {
    font-size: 18px;
    line-height: 22px;
  }

  .section2 .section2-content .features span {
    font-size: 18px;
    line-height: 28px;
  }

  .section2 .section2-image {
    max-width: 400px;
  }

  .section2-image .content {
    width: 90%;
    bottom: -10px;
    padding: 15px;
  }

  .section2 .section2-image .content h3 {
    font-size: 16px;
    line-height: 18px;
  }
}

@media screen and (max-width: 480px) {
  .section2 {
    padding: 40px 15px;
  }

  .section2 .section2-content .title {
    font-size: 24px;
    line-height: 34px;
  }

  .section2 .section2-content .description {
    font-size: 14px;
    line-height: 22px;
  }

  .section2 .section2-content .features p {
    font-size: 16px;
    line-height: 20px;
  }

  .section2 .section2-content .features span {
    font-size: 16px;
    line-height: 24px;
  }

  .section2 .section2-image {
    max-width: 100%;
  }

  .section2-image .content {
    width: 85%;
    padding: 12px;
  }

  .section2 .section2-image .content h3 {
    font-size: 14px;
    line-height: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .section2 .section2-image .main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .section2 .section2-image .main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .section2 .section2-image .main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

/* start section 3 */
.section3 {
  background-image: url(images/8116\ 1.png);
  background-size: cover;
  height: 505px;
}

.section3 .section3-content {
  height: 212px;
  padding-left: 150px;
  padding-top: 111px;
  gap: 24px;
  top: 50%;
}

.section3 .section3-content .title {
  font-family: "inter";
  font-weight: 600;
  font-size: 42px;
  line-height: 50.83px;
  letter-spacing: -2%;
  color: #ffffff;
  padding-top: 32px;
}

.section3 .section3-content .description {
  font-family: "inter";
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #ffffff;
  width: 678px;
  padding-top: 32px;
}

.section3 .section3-content .btn3 {
  border-radius: 109px;
  padding: 12px 34px 12px 34px;
  gap: 10px;
  background-color: #ffbb1c;
  font-family: "inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 16.94px;
  letter-spacing: 8%;
  color: #2a3334;
  margin-top: 32px;
  cursor: pointer;
}

/* Responsive Styles for section3 */
@media screen and (max-width: 1024px) {
  .section3 {
    height: auto;
    padding: 80px 40px;
    text-align: center;
  }

  .section3 .section3-content {
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .section3 .section3-content .title {
    font-size: 36px;
    line-height: 45px;
  }

  .section3 .section3-content .description {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .section3 {
    padding: 60px 20px;
  }

  .section3 .section3-content .title {
    font-size: 30px;
    line-height: 40px;
  }

  .section3 .section3-content .description {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }

  .section3 .section3-content .btn3 {
    width: 100%;
    max-width: 280px;
  }
}

@media screen and (max-width: 480px) {
  .section3 {
    padding: 80px 15px;
  }

  .section3 .section3-content .title {
    font-size: 24px;
    line-height: 34px;
  }

  .section3 .section3-content .description {
    font-size: 14px;
    line-height: 22px;
  }

  .section3 .section3-content .btn3 {
    width: 100%;
    max-width: 250px;
  }
}


/* start section 4 */
.section4 {
  padding: 80px 0;
}

.section4-content {
  width: 936px;
  height: 123px;
  margin: auto;
}

.section4-content .title {
  font-family: "inter";
  font-weight: 600;
  font-size: 42px;
  line-height: 50.82px;
  letter-spacing: -2%;
  text-align: center;
  color: #101828;
  padding-bottom: 24px;
}

.section4-content .description {
  font-family: "inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #475467;
}

.section4 .cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 160px;
  max-width: 1440px;
  padding-left: 150px;
}

.section4 .card .card-img {
  width: 358.67px;
  height: 240px;
  gap: 0px;
  opacity: 0px;
}

.section4 .card {
  box-shadow: 0px 4px 30px 0px #0000000d;
  background: #ffffff;
}

.section4 .card-info {
  width: Fill (358.67px) px;
  height: Hug (214px) px;
  padding: 20px;
  gap: 24px;
  opacity: 0px;
}

.section4 .card .card-title {
  font-family: "inter";
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #101828;
}

.section4 .card-description {
  font-family: "inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475467;
  max-width: 318.67px;
}

.section4 .card-info .view {
  font-family: Inter ;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #3CAB90;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Responsive Styles for section4 */
@media screen and (max-width: 1200px) {
  .section4-content {
    width: 80%;
  }

  .section4 .cards {
    padding: 60px 80px;
    gap: 24px;
  }

  .section4 .card {
    width: 100%;
    max-width: 300px;
  }

  .section4 .card .card-img {
    width: 100%;
    height: auto;
  }

  .section4 .card-info {
    padding: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .section4-content {
    width: 90%;
  }

  .section4 .cards {
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 40px;
  }

  .section4 .card {
    max-width: 280px;
  }

  .section4 .card-description {
    font-size: 14px;
    line-height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .section4 {
    padding: 60px 20px;
  }

  .section4-content .title {
    font-size: 36px;
    line-height: 44px;
  }

  .section4-content .description {
    font-size: 14px;
    line-height: 22px;
  }

  .section4 .cards {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px 20px;
  }

  .section4 .card {
    max-width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .section4 {
    padding: 50px 15px;
  }

  .section4-content .title {
    font-size: 30px;
    line-height: 38px;
  }

  .section4-content .description {
    font-size: 14px;
    line-height: 20px;
  }

  .section4 .card {
    width: 100%;
    max-width: 100%;
  }

  .section4 .card .card-img {
    height: 200px;
    object-fit: cover;
  }

  .section4 .card-description {
    font-size: 13px;
    line-height: 20px;
  }
}

/* section 5 */
.section5 {
  background-image: url(images/8116\ 1\ \(1\).png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 505px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  color: rgba(60, 171, 144, 0.06);
  position: relative;
}

/* Content Box */
.section5 .section5-content {
  padding: 44px;
  gap: 32px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.57);
  backdrop-filter: blur(24px);
  max-width: 600px; /* Adjust width */
  text-align: center;
}

.section5 .section5-content .title {
  font-family: Inter;
  font-weight: 600;
  font-size: 42px;
  line-height: 50.82px;
  letter-spacing: -2%;
  color: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 32px 0;
}

.section5 .section5-content .description {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-decoration-skip-ink: none;
  color: rgba(255, 255, 255, 1);
}

/* Responsive Design  for section 5*/
@media (max-width: 768px) {
  .section5 {
    height: auto;
    padding: 20px;
  }

  .section5 .section5-content {
    width: 90%;
    padding: 30px;
  }

  .section5 .section5-content .title {
    font-size: 32px;
    line-height: 40px;
  }

  .section5 .section5-content .description {
    font-size: 18px;
    line-height: 26px;
  }
}

/* Start Section 6 */
.section6 {
  padding: 80px 150px;
  background: rgba(255, 187, 28, 0.05);
  display: flex;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

.section6 .section6-content {
  display: flex;
  gap: 32px;
  width: 100%;
}

.section6-content .section6-info {
  flex: 1;
  max-width: 358.67px;
}

.section6-content .section6-info .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 50.83px;
  letter-spacing: -2%;
  color: rgba(16, 24, 40, 1);
  padding-bottom: 20px;
}

.section6-content .section6-info .description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(71, 84, 103, 1);
}

.section6-content .cards {
  flex: 1;
  display: flex;
  gap: 24px;
}

.section6-content .first-col,
.section6-content .secound-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 50%;
}

.section6-content .card {
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(60, 171, 144, 1);
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
  height: auto;
}

.section6-content .card .img-container {
  padding: 10px;
  background: rgba(60, 171, 144, 0.15);
  border-radius: 10px;
}

.section6-content .card .card-img {
  border-radius: 10px;
  width: 100%;
  mix-blend-mode: luminosity;
}

.section6-content .card .card-title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #101828;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section6-content .card .description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #475467;
  margin-bottom: 20px;
}

.section6-content .card .description span {
  text-decoration: underline;
}

.section6 .view {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #3CAB90;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .section6 {
      padding: 80px 100px;
  }

  .section6-content .cards {
      flex-direction: column;
  }

  .section6-content .first-col,
  .section6-content .secound-col {
      width: 100%;
  }
}

@media (max-width: 992px) {
  .section6 {
      padding: 60px 40px;
  }

  .section6 .section6-content {
      flex-direction: column;
      gap: 40px;
  }

  .section6-content .cards {
      flex-direction: row;
  }

  .section6-content .first-col,
  .section6-content .secound-col {
      width: 50%;
  }
}

@media (max-width: 768px) {
  .section6 {
      padding: 40px 20px;
  }

  .section6-content .cards {
      flex-direction: column;
  }

  .section6-content .first-col,
  .section6-content .secound-col {
      width: 100%;
  }

  .section6-content .section6-info .title {
      font-size: 32px;
      line-height: 40px;
  }

  .section6-content .section6-info .description {
      font-size: 16px;
      line-height: 24px;
  }

  .section6-content .card {
      padding: 16px;
  }

  .section6-content .card .card-title {
      font-size: 18px;
      line-height: 26px;
  }

  .section6-content .card .description {
      font-size: 14px;
      line-height: 22px;
  }

  .section6 .view {
      font-size: 14px;
      line-height: 22px;
  }
}

@media (max-width: 480px) {
  .section6 {
      padding: 40px 10px;
  }

  .section6-content .section6-info .title {
      font-size: 28px;
      line-height: 36px;
  }

  .section6-content .section6-info .description {
      font-size: 14px;
      line-height: 22px;
  }

  .section6-content .card {
      padding: 12px;
  }

  .section6-content .card .card-title {
      font-size: 16px;
      line-height: 24px;
  }

  .section6-content .card .description {
      font-size: 12px;
      line-height: 20px;
  }

  .section6 .view {
      font-size: 12px;
      line-height: 20px;
  }
}

/* start section7 */
.section7 {
  padding: 60px 30px;
  text-align: center;
}

.section7 .title {
  font-family: Inter;
  font-size: 42px;
  font-weight: 600;
  line-height: 50.83px;
  letter-spacing: -0.02em;
  color: #101828;
  margin-bottom: 16px;
}

.section7 .description {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #475467;
  margin-bottom: 32px;
}

.section7 .section7-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}

.section7 .section7-cards .card {
  flex: 1 1 300px;
  max-width: 350px;
  padding: 24px;
  border-radius: 12px;
  background-color: rgba(60, 171, 144, 0.05);
  border: 1px solid rgba(60, 171, 144, 1);
  text-align: left;
}

.section7 .section7-cards .card img {
  width: 48px;
  height: 48px;
}

.section7 .section7-cards .card .card-title {
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: #101828;
  margin: 16px 0;
}

.section7 .section7-cards .card .description {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #475467;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section7 .section7-cards {
    gap: 16px;
    justify-content: center;
  }

  .section7 .section7-cards .card {
    flex: 1 1 calc(50% - 16px);
  }
}

@media (max-width: 768px) {
  .section7 {
    padding: 40px 20px;
  }

  .section7 .title {
    font-size: 32px;
  }

  .section7 .description {
    font-size: 16px;
  }

  .section7 .section7-cards .card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* start section 8 */
.section8-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 145px;
  max-width: 1440px;
  gap: 24px;
  margin: auto;
}

.section8-content .left-section {
  width: 50%;
  text-align: left;
  max-width: 400px;
}

.section8-content .left-section .title {
  font-family: Inter;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  text-align: left;
  padding: 28px 0;
}

.section8-content .left-section .description {
  font-family: Inter;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #1C1C1C;
}

.comment {
  width: 50%; 
  background: #f5fbf9;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: left;
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-heading {
  color: #3cab90;
  font-family: Plus Jakarta Sans;
  font-weight: 700;
  font-size: 16px;
  line-height: 20.16px;
}

.slider-dots {
  display: flex;
  gap: 5px;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: #d3d3d3;
  border-radius: 50%;
  transition: 0.3s;
}

.slider-dots .dot.active {
  background: #333;
}

.comment-content {
  text-align: left;
}

.comment-quote {
  font-size: 24px;
  font-weight: 400;
  color: #101828;
  line-height: 36px;
  margin: 40px 0;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.author-info .author-name {
  font-weight: 600;
  font-size: 16px;
}

.author-info .author-role {
  font-size: 14px;
  color: #666;
}

.comment-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.comment-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #000;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comment-nav button:hover {
  background: #ddd;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section8-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .section8-content .left-section,
  .comment {
    width: 100%;
  }

  .section8-content .left-section .title {
    font-size: 36px;
  }

  .section8-content .left-section .description {
    font-size: 16px;
  }

  .comment {
    padding: 20px;
  }

  .comment-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .slider-dots {
    justify-content: center;
  }

  .comment-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section8-content {
    padding: 20px;
  }

  .section8-content .left-section .title {
    font-size: 28px;
  }

  .section8-content .left-section .description {
    font-size: 14px;
  }

  .comment {
    padding: 20px;
  }

  .comment-quote {
    font-size: 18px;
    line-height: 28px;
  }

  .comment-author {
    flex-direction: column;
    align-items: center;
  }

  .comment-nav button {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

/* Footer */
.footer {
  background: #233041;
  padding: 40px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.footer-logo img {
  width: 185px;
  height: 64px;
  mix-blend-mode: luminosity;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.footer-subscribe {
  text-align: left;
}

.footer-subscribe p {
  font-size: 14px;
  margin-bottom: 8px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px;
  align-items: center;
}

.subscribe-form input {
  background: transparent;
  border: none;
  color: #92989F;
  outline: none;
  padding: 10px;
  font-size: 14px;
  flex: 1;
}

.subscribe-form input::placeholder {
  color: #ccc;
}

.subscribe-form button {
  background: #FFBB1C;
  border: none;
  color: #000;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
}

.subscribe-form button:hover {
  background: #ffb300;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
}

.footer-links span {
  color: #ccc;
}

.footer-copyright {
  font-size: 12px;
  color: #ccc;
}
