/* ==========================================================
   KRYZEN REVIEWS
   Hero & Navbar CSS
========================================================== */

:root {
  --primary: #198754;
  --primary-dark: #146c43;
  --primary-light: #e9f8f0;
  --text-dark: #1f2937;
  --text-light: #6c757d;
  --white: #ffffff;
  --border-color: #edf2f7;
}

/* ==========================================================
     Common
  ========================================================== */

body {
  font-family: "Inter", sans-serif;
  background: #f8fafb;
  color: var(--text-dark);
}

a {
  text-decoration: none;
}

.py-7 {
  padding: 100px 0;
}

/* ==========================================================
     Navbar
  ========================================================== */

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  z-index: 999;
}

.navbar-brand img {
  height: 52px;
}

.navbar-nav {
  gap: 8px;
}

.navbar .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: #495057;
  padding: 10px 18px;
  border-radius: 30px;
  transition: 0.3s;
}

.navbar .nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.navbar .nav-link.active {
  color: var(--primary);
  background: var(--primary-light);
}

.navbar .btn-success {
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: 0.3s;
}

.navbar .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(25, 135, 84, 0.25);
}

/* ==========================================================
     Hero
  ========================================================== */

.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at top right,
      rgba(25, 135, 84, 0.1),
      transparent 40%
    ),
    #f8fafb;
}

.hero-section::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(25, 135, 84, 0.05);
  border-radius: 50%;
  top: -220px;
  right: -200px;
}

.hero-section .badge {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 50px;
  font-weight: 600;
}

.hero-section h1 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-dark);
}

.hero-section p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-light);
}

.hero-section .btn {
  min-width: 190px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-section .btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(25, 135, 84, 0.25);
}

.hero-section .btn-outline-success:hover {
  transform: translateY(-3px);
}

/* ==========================================================
     Hero Statistics
  ========================================================== */

.hero-stats {
  margin-top: 50px;
}

.hero-stats h2 {
  color: var(--primary);
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-stats small {
  color: #6c757d;
  font-size: 15px;
}

/* ==========================================================
     Hero Images
  ========================================================== */

.hero-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  transition: 0.35s ease;
}

.hero-image img:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image .large-image {
  height: 520px;
}

.hero-image .small-image {
  height: 250px;
}

/* ==========================================================
     Floating Review Card
  ========================================================== */

.review-floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  width: 260px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.review-floating-card h4 {
  color: var(--primary);
  font-size: 34px;
  margin-bottom: 0;
}

.review-floating-card p {
  font-size: 14px;
  margin: 0;
}

/* ==========================================================
     Responsive
  ========================================================== */

@media (max-width: 992px) {
  .py-7 {
    padding: 70px 0;
  }

  .hero-section {
    text-align: center;
  }

  .hero-section h1 {
    font-size: 42px;
  }

  .hero-section p {
    font-size: 18px;
  }

  .hero-image {
    margin-top: 50px;
  }

  .review-floating-card {
    position: static;
    margin: 25px auto 0;
  }
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 34px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .hero-section .btn {
    width: 100%;
  }

  .hero-stats {
    text-align: center;
  }

  .hero-image .large-image,
  .hero-image .small-image {
    height: auto;
  }
}
/* ===================================
   Statistics Section
=================================== */

.py-6 {
  padding: 80px 0;
}

.stat-card {
  border-radius: 20px;
  transition: 0.35s;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08) !important;
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 25px;
}

.stat-number {
  font-size: 46px;
  font-weight: 800;
  color: #198754;
  margin-bottom: 10px;
}

.stat-card h5 {
  margin-bottom: 12px;
}

.stat-card p {
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .stat-number {
    font-size: 38px;
  }

  .stat-icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
}
/* ==========================================
   Customer Review Section
========================================== */

.customer-review-section {
  background: #f8fafc;
}

