/*
Theme Name: Proconest Theme
Theme URI: https://proconest.com
Author: Mohsin
Author URI: https://proconest.com
Description: Custom WordPress theme for Proconest - Construction Estimation, Web Development & SEO Services USA
Version: 1.0.0
License: Private
Text Domain: proconest-theme
*/
/* ==========================
   GOOGLE FONT
========================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ==========================
   ROOT VARIABLES — DARK MODE (default)
========================== */
:root {
  --primary: #081120;
  --secondary: #0f1c33;
  --card: #142440;

  --gold: #d4af37;
  --gold-light: #e6c767;

  --white: #ffffff;

  --text: #e5e7eb;
  --text-light: #9ca3af;

  --border: rgba(212, 175, 55, 0.15);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  --transition: 0.3s ease;
}

/* ==========================
   LIGHT MODE VARIABLES
========================== */
[data-theme="light"] {
  --primary: #f5f0e8;
  --secondary: #ede8db;
  --card: #ffffff;

  --white: #1a2744;

  --text: #1a2744;
  --text-light: #4a5568;

  --border: rgba(212, 175, 55, 0.3);
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .header {
  background: rgba(245, 240, 232, 0.97) !important;
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] .logo {
  color: #1a2744;
}

[data-theme="light"] .nav-links a {
  color: #1a2744;
}

[data-theme="light"] .phone-btn {
  color: #1a2744;
}

[data-theme="light"] .hero {
  background: var(--primary);
}

[data-theme="light"] .faq-question {
  color: #1a2744;
  background: var(--card);
  border: 1px solid var(--border);
}

[data-theme="light"] .faq-answer {
  background: var(--secondary);
  color: var(--text);
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea,
[data-theme="light"] .contact-form select {
  color: #1a2744;
  background: #fff;
}

[data-theme="light"] .footer {
  background: #e0d9cc;
}

[data-theme="light"] .footer h3,
[data-theme="light"] .footer h4,
[data-theme="light"] .footer p {
  color: #1a2744;
}

[data-theme="light"] .stack-grid div,
[data-theme="light"] .trusted-grid div,
[data-theme="light"] .industry-card,
[data-theme="light"] .why-card,
[data-theme="light"] .step,
[data-theme="light"] .case-card,
[data-theme="light"] .feature,
[data-theme="light"] .service-card {
  color: #1a2744;
}

[data-theme="light"] .testimonial-card p {
  color: var(--text-light);
}

[data-theme="light"] .nav-links {
  background: #f5f0e8;
}

/* ==========================
   RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--primary);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==========================
   CONTAINER
========================== */
.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ==========================
   SECTION SPACING
========================== */
section {
  padding: 100px 0;
}

/* ==========================
   BUTTONS
========================== */
.primary-btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--gold);
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.secondary-btn {
  display: inline-block;
  padding: 15px 35px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  transition: var(--transition);
}

.secondary-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ==========================
   HEADER
========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(8, 17, 32, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
}

/* ==========================
   LOGO
========================== */
.logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

/* ==========================
   NAV LINKS
========================== */
.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

/* ==========================
   NAV BUTTONS
========================== */
.nav-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-btn {
  color: var(--text);
  font-size: 14px;
}

.quote-btn {
  background: var(--gold);
  color: #000;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.quote-btn:hover {
  transform: translateY(-3px);
}

/* ==========================
   THEME TOGGLE BUTTON
========================== */
.theme-toggle {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.theme-toggle:hover {
  background: var(--gold);
  color: #000;
  transform: rotate(20deg);
}

/* ==========================
   MOBILE MENU TOGGLE
========================== */
.menu-toggle {
  display: none;
  font-size: 25px;
  cursor: pointer;
  color: var(--text);
}

/* ==========================
   HERO
========================== */
.hero {
  padding-top: 170px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border);
  color: var(--gold);
  border-radius: 50px;
  margin-bottom: 25px;
  font-size: 14px;
}

.hero-left h1 {
  font-size: 65px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--text);
}

.hero-left h1 span {
  display: block;
  color: var(--gold);
}

.hero-left p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-right img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

/* ==========================
   HERO STATS
========================== */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-stats div {
  background: var(--card);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid var(--border);
  text-align: center;
}

.hero-stats h3 {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 5px;
}

.hero-stats p {
  font-size: 14px;
  margin: 0;
}

/* ==========================
   TRUSTED
========================== */
.trusted {
  background: var(--secondary);
  padding: 50px 0;
}

.trusted h4 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 22px;
}

.trusted-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.trusted-grid div {
  background: var(--card);
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
}

