/* =============================================
   CAPITAL SPARK - MAIN STYLESHEET
   Theme Colors: Blue (#1E3A8A), Orange (#EA580C)
   ============================================= */

/* CSS Variables */
:root {
  /* --cs-primary-blue: #1e3a8a;
  --cs-primary-orange: #ea580c; */
  --cs-primary-blue: #ea580c;
  --cs-primary-orange: #1e3a8a;
  --cs-dark: #1f2937;
  --cs-darker: #111827;
  --cs-light: #f9fafb;
  --cs-gray: #6b7280;
  --cs-gray-light: #e5e7eb;
  --cs-white: #ffffff;
  --cs-font: "Poppins", sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--cs-font);
  font-weight: 300;
  color: var(--cs-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utility Classes */
.cs-text-orange {
  color: var(--cs-primary-orange);
}

.cs-text-blue {
  color: var(--cs-primary-blue);
}

/* =============================================
   HEADER STYLES
   ============================================= */
.cs-header {
  background: var(--cs-darker);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.cs-logo {
  height: 45px;
  width: auto;
}

.cs-nav-list {
  gap: 5px;
}

.cs-nav-link {
  color: var(--cs-white) !important;
  font-weight: 400;
  font-size: 14px;
  padding: 8px 15px !important;
  transition: color 0.3s ease;
}

.cs-nav-link:hover,
.cs-nav-link.cs-active {
  color: var(--cs-primary-orange) !important;
}

.cs-dropdown {
  background: var(--cs-white);
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 10px;
}

.cs-dropdown-item {
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.cs-dropdown-item:hover {
  background: var(--cs-light);
  color: var(--cs-primary-orange);
}

.cs-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 20px;
}

.cs-btn-primary {
  background: var(--cs-primary-orange);
  color: var(--cs-white);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.cs-btn-primary:hover {
  background: #c2410c;
  color: var(--cs-white);
  transform: translateY(-2px);
}

.cs-btn-outline {
  border: 1px solid var(--cs-gray-light);
  color: var(--cs-dark);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
}

.cs-btn-outline:hover {
  border-color: var(--cs-primary-orange);
  color: var(--cs-primary-orange);
}

.cs-lang-selector {
  background: var(--cs-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
}

.cs-toggler {
  border-color: var(--cs-white);
}

.cs-toggler .navbar-toggler-icon {
  filter: invert(1);
}

/* =============================================
   HERO SECTION
   ============================================= */
.cs-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
              url('https://images.unsplash.com/photo-1560250097-0b93528c311a?w=1200&h=800&fit=crop') center/cover no-repeat;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  max-height: 75vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.cs-hero .container {
  width: 100%;
}

.cs-hero .row {
  justify-content: center;
}

.cs-hero .col-lg-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cs-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--cs-white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.cs-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--cs-white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cs-hero-title span {
  color: var(--cs-primary-orange);
}

.cs-hero-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 600px;
}

.cs-hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.cs-hero-btns .cs-btn-primary {
  background: var(--cs-primary-orange);
  border: none;
}

.cs-hero-btns .cs-btn-primary:hover {
  background: var(--cs-darker);
  transform: translateY(-2px);
}

.cs-hero-btns .cs-btn-outline {
  border: 2px solid var(--cs-white);
  color: var(--cs-white);
  background: transparent;
}

.cs-hero-btns .cs-btn-outline:hover {
  background: var(--cs-white);
  color: var(--cs-primary-orange);
  transform: translateY(-2px);
}

.cs-partners-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cs-partners-strip span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
}

.cs-partner-logos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.cs-partner-logos img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.cs-partner-logos img:hover {
  opacity: 1;
}

.cs-hero-image {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .cs-hero {
    padding: 40px 0;
    max-height: 85vh;
  }
  
  .cs-hero-title {
    font-size: 36px;
  }
  
  .cs-hero-text {
    font-size: 14px;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .cs-hero {
    padding: 30px 0;
    max-height: 90vh;
  }
  
  .cs-hero-title {
    font-size: 28px;
  }
  
  .cs-hero-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .cs-hero-btns .cs-btn-primary,
  .cs-hero-btns .cs-btn-outline {
    width: 200px;
  }
  
  .cs-partners-strip {
    flex-direction: column;
    gap: 15px;
  }
  
  .cs-hero-tag {
    font-size: 11px;
    padding: 6px 16px;
  }
}

@media (max-width: 576px) {
  .cs-hero {
    padding: 20px 0;
  }
  
  .cs-hero-title {
    font-size: 24px;
  }
  
  .cs-hero-text {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .cs-hero-btns {
    margin-bottom: 30px;
  }
  
  .cs-partner-logos img {
    height: 25px;
  }
}

/* =============================================
   SECTION COMMON STYLES
   ============================================= */
.cs-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cs-primary-orange);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.cs-tag-light {
  color: var(--cs-primary-orange);
}

.cs-section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cs-section-header {
  text-align: center;
  margin-bottom: 50px;
}

/* =============================================
   FUNDING SECTION
   ============================================= */
.cs-funding {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-funding-card {
  background: var(--cs-white);
  border: 1px solid var(--cs-gray-light);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cs-funding-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.cs-funding-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.cs-funding-icon {
  width: 40px;
  height: 40px;
  background: var(--cs-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-blue);
  font-size: 18px;
}

.cs-funding-name {
  background: var(--cs-primary-orange);
  color: var(--cs-white);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
}

.cs-funding-amount {
  background: var(--cs-light);
  color: var(--cs-primary-orange);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 500;
  margin-left: auto;
}

.cs-funding-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
}

.cs-funding-desc {
  font-size: 14px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 0;
}

/* =============================================
   ABOUT SNIPPET SECTION
   ============================================= */
.cs-about-snippet {
  padding: 80px 0;
  background: var(--cs-light);
}

.cs-about-image {
  position: relative;
}

.cs-about-image img {
  width: 100%;
  border-radius: 20px;
}

.cs-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: var(--cs-primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-white);
  font-size: 36px;
}

.cs-about-text {
  font-size: 15px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.cs-features-grid {
  margin-top: 30px;
}

.cs-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cs-feature-item i {
  width: 35px;
  height: 35px;
  background: var(--cs-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-orange);
  font-size: 16px;
  flex-shrink: 0;
}

.cs-feature-item span {
  font-size: 14px;
  font-weight: 400;
  color: var(--cs-dark);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.cs-services {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-services-text {
  font-size: 15px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.cs-service-card {
  background: var(--cs-white);
  border: 1px solid var(--cs-gray-light);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cs-service-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--cs-primary-orange);
}

.cs-service-icon {
  width: 60px;
  height: 60px;
  background: var(--cs-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-orange);
  font-size: 28px;
  margin-bottom: 20px;
}

.cs-service-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
}

.cs-service-desc {
  font-size: 14px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 0;
}

/* =============================================
   CONTACT FORM SECTION
   ============================================= */
.cs-contact-section {
  padding: 80px 0;
  background: var(--cs-light);
}

.cs-contact-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.cs-contact-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.cs-contact-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.cs-contact-overlay h3 {
  color: var(--cs-white);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
}

.cs-contact-form-wrapper {
  padding: 40px;
}

.cs-contact-form {
  margin-top: 30px;
}

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

.cs-form-input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--cs-gray-light);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--cs-font);
  transition: all 0.3s ease;
  background: var(--cs-white);
}

.cs-form-input:focus {
  outline: none;
  border-color: var(--cs-primary-orange);
}

.cs-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.cs-btn-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 30px;
  font-size: 16px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.cs-testimonials {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-testimonial-card {
  background: var(--cs-light);
  border-radius: 20px;
  padding: 40px;
}

.cs-testimonial-text {
  font-size: 16px;
  font-weight: 300;
  color: var(--cs-dark);
  line-height: 1.8;
  margin-bottom: 30px;
}

.cs-testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.cs-testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.cs-author-info h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 3px;
}

.cs-author-info span {
  font-size: 13px;
  color: var(--cs-gray);
  font-weight: 300;
}

.cs-testimonial-ratings {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--cs-gray-light);
}

.cs-rating-item {
  text-align: center;
}

.cs-rating-source {
  display: block;
  font-size: 12px;
  color: var(--cs-gray);
  font-weight: 400;
  margin-bottom: 5px;
}

.cs-rating-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-dark);
}