.review-card {
  border-radius: 22px;
  transition: 0.35s;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.review-user-image {
  width: 72px;

  height: 72px;

  object-fit: cover;

  border-radius: 50%;

  border: 4px solid #e9ecef;
}

.review-stars {
  color: #ffc107;

  font-size: 22px;

  letter-spacing: 2px;
}

.review-text {
  color: #6c757d;

  line-height: 1.9;

  min-height: 130px;
}

.review-card .badge {
  font-size: 13px;

  padding: 8px 14px;

  border-radius: 30px;
}

.review-card .btn {
  border-radius: 30px;

  padding: 8px 18px;
}

.review-card h4 {
  font-size: 20px;

  margin-bottom: 0;
}

@media (max-width: 768px) {
  .review-text {
    min-height: auto;
  }

  .review-user-image {
    width: 60px;

    height: 60px;
  }
}
/* =====================================
   Video Testimonial Section
===================================== */

.video-testimonial-section {
  background: #ffffff;
}

.video-card {
  background: #fff;

  border-radius: 22px;

  overflow: hidden;

  transition: 0.35s;

  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);

  height: 100%;
}

.video-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  position: relative;

  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;

  height: 250px;

  object-fit: cover;

  transition: 0.4s;
}

.video-card:hover img {
  transform: scale(1.08);
}

.play-btn {
  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 75px;

  height: 75px;

  border-radius: 50%;

  background: #198754;

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 30px;

  text-decoration: none;

  transition: 0.3s;

  box-shadow: 0 15px 35px rgba(25, 135, 84, 0.4);
}

.play-btn:hover {
  background: #146c43;

  color: #fff;

  transform: translate(-50%, -50%) scale(1.1);
}

.video-content {
  padding: 28px;
}

.video-content h3 {
  font-size: 24px;

  margin-bottom: 15px;
}

.video-content p {
  color: #6c757d;

  line-height: 1.8;
}

@media (max-width: 768px) {
  .video-thumbnail img {
    height: 220px;
  }

  .video-content {
    padding: 20px;
  }

  .video-content h3 {
    font-size: 20px;
  }
}
/* ======================================
   Featured Projects
====================================== */

.featured-projects-section {
  background: #f8fafc;
}

.project-card {
  background: #fff;

  border-radius: 20px;

  overflow: hidden;

  transition: 0.35s;

  height: 100%;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.project-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.project-image {
  position: relative;

  overflow: hidden;
}

.project-image img {
  width: 100%;

  height: 270px;

  object-fit: cover;

  transition: 0.5s;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-category {
  position: absolute;

  top: 20px;

  left: 20px;

  background: #198754;

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 13px;

  font-weight: 600;
}

.project-content {
  padding: 28px;
}

.project-content h3 {
  font-size: 24px;

  margin-bottom: 15px;
}

.project-content p {
  color: #6c757d;

  line-height: 1.8;
}

.project-meta {
  display: flex;

  justify-content: space-between;

  margin-top: 20px;

  font-size: 15px;

  color: #495057;

  border-top: 1px solid #eee;

  padding-top: 20px;
}

.project-card .btn {
  border-radius: 40px;
}

@media (max-width: 768px) {
  .project-image img {
    height: 220px;
  }

  .project-content {
    padding: 22px;
  }

  .project-content h3 {
    font-size: 20px;
  }

  .project-meta {
    flex-direction: column;

    gap: 10px;
  }
}
/* ===================================
   Why Kryzen
=================================== */

.why-kryzen-section {
  background: #ffffff;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  transition: 0.35s;
  border: 1px solid #eef2f7;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-color: #198754;
}

.feature-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
}

.feature-card p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-card {
    padding: 30px 20px;
  }

  .feature-card h3 {
    font-size: 20px;
  }

  .feature-icon {
    width: 75px;
    height: 75px;
    font-size: 34px;
  }
}
/* =====================================
   Success Story
===================================== */

.success-story-section {
  background: #f8fafc;
}

.story-card {
  background: #fff;

  border-radius: 24px;

  padding: 45px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.story-image {
  overflow: hidden;

  border-radius: 20px;
}

.story-image img {
  width: 100%;

  height: 520px;

  object-fit: cover;

  transition: 0.5s;
}

.story-card:hover img {
  transform: scale(1.05);
}

.story-info {
  background: #f8fafc;

  border-radius: 15px;

  padding: 18px;
}

.story-info small {
  color: #6c757d;
}

.story-info h5 {
  margin: 8px 0 0;

  font-weight: 700;
}

.story-quote {
  margin-top: 35px;

  padding: 25px;

  border-left: 5px solid #198754;

  background: #f8fafc;

  font-size: 18px;

  font-style: italic;

  border-radius: 12px;
}

@media (max-width: 768px) {
  .story-card {
    padding: 25px;
  }

  .story-image img {
    height: 280px;

    margin-bottom: 25px;
  }

  .story-quote {
    font-size: 16px;
  }
}
/* ======================================
   Media Section
====================================== */

.media-section {
  background: #ffffff;
}

.media-card {
  background: #fff;

  border: 1px solid #edf2f7;

  border-radius: 20px;

  padding: 35px 25px;

  text-align: center;

  height: 100%;

  transition: 0.35s;
}

.media-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

  border-color: #198754;
}