/* ==========================
   SECTION HEADER
========================== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 50px;
  font-weight: 800;
}

/* ==========================
   ABOUT
========================== */
.about {
  background: var(--secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-content h2 {
  font-size: 50px;
  margin: 20px 0;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.feature {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.feature i {
  color: var(--gold);
  margin-right: 10px;
}

/* ==========================
   SERVICES
========================== */
.services {
  background: var(--primary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
}

.service-card i {
  font-size: 45px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-light);
}

/* ==========================
   WHY US
========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-10px);
}

.why-card i {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ==========================
   TECH STACK
========================== */
.tech-stack {
  background: var(--secondary);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.stack-grid div {
  background: var(--card);
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: var(--transition);
}

.stack-grid div:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================
   INDUSTRIES
========================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.industry-card {
  background: var(--card);
  padding: 35px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid var(--border);
  font-weight: 600;
  transition: var(--transition);
}

.industry-card:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ==========================
   PROCESS
========================== */
.process {
  background: var(--secondary);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.step {
  background: var(--card);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step:hover {
  border-color: var(--gold);
}

.step span {
  font-size: 40px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  margin-bottom: 15px;
}

/* ==========================
   CASE STUDIES
========================== */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.case-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}

.case-card a {
  color: var(--gold);
  font-weight: 600;
}

/* ==========================
   TESTIMONIALS (Swiper)
========================== */
.testimonials {
  background: var(--secondary);
}

.testimonialSwiper {
  padding-bottom: 60px !important;
}

.testimonial-card {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  height: 100%;
}

.stars {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 18px;
  letter-spacing: 3px;
}

.testimonial-card p {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.testimonial-author h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-light);
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--gold) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 22px !important;
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
}

/* ==========================
   BLOG
========================== */
.blog {
  background: var(--primary);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.blog-card {
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--secondary);
}

.blog-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Placeholder if image missing */
.blog-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--secondary), var(--card));
  z-index: 0;
}

.blog-image img {
  position: relative;
  z-index: 1;
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: #000;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.5px;
}

.blog-body {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-meta i {
  color: var(--gold);
  margin-right: 5px;
}

.blog-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--text);
}

.blog-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.blog-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.blog-link:hover {
  gap: 12px;
}

.blog-link i {
  font-size: 12px;
}

/* ==========================
   FAQ
========================== */
.faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 25px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-size: 17px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  border-radius: 12px;
}

.faq-question:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.faq-question.active {
  border-color: var(--gold);
  color: var(--gold);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-icon {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 20px 25px;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-top: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  color: var(--text-light);
  font-size: 15px;
}

/* ==========================
   CONTACT
========================== */
.contact-form {
  max-width: 800px;
  margin: auto;
  display: grid;
  gap: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: var(--transition);
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form select option {
  background: var(--card);
  color: var(--text);
}

.form-success {
  padding: 18px 22px;
  background: rgba(39, 174, 96, 0.12);
  border: 1px solid rgba(39, 174, 96, 0.4);
  border-radius: 10px;
  color: #27ae60;
  font-size: 15px;
}

.form-error {
  padding: 18px 22px;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.4);
  border-radius: 10px;
  color: #e74c3c;
  font-size: 15px;
}

.form-success i,
.form-error i {
  margin-right: 8px;
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #050b16;
  padding: 80px 0 20px;
}

[data-theme="light"] .footer {
  background: #e0d9cc;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--text-light);
  font-size: 14px;
}

/* ==========================
   WHATSAPP
========================== */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 28px;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* ==========================
   SCROLL TOP
========================== */
#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 55px;
  height: 55px;
  border: none;
  background: var(--gold);
  color: #000;
  cursor: pointer;
  border-radius: 50%;
  display: none;
  font-size: 18px;
  transition: var(--transition);
  z-index: 999;
}

#scrollTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* ==========================
   MOBILE MENU (responsive)
========================== */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: #081120;
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  [data-theme="light"] .nav-links {
    background: #f5f0e8;
  }
}
/* ==========================
   GOOGLE REVIEWS SECTION
========================== */
.google-reviews {
  background: var(--secondary);
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 60px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 50px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.reviews-score {
  text-align: center;
  min-width: 160px;
}

.score-number {
  font-size: 72px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.score-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 4px;
  margin: 8px 0;
}

.reviews-score p {
  color: var(--text-light);
  font-size: 13px;
  margin-bottom: 16px;
}

.leave-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #4285f4;
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.leave-review-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
}

.rating-bars {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-light);
}

.rating-bar-row span:first-child {
  min-width: 32px;
  text-align: right;
}

.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 10px;
  transition: width 1s ease;
}

.rating-bar-row span:last-child {
  min-width: 32px;
}

/* Reviews grid */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.google-review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}

.google-review-card:hover {
  border-color: #4285f4;
  transform: translateY(-5px);
}

.gr-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}

.gr-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.gr-header h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.gr-stars {
  color: #fbbc04;
  font-size: 13px;
  letter-spacing: 2px;
}

.gr-google-icon {
  margin-left: auto;
  color: #4285f4;
  font-size: 22px;
}

.google-review-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
  font-style: italic;
}

.gr-date {
  font-size: 12px;
  color: var(--text-light);
  opacity: 0.7;
}

.reviews-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px;
  color: var(--text-light);
}

.reviews-loading i {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

[data-theme="light"] .gr-avatar {
  color: #fff;
}

[data-theme="light"] .bar-track {
  background: rgba(0, 0, 0, 0.08);
}

/* Reviews responsive */
@media (max-width: 992px) {
  .google-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-summary {
    padding: 30px;
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .google-reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-summary {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }
  .reviews-score {
    text-align: left;
  }
}
