/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Topbar */
.topbar {
  background: #1a365d;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.topbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-left {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right .social-container {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.fb { background: #3b5998; }
.social-icon.lnk { background: #0077b5; }
.social-icon.yt { background: #ff0000; }
.social-icon.wa { background: #25d366; }

/* Header */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  width: 100px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.company-name {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.company-name .red {
  color: #dc2626;
}

.company-name .blue {
  color: #2563eb;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mainnav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.mainnav li {
  position: relative;
}

.mainnav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  display: block;
  padding: 10px 0;
}

.mainnav a:hover,
.mainnav a.active {
  color: #2563eb;
}

.mainnav a.active::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2563eb;
}

/* Dropdown Menu Styles */
.mainnav li.has-dropdown {
  position: relative;
}

.mainnav li.has-dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 5px;
  font-size: 12px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.mainnav li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu h4 {
  padding: 10px 20px;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 10px;
}

.dropdown-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.dropdown-menu ul li {
  border-bottom: 1px solid #f1f5f9;
}

.dropdown-menu ul li:last-child {
  border-bottom: none;
}

.dropdown-menu ul li a {
  padding: 12px 20px;
  color: #64748b;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s;
  display: block;
}

.dropdown-menu ul li a:hover {
  background: #f8fafc;
  color: #2563eb;
  padding-left: 30px;
}

.dropdown-menu ul li a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-right: 10px;
  font-size: 10px;
  color: #2563eb;
  opacity: 0;
  transition: opacity 0.3s;
}

.dropdown-menu ul li a:hover::before {
  opacity: 1;
}

.btn {
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-success {
  color: white;
  background-color: #2563eb;
  border: 2px solid #2563eb;
}

.btn-outline-success:hover {
  background-color: #1d4ed8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  position: relative;
  z-index: 101;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: white;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
  background: white;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: #000;
  z-index: 100;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  padding: 100px 30px 40px;
  min-height: 100vh;
}

.mobile-menu-overlay .mainnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay .mainnav > ul > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay .mainnav a {
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 20px 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-menu-overlay .mainnav a:hover {
  padding-left: 20px;
  color: #4285f4;
}

/* Mobile Dropdown */
.mobile-menu-overlay .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  background: rgba(255,255,255,0.05);
  margin-top: 10px;
  padding: 10px 0;
  display: none;
  border-radius: 5px;
}

.mobile-menu-overlay .has-dropdown.active .dropdown-menu {
  display: block;
}

.mobile-menu-overlay .dropdown-menu h4 {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.1);
}

.mobile-menu-overlay .dropdown-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu-overlay .dropdown-menu ul li a {
  font-size: 16px;
  padding: 15px 20px;
  color: rgba(255,255,255,0.8);
}

.mobile-menu-overlay .dropdown-menu ul li a:hover {
  background: rgba(255,255,255,0.1);
  color: #4285f4;
}

.mobile-menu-overlay .btn-outline-success {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 15px 20px;
  font-size: 18px;
  text-align: center;
}

/* Hero Section */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-container {
  padding: 80px 20px 50px;
  color: black;
  min-height: 100vh;
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #3b82f6;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.btn-call {
  display: inline-block;
  padding: 15px 40px;
  background: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-call:hover {
  background: #1d4ed8;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-slider-container {
  max-width: 1200px;
  margin: 50px auto 0;
  text-align: center;
}

.hero-slider-container h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.image-scroll {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.image-scroll {
  display: flex;
  gap: 20px;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.image-scroll img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.image-scroll:hover img {
  animation-play-state: paused;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 80px 20px 60px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 20px;
  opacity: 0.9;
}

/* Contact Page Header with Image */
.contact-page-header {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1596526131083-e8c633c948d2?w=1200');
  background-size: cover;
  background-position: center;
  padding: 120px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.contact-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(29, 78, 216, 0.85));
  z-index: 1;
}

.contact-header-content {
  position: relative;
  z-index: 2;
  color: white;
}

.contact-header-content h1 {
  font-size: 56px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-header-content p {
  font-size: 22px;
  margin-bottom: 40px;
  opacity: 0.95;
}

.contact-header-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.header-icon-box {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.header-icon-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px);
}

.header-icon-box i {
  font-size: 32px;
  color: white;
}

/* Sections */
section {
  padding: 80px 20px;
  background: white;
}

.title {
  text-align: center;
  margin-bottom: 50px;
}

.title h3 {
  font-size: 36px;
  color: #1e293b;
  margin-bottom: 10px;
}

.title p {
  color: #64748b;
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

.card i {
  font-size: 48px;
  color: #2563eb;
  margin-bottom: 20px;
}

.card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1e293b;
}

.card p {
  color: #64748b;
  line-height: 1.8;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Service List */
.service-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.service-list {
  list-style: none;
  text-align: center;
  margin-top: 20px;
}

.service-list li {
  padding: 8px 0;
  color: #64748b;
  position: relative;
  padding-left: 25px;
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

/* About Page Styles */
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #64748b;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-list {
  list-style: none;
}

.expertise-list li {
  padding: 10px 0;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 15px;
}

.expertise-list i {
  color: #16a34a;
  font-size: 18px;
}

/* Mission & Vision */
.mission-vision {
  background: white;
  padding: 80px 20px;
}

.mission-box, .vision-box {
  text-align: center;
  padding: 40px;
  background: #f8fafc;
  border-radius: 10px;
}

.mission-box h3, .vision-box h3 {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 20px;
}

.mission-box p, .vision-box p {
  color: #64748b;
  line-height: 1.8;
}

/* Founder Section */
.founder-section {
  padding: 80px 20px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.founder-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.founder-content h2 {
  font-size: 32px;
  color: #1e293b;
  margin-bottom: 15px;
}

.founder-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #64748b;
}

/* Client Stats */
.client-stats {
  background: #2563eb;
  color: white;
  padding: 60px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
}

.stat-box i {
  font-size: 48px;
  margin-bottom: 15px;
}

.stat-box h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.stat-box p {
  font-size: 18px;
  opacity: 0.9;
}

/* Client Cards */
.client-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.client-card:hover {
  transform: translateY(-10px);
}

.client-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.client-card h4 {
  font-size: 20px;
  color: #1e293b;
  margin-bottom: 10px;
}

.client-card p {
  color: #64748b;
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  background: white;
  padding: 80px 20px;
}

.testimonial-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 10px;
  border-left: 4px solid #2563eb;
}

.stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.client-info h5 {
  color: #1e293b;
  margin-bottom: 5px;
}

.client-info span {
  color: #64748b;
  font-size: 14px;
}

/* Blog Styles */
.blog-card {
  overflow: hidden;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-date {
  color: #64748b;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-card h4 {
  margin-bottom: 15px;
}

.read-more {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 80px 20px;
}

.newsletter-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-box h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-box p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 15px 30px;
}

/* Contact Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e293b;
}

.contact-box p {
  margin-bottom: 10px;
  color: #64748b;
}

.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-info-item i {
  font-size: 24px;
  color: #2563eb;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-item h5 {
  color: #1e293b;
  margin-bottom: 8px;
}

.contact-info-item p {
  margin: 0;
  line-height: 1.8;
}

.contact-info-item a {
  color: #2563eb;
  text-decoration: none;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

.social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  transition: background 0.3s;
  text-decoration: none;
}

.social a:hover {
  background: #1d4ed8;
}

/* Contact Form */
.contact-form-box h4 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1e293b;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #1e293b;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 16px;
}

/* Map */
.map-section {
  padding: 0;
}

iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}

/* Quick Contact */
.quick-contact .card {
  padding: 40px 30px;
}

.quick-contact .card i {
  font-size: 60px;
  margin-bottom: 20px;
}

.quick-contact .btn-call {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-section .btn-call {
  background: white;
  color: #2563eb;
}

.cta-section .btn-call:hover {
  background: #f1f5f9;
}

/* Footer */
footer {
  background: #1e293b;
  color: white;
  padding: 50px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

footer h3, footer h5 {
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
}

footer li {
  padding: 5px 0;
  color: #94a3b8;
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .topbar-left span {
    font-size: 12px;
  }

  .topbar-left {
    gap: 10px;
  }

  .nav-wrap .mainnav,
  .nav-wrap .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-wrapper,
  .about-grid,
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-slider-container h3 {
    font-size: 22px;
  }

  .image-scroll img {
    width: 200px;
    height: 140px;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-880px); }
  }

  .title h3 {
    font-size: 28px;
  }

  .title p {
    font-size: 16px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 50px 20px;
  }

  .company-name {
    font-size: 16px;
  }

  .logo img {
    width: 60px;
    height: 40px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }
}
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    border-top: 2px solid #333;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* ✅ Hover effect (optional) */
.footer-bottom:hover p {
    color: #1a365d;
    transition: color 0.3s ease;
}
@media (max-width: 600px) {
  .topbar {
    font-size: 11px;
  }

  .topbar-main {
    flex-direction: column;
    text-align: center;
  }

  .hero-content h1,
  .page-header h1 {
    font-size: 26px;
  }

  .hero-slider-container h3 {
    font-size: 20px;
  }

  .card {
    padding: 20px;
  }

  .card h4 {
    font-size: 18px;
  }

  .page-header {
    padding: 60px 20px 40px;
  }

  .stats-grid {
    grid-template-
