/* ===================================
   SIDDIQ SHAFI GROUP - Main Stylesheet
   =================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #07649D;
  --primary-dark-blue: #005580;
  --accent-lime: #C5D436;
  --accent-lime-dark: #a8b82e;
  --dark-teal: #0a7eb5;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #999999;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --footer-bg: #07649D;
  --header-shadow: 0 2px 10px rgba(0,0,0,0.1);
  --card-shadow: 0 4px 15px rgba(0,0,0,0.08);
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--header-shadow);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 30px;
}

.header-logo img {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  border-left: 1px solid #e0e0e0;
  transition: var(--transition);
}

.main-nav > li:first-child > a {
  border-left: none;
}

.main-nav > li > a:hover,
.main-nav > li > a.active {
  color: var(--primary-blue);
}

.main-nav > li > a .dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-top: 3px solid var(--primary-blue);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.main-nav > li:hover .dropdown-menu,
.main-nav > li.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: var(--primary-blue);
  color: var(--white);
  padding-left: 25px;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

/* Header Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.email-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  transition: var(--transition);
}

.email-icon:hover {
  background: var(--accent-lime-dark);
  transform: scale(1.1);
}

.btn-contact {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--primary-blue);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-contact:hover {
  background: transparent;
  color: var(--primary-blue);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO BANNER (Inner Pages) ===== */
.hero-banner {
  position: relative;
  height: 350px;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-banner h1 {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}

/* ===== HOMEPAGE SECTIONS ===== */

/* Welcome Section */
.welcome-section {
  padding: 80px 0 60px;
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.welcome-image-wrapper {
  position: relative;
}

.dots-pattern {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 280px;
  height: 200px;
  opacity: 0.4;
  z-index: 0;
}

.welcome-main-image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  background: #b4d4e7;
  padding: 20px;
}

.welcome-main-image img {
  width: 100%;
  border-radius: 6px;
}

.years-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  z-index: 2;
  background: var(--accent-lime);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(197, 212, 54, 0.4);
}