.cs-rating-value i {
  color: #facc15;
}

/* =============================================
   STATS SECTION
   ============================================= */
.cs-stats {
  padding: 80px 0;
  background: var(--cs-darker);
}

.cs-stats-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--cs-white);
  margin-bottom: 50px;
}

.cs-stat-item {
  text-align: center;
  padding: 20px;
}

.cs-stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-orange);
  font-size: 24px;
  margin: 0 auto 15px;
}

.cs-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--cs-white);
  margin-bottom: 5px;
}

.cs-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  margin-bottom: 0;
}

/* =============================================
   PARTNERS SECTION
   ============================================= */
.cs-partners {
  padding: 60px 0;
  background: var(--cs-white);
}

.cs-partners-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.cs-partners-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.cs-partner-item img {
  max-height: 50px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.cs-partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* =============================================
   BLOG PREVIEW SECTION
   ============================================= */
.cs-blog-preview {
  padding: 80px 0;
  background: var(--cs-light);
}

.cs-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.cs-blog-card {
  background: var(--cs-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cs-blog-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.cs-blog-image {
  position: relative;
}

.cs-blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cs-blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--cs-darker);
  color: var(--cs-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.cs-blog-content {
  padding: 20px;
}

.cs-blog-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.cs-blog-title-sm {
  font-size: 14px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.cs-blog-date {
  display: block;
  font-size: 12px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 10px;
}

.cs-blog-link {
  color: var(--cs-primary-orange);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-blog-link:hover {
  color: #c2410c;
}

.cs-blog-large .cs-blog-image img {
  height: 300px;
}

/* =============================================
   FOOTER STYLES
   ============================================= */
.cs-footer {
  background: var(--cs-darker);
  padding-top: 60px;
}

.cs-footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.cs-footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 20px;
}

.cs-social-links {
  display: flex;
  gap: 10px;
}

.cs-social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-social-link:hover {
  background: var(--cs-primary-orange);
  color: var(--cs-white);
}

.cs-footer-title {
  color: var(--cs-white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cs-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-footer-list li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cs-footer-list li i {
  color: var(--cs-primary-orange);
  margin-top: 3px;
}

.cs-footer-subtitle {
  color: var(--cs-white) !important;
  font-weight: 500 !important;
  margin-top: 20px !important;
}

.cs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-footer-links li {
  margin-bottom: 10px;
}

.cs-footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-footer-links a:hover {
  color: var(--cs-primary-orange);
}

.cs-footer-disclaimer {
  background: #0d1117;
  padding: 30px 0;
  margin-top: 40px;
}

.cs-footer-disclaimer p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 300;
  margin-bottom: 15px;
  line-height: 1.7;
}

.cs-footer-disclaimer p:last-child {
  margin-bottom: 0;
}

.cs-footer-bottom {
  background: var(--cs-darker);
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cs-footer-bottom-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 0;
}

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

.cs-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-footer-legal a:hover {
  color: var(--cs-primary-orange);
}

/* =============================================
   FLOATING ACTIONS
   ============================================= */
.cs-floating-actions {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.cs-float-btn {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-white);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cs-float-btn:hover {
  transform: scale(1.1);
  color: var(--cs-white);
}

.cs-float-phone {
  background: var(--cs-primary-blue);
}

.cs-float-email {
  background: var(--cs-dark);
}

.cs-float-whatsapp {
  background: #25d366;
}

/* =============================================
   PAGE HERO (About & Blog)
   ============================================= */
.cs-page-hero {
  background: var(--cs-darker);
  padding: 80px 0;
  text-align: center;
}

.cs-page-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--cs-white);
}

/* =============================================
   ABOUT PAGE SPECIFIC
   ============================================= */
.cs-about-main {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-about-main-image {
  position: relative;
}

.cs-about-main-image img {
  width: 100%;
  border-radius: 20px;
}

.cs-about-badge-ring {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--cs-primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
}

.cs-about-badge-ring span {
  color: var(--cs-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.cs-about-desc {
  font-size: 15px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.cs-about-features {
  margin-top: 30px;
}

.cs-about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.cs-about-feature i {
  width: 40px;
  height: 40px;
  background: var(--cs-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-primary-orange);
  font-size: 18px;
  flex-shrink: 0;
}

.cs-about-feature span {
  font-size: 14px;
  font-weight: 400;
  color: var(--cs-dark);
}

/* Mission Vision Section */
.cs-mission-vision {
  padding: 80px 0;
  background: var(--cs-light);
}

.cs-mv-card {
  background: var(--cs-white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

.cs-mv-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cs-mv-content {
  padding: 30px;
}

.cs-mv-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 15px;
}

.cs-mv-text {
  font-size: 13px;
  color: var(--cs-gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Why Choose Us Section */
.cs-why-choose {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.cs-why-header .cs-section-title {
  max-width: 500px;
}

.cs-why-card {
  text-align: center;
  padding: 30px 20px;
}

.cs-why-icon {
  width: 70px;
  height: 70px;
  background: var(--cs-primary-orange);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cs-white);
  font-size: 28px;
  margin: 0 auto 20px;
}

.cs-icon-blue {
  background: var(--cs-primary-blue);
}

.cs-icon-orange {
  background: var(--cs-primary-orange);
}

.cs-icon-green {
  background: #059669;
}

.cs-why-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
}

.cs-why-text {
  font-size: 13px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 0;
}

/* =============================================
   BLOG PAGE SPECIFIC
   ============================================= */
.cs-blog-grid {
  padding: 80px 0;
  background: var(--cs-white);
}

.cs-blog-card-full {
  background: var(--cs-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.cs-blog-card-full:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.cs-blog-card-image {
  position: relative;
  background: var(--cs-primary-orange);
}

.cs-blog-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.cs-blog-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--cs-darker);
  color: var(--cs-white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
}

.cs-blog-card-overlay {
  position: absolute;
  top: 50px;
  left: 15px;
  right: 15px;
}

.cs-blog-category {
  color: var(--cs-white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-blog-card-url {
  position: absolute;
  bottom: 10px;
  right: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 400;
}

.cs-blog-card-content {
  padding: 25px;
}

.cs-blog-card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cs-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.cs-blog-card-date {
  display: block;
  font-size: 12px;
  color: var(--cs-gray);
  font-weight: 300;
  margin-bottom: 15px;
}

.cs-blog-card-link {
  color: var(--cs-primary-orange);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cs-blog-card-link:hover {
  color: #c2410c;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 991px) {
  .cs-hero-title {
    font-size: 36px;
  }

  .cs-hero-image {
    margin-top: 40px;
    text-align: center;
  }

  .cs-header-actions {
    margin: 20px 0;
    justify-content: center;
  }

  .cs-nav-list {
    text-align: center;
    padding: 20px 0;
  }

  .cs-section-title {
    font-size: 28px;
  }

  .cs-stats-title {
    font-size: 28px;
  }

  .cs-about-badge-ring {
    width: 100px;
    height: 100px;
    top: -10px;
    right: -10px;
  }

  .cs-why-header {
    text-align: center;
  }

  .cs-why-header .cs-section-title {
    max-width: 100%;
  }

  .cs-blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .cs-hero {
    padding: 60px 0;
  }

  .cs-hero-title {
    font-size: 28px;
  }

  .cs-hero-btns {
    flex-direction: column;
  }

  .cs-hero-stat {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
    display: inline-block;
  }

  .cs-partners-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-floating-actions {
    bottom: 20px;
    top: auto;
    transform: none;
    flex-direction: row;
    right: 50%;
    transform: translateX(50%);
  }

  .cs-page-title {
    font-size: 32px;
  }

  .cs-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .cs-testimonial-ratings {
    flex-direction: column;
    gap: 20px;
  }

  .cs-contact-form-wrapper {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .cs-stat-value {
    font-size: 24px;
  }

  .cs-stat-label {
    font-size: 11px;
  }
}