.media-card img {
  height: 70px;

  margin-bottom: 25px;

  object-fit: contain;
}

.media-card h4 {
  font-size: 22px;

  margin-bottom: 15px;

  font-weight: 700;
}

.media-card p {
  color: #6c757d;

  line-height: 1.8;

  margin-bottom: 0;
}

/* Trust Logos */

.trust-logos {
  margin-top: 80px;

  padding-top: 50px;

  border-top: 1px solid #e9ecef;
}

.trust-logos img {
  max-height: 60px;

  opacity: 0.65;

  transition: 0.3s;

  filter: grayscale(100%);
}

.trust-logos img:hover {
  opacity: 1;

  filter: none;

  transform: scale(1.08);
}

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

  .media-card img {
    height: 55px;
  }

  .trust-logos img {
    max-height: 45px;
  }
}
/* =====================================
   Google Reviews
===================================== */

.google-review-section {
  background: #f8fafc;
}

.rating-box {
  background: #fff;

  border-radius: 24px;

  padding: 40px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);

  text-align: center;
}

.rating-score h1 {
  font-size: 70px;

  color: #198754;

  font-weight: 800;
}

.rating-stars {
  font-size: 28px;

  color: #ffc107;

  letter-spacing: 3px;
}

.rating-score p {
  color: #6c757d;

  margin-top: 10px;
}

.google-review-card {
  background: #fff;

  border-radius: 20px;

  padding: 25px;

  height: 100%;

  transition: 0.35s;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.google-review-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.google-user {
  width: 60px;

  height: 60px;

  border-radius: 50%;

  object-fit: cover;
}

.google-stars {
  color: #ffc107;

  margin-bottom: 15px;

  font-size: 18px;
}

.google-review-card p {
  color: #6c757d;

  line-height: 1.8;

  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rating-score h1 {
    font-size: 50px;
  }

  .rating-box {
    margin-bottom: 35px;

    padding: 30px;
  }
} /* ===================================
   CTA
=================================== */

.cta-section {
  background: #198754;
}

.cta-wrapper {
  background: linear-gradient(135deg, #198754, #0f5132);

  padding: 70px;

  border-radius: 30px;

  overflow: hidden;

  position: relative;
}

.cta-wrapper::after {
  content: "";

  width: 350px;

  height: 350px;

  position: absolute;

  right: -120px;

  top: -120px;

  background: rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}

.cta-wrapper .btn {
  border-radius: 50px;
}

/* ===================================
   Footer
=================================== */

.footer-section {
  background: #111827;

  color: #fff;

  padding: 80px 0 30px;
}

.footer-text {
  color: #b8c1cc;

  line-height: 1.9;
}

.footer-section h4 {
  margin-bottom: 25px;

  font-size: 20px;
}

.footer-section ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-section li {
  margin-bottom: 14px;
}

.footer-section a {
  color: #b8c1cc;

  transition: 0.3s;
}

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

.footer-contact li {
  line-height: 1.8;
}

.social-links {
  display: flex;

  gap: 12px;
}

.social-links a {
  width: 45px;

  height: 45px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #1f2937;

  border-radius: 50%;

  font-size: 20px;

  transition: 0.3s;
}

.social-links a:hover {
  background: #198754;

  transform: translateY(-4px);
}

.footer-divider {
  margin: 50px 0 25px;

  border-color: rgba(255, 255, 255, 0.08);
}

.copyright {
  margin: 0;

  color: #b8c1cc;
}

@media (max-width: 768px) {
  .cta-wrapper {
    padding: 40px 25px;

    text-align: center;
  }

  .footer-section {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