.years-badge .counter {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.years-badge .counter-label {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
  margin-top: 5px;
}

.welcome-content {
  padding-right: 20px;
}

.welcome-content .icon-logo {
  width: 60px;
  margin-bottom: 15px;
}

.welcome-content h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.welcome-content h2 span {
  color: var(--primary-blue);
  display: block;
}

.welcome-content p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.btn-readmore {
  display: inline-block;
  padding: 12px 35px;
  background: var(--accent-lime);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  margin-top: 15px;
  transition: var(--transition);
  border: 2px solid var(--accent-lime);
}

.btn-readmore:hover {
  background: transparent;
  color: var(--accent-lime-dark);
}

/* Info Cards Section */
.info-cards-section {
  padding: 60px 0;
  background: var(--light-gray);
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.info-card:hover {
  transform: translateY(-5px);
  border-bottom-color: var(--primary-blue);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.info-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.info-card .card-link {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.info-card .card-link:hover {
  color: var(--accent-lime-dark);
  gap: 10px;
}

/* Bottom CTA Section */
.bottom-cta {
  padding: 60px 0;
  background: var(--white);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-image {
  position: relative;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  background: var(--primary-blue);
  padding: 50px 40px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-circle {
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent-lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-lime);
  flex-shrink: 0;
}

.stat-divider {
  width: 2px;
  height: 50px;
  background: rgba(255,255,255,0.3);
}

.stat-text h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-text p {
  font-size: 14px;
  color: var(--accent-lime);
  font-weight: 600;
  margin-bottom: 0;
}

.stat-separator {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 5px 0;
}

/* ===== COMPANY PROFILE PAGE ===== */
.content-section {
  padding: 80px 0;
  background: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.content-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.content-text h2 span {
  color: var(--primary-blue);
}

.content-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.content-image {
  position: relative;
}

.content-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-image::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--accent-lime);
  border-radius: 8px;
  z-index: -1;
}

/* ===== MISSION / VISION / VALUES PAGE ===== */
.vision-section {
  padding: 80px 0;
  background: var(--white);
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.vision-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.vision-text h2 span {
  color: var(--primary-blue);
}

.vision-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}

.values-section {
  padding: 60px 0 80px;
  background: var(--light-gray);
}

.values-section h2 {
  text-align: center;
  font-size: 26px;
  color: var(--text-dark);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
  padding: 30px 15px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: var(--white);
  font-size: 24px;
}

.value-item h4 {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== GROUP COMPANIES PAGE ===== */
.companies-section {
  padding: 80px 0;
  background: var(--white);
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.company-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 35px 25px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  border-color: var(--primary-blue);
}

.company-logo {
  height: 80px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.company-logo img {
  max-height: 80px;
  width: auto;
}

.company-card h3 {
  font-size: 18px;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 600;
}

.company-card .company-address {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
}

.company-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: var(--text-light);
}

.company-detail:last-child {
  border-bottom: none;
}

.company-detail .detail-icon {
  color: var(--accent-lime);
  font-size: 16px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.company-detail a {
  color: var(--text-light);
}

.company-detail a:hover {
  color: var(--primary-blue);
}

/* China Office */
.china-office {
  margin-top: 40px;
  padding: 35px 25px;
  background: var(--light-gray);
  border-radius: 10px;
  border-left: 4px solid var(--primary-blue);
}

.china-office h3 {
  font-size: 20px;
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.china-office .company-address {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* ===== TRUST PAGE ===== */
.trust-section {
  padding: 80px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.trust-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.trust-text h2 span {
  color: var(--primary-blue);
}

.trust-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 16px;
}

.trust-text blockquote {
  border-left: 4px solid var(--accent-lime);
  padding: 15px 20px;
  margin: 20px 0;
  background: var(--light-gray);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.contact-text h2 span {
  color: var(--primary-blue);
}

.contact-text p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* Contact Form */
.contact-form-section {
  padding: 0 0 80px;
  background: var(--white);
}

.contact-form-section h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.contact-form {
  max-width: 800px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--light-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(7, 100, 157, 0.1);
  background: var(--white);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--primary-blue);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--primary-blue);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  background: transparent;
  color: var(--primary-blue);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
}

.footer-logo .btn-contact-sm {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-lime);
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}

.footer-logo .btn-contact-sm:hover {
  background: var(--accent-lime-dark);
}

.footer-col h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-lime);
  display: inline-block;
  letter-spacing: 1px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-info-item .info-icon {
  color: var(--accent-lime);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  opacity: 0.85;
  transition: var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 8px;
  color: var(--accent-lime);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets */
@media (max-width: 1024px) {
  .header-inner {
    padding: 10px 20px;
  }

  .main-nav > li > a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .welcome-grid,
  .content-grid,
  .vision-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-container {
    grid-template-columns: 1fr;
  }

  .companies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 0 30px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s ease;
    overflow-y: auto;
    z-index: 999;
  }

  .main-nav.open {
    right: 0;
  }

  .main-nav > li > a {
    border-left: none;
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 25px;
    font-size: 15px;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: var(--light-gray);
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-menu li a {
    padding-left: 40px;
  }

  .header-logo img {
    height: 50px;
  }

  .header-actions {
    gap: 10px;
  }

  .btn-contact {
    display: none;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
  }

  .mobile-overlay.active {
    display: block;
  }

  /* Hero Banner */
  .hero-banner {
    height: 250px;
  }

  .hero-banner h1 {
    font-size: 28px;
  }

  /* Welcome Section */
  .welcome-section {
    padding: 50px 0 40px;
  }

  .welcome-content h2 {
    font-size: 28px;
  }

  .years-badge {
    right: 10px;
    bottom: -15px;
  }

  .years-badge .counter {
    font-size: 32px;
  }

  /* Cards */
  .info-cards-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 25px 20px;
  }

  /* CTA */
  .cta-content {
    padding: 30px 20px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Companies */
  .companies-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .content-image::after {
    display: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-banner {
    height: 200px;
  }

  .hero-banner h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }

  .welcome-content h2 {
    font-size: 24px;
  }

  .content-text h2,
  .vision-text h2,
  .trust-text h2,
  .contact-text h2 {
    font-size: 26px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .value-item {
    padding: 20px 10px;
  }

  .stat-circle {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
