/* ============================================
   CIN – COUNTRYSIDE INNOVATIONS NETWORK
   Brand Colors: Maroon (#800020), Yellow (#F5A623), Blue (#302b92)
   ============================================ */

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

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  color: #2d2d2d;
  background: #FFFDF5;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  font-weight: 300;
  color: #302b92;
}

.text-cursive {
  font-family: 'Mansalva', cursive !important;
}

/* ----- BRAND COLORS ----- */
:root {
  --maroon: #800020;
  --maroon-dark: #5a0016;
  --yellow: #F5A623;
  --yellow-dark: #d48a1a;
  --banana-yellow: #FFF8E1;
  --banana-yellow-light: #FFFDF5;
  --primary-blue: #302b92;
  --primary-blue-dark: #1E1A6A;
  --text-muted: #6c7a8a;
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: #ffffff;
  padding: 4px 0;
  border-bottom: 2px solid #302b92;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 2px;
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #302b92;
  background: transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
  font-size: 15px;
  text-decoration: none;
}

.top-bar .social-icons a:hover {
  background: #302b92;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(48, 43, 146, 0.2);
}

/* ============================================
   NAVBAR
   ============================================ */

.site-navbar {
  background: #302b92;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(48, 43, 146, 0.3);
}

.site-navbar .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo .logo-img {
  max-height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-navigation {
  display: flex;
  align-items: center;
}

.site-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.site-menu li {
  display: inline-block;
}

.site-menu li a {
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 18px;
  font-weight: 400;
  font-size: 0.95rem;
  display: block;
}

.site-menu li a:hover,
.site-menu li.active a {
  color: #F5A623;
}

/* ============================================
   HAMBURGER - THREE LINES (PURE CSS)
   ============================================ */

/* Default: Hidden on desktop */
.hamburger {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 12px;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
  min-width: 48px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

/* The three lines */
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Middle line slightly shorter */
.hamburger span:nth-child(2) {
  width: 18px;
}

/* Hover effect */
.hamburger:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.hamburger:hover span {
  background: #F5A623;
}

.hamburger:hover span:nth-child(2) {
  width: 24px;
}

/* ============================================
   MOBILE: SHOW HAMBURGER, HIDE NAV
   ============================================ */

@media (max-width: 992px) {
  .hamburger {
    display: flex !important;
  }
  
  .site-navigation {
    display: none !important;
  }
  
  .site-logo .logo-img {
    max-height: 45px;
  }
}

/* ============================================
   DESKTOP: HIDE HAMBURGER, SHOW NAV
   ============================================ */

@media (min-width: 993px) {
  .hamburger {
    display: none !important;
  }
  
  .site-navigation {
    display: flex !important;
  }
}

/* ============================================
   SMALL PHONES
   ============================================ */

@media (max-width: 576px) {
  .hamburger {
    padding: 8px 10px;
    min-height: 38px;
    min-width: 40px;
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
  }
  
  .hamburger span:nth-child(2) {
    width: 14px;
  }
  
  .site-logo .logo-img {
    max-height: 38px;
  }
}

/* ============================================
   HAMBURGER ANIMATION TO X (when active)
   ============================================ */

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
  width: 24px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
  width: 24px;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

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

.site-mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 80%;
  height: 100%;
  background: #302b92;
  z-index: 9999;
  padding: 30px 25px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.site-mobile-menu.open {
  right: 0;
}

.site-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.site-mobile-menu-header .mobile-logo img {
  max-height: 40px;
}

.site-mobile-menu-close {
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  transition: all 0.3s ease;
}

.site-mobile-menu-close:hover {
  color: #F5A623;
  transform: rotate(90deg);
}

.mobile-nav-wrap {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-wrap li {
  margin-bottom: 5px;
}

.mobile-nav-wrap li a {
  display: block;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-nav-wrap li a:hover,
.mobile-nav-wrap li a.active {
  background: rgba(255, 255, 255, 0.1);
  color: #F5A623;
}

.mobile-social-icons {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 15px;
}

.mobile-social-icons a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  transition: all 0.3s ease;
}

.mobile-social-icons a:hover {
  color: #F5A623;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  font-weight: 400;
  padding: 12px 30px;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #800020;
  border: 1px solid #800020;
  color: #fff;
}

.btn-primary:hover {
  background: #5a0016;
  border-color: #5a0016;
  color: #fff;
}

.btn-yellow {
  background: #F5A623;
  border: 1px solid #F5A623;
  color: #302b92;
}

.btn-yellow:hover {
  background: #d48a1a;
  border-color: #d48a1a;
  color: #302b92;
}

/* ============================================
   HERO
   ============================================ */

.hero-wrapper {
  position: relative;
}

.hero-slide {
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-slide.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(156, 154, 125, 0.322);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 4.5rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 30px;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.4);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #F5A623;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
  min-height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.page-hero.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 43, 146, 0.8);
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 700;
}

.page-hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
}

/* ============================================
   FEATURE BOXES
   ============================================ */

.feature-boxes {
  display: flex;
  flex-wrap: wrap;
  margin-top: -50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-box {
  flex: 1;
  min-height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.85;
}

.feature-engineering::before { background: #800020; }
.feature-training::before { background: #302b92; }
.feature-reach::before { background: #5a0016; }

.feature-text {
  position: relative;
  z-index: 2;
  color: #fff;
}

.feature-text .meta {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
}

.feature-text h3 {
  font-size: 2.2rem;
  color: #fff;
  margin: 5px 0 0;
}

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

.section {
  padding: 70px 0;
  background: #FFFDF5;
}

.section.bg-light {
  background: #FFF8E1;
}

.section-heading h2 {
  font-size: 3rem;
  margin-bottom: 5px;
}

.section-heading p {
  font-size: 1.1rem;
  color: #6c7a8a;
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.1);
}

.service-icon img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #302b92;
}

.service-card h3 a {
  color: #302b92;
}

.service-card h3 a:hover {
  color: #800020;
}

.service-card p {
  color: #6c7a8a;
  font-size: 0.95rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  text-align: left;
}

.service-list li {
  padding: 6px 0;
  padding-left: 25px;
  position: relative;
  font-size: 0.9rem;
  color: #4a5568;
  border-bottom: 1px solid #f0f0f0;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #800020;
  font-weight: 700;
}

/* ============================================
   IMPACT CARDS
   ============================================ */

.impact-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #800020;
  height: 100%;
}

.impact-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #800020;
  line-height: 1.2;
}

.impact-badge {
  background: #F5A623;
  color: #302b92;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin: 8px 0;
}

.impact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #302b92;
}

.impact-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #6c7a8a;
  margin: 10px 0 12px;
}

.impact-stats strong {
  color: #800020;
}

.progress-bar-track {
  width: 100%;
  height: 6px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: #800020;
  border-radius: 4px;
}

.badge-target {
  background: #800020;
  color: #fff;
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  display: inline-block;
}

/* ============================================
   OVERLAY SECTION
   ============================================ */

.overlay-section {
  background: #302b92;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(48, 43, 146, 0.92);
}

.overlay-section .container {
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.feature-number {
  flex: 0 0 50px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5A623;
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.feature-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: #FFF8E1;
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #F5A623;
}

.cta-box h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #302b92;
}

.cta-box p {
  font-size: 1.1rem;
  color: #6c7a8a;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: #302b92;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.site-footer h4 {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.site-footer p {
  font-size: 0.95rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a:hover {
  color: #F5A623;
}

.site-footer .list-unstyled li {
  margin-bottom: 8px;
}

.footer-logo-img {
  max-height: 60px;
  width: auto;
  display: block;
  margin-bottom: 15px;
}

.footer-about {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-address strong {
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-icons .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social-icons .social-link:hover {
  background: #F5A623;
  color: #302b92;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.subscribe-form .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 0;
}

.subscribe-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.subscribe-form .btn {
  border-radius: 0;
}

.site-footer .border-top {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.site-footer .icon-heart {
  color: #800020;
}

/* ============================================
   TEAM CARDS
   ============================================ */

.team-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

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

.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #F5A623;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #302b92;
  margin-bottom: 2px;
}

.team-role {
  color: #800020;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.9rem;
  color: #6c7a8a;
}

/* ============================================
   BLOG CARDS
   ============================================ */

.blog-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.blog-content {
  padding: 20px;
}

.blog-meta {
  font-size: 0.8rem;
  color: #6c7a8a;
  margin-bottom: 10px;
}

.blog-meta span {
  margin-right: 15px;
}

.blog-meta .blog-category {
  background: #F5A623;
  color: #302b92;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
}

.blog-content h3 a {
  color: #302b92;
}

.blog-content h3 a:hover {
  color: #800020;
}

.read-more {
  color: #800020;
  font-weight: 600;
  font-size: 0.9rem;
}

.read-more:hover {
  color: #302b92;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-info-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item .icon-location,
.contact-item .icon-home,
.contact-item .icon-phone,
.contact-item .icon-envelope,
.contact-item .icon-clock {
  font-size: 1.8rem;
  color: #800020;
  flex-shrink: 0;
}

.contact-item h5 {
  font-weight: 600;
  color: #302b92;
  margin-bottom: 2px;
}

.contact-item p {
  margin-bottom: 0;
  color: #6c7a8a;
}

.map-placeholder {
  background: #e9ecef;
  padding: 60px 20px;
  border-radius: 12px;
}

.map-placeholder h4 {
  color: #302b92;
  margin-top: 10px;
}

/* ============================================
   PAGINATION
   ============================================ */

.pagination .page-link {
  color: #302b92;
  border: none;
  padding: 10px 18px;
  margin: 0 3px;
  border-radius: 4px;
}

.pagination .page-link:hover {
  background: #800020;
  color: #fff;
}

.pagination .page-item.active .page-link {
  background: #800020;
  color: #fff;
}

/* ============================================
   ICON BOXES
   ============================================ */

.icon-box {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.icon-box h3 {
  font-weight: 600;
  color: #302b92;
  margin: 15px 0 10px;
}

.icon-box p {
  color: #6c7a8a;
  font-size: 0.95rem;
}

/* ============================================
   STORY CARDS
   ============================================ */

.story-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  position: relative;
  height: 100%;
}

.story-quote {
  font-size: 4rem;
  color: #F5A623;
  line-height: 0.5;
  font-family: Georgia, serif;
}

.story-card p {
  font-size: 1rem;
  color: #4a5568;
  font-style: italic;
  margin: 10px 0 15px;
}

.story-card h5 {
  font-weight: 600;
  color: #302b92;
  font-size: 0.95rem;
}

/* ============================================
   RESULT ITEMS
   ============================================ */

.result-item {
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: #800020;
  display: block;
}

.result-item p {
  font-size: 1rem;
  color: #6c7a8a;
  margin-top: 5px;
}

/* ============================================
   PACKAGE CARDS
   ============================================ */

.package-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  border-top: 4px solid #F5A623;
  height: 100%;
}

.package-card h3 {
  color: #302b92;
  font-weight: 600;
}

.package-tag {
  display: inline-block;
  background: #800020;
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ============================================
   SECTOR ITEMS
   ============================================ */

.sector-item {
  padding: 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.sector-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.sector-item h5 {
  color: #302b92;
  font-weight: 600;
  margin-top: 10px;
}

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

@media (max-width: 992px) {
  .hero-content h1 { font-size: 3rem; }
  .page-hero h1 { font-size: 2.5rem; }
  .feature-boxes { margin-top: -30px; flex-direction: column; }
  .feature-box { min-height: 200px; padding: 20px; width: 100%; }
  .feature-box h3 { font-size: 1.6rem; }
  .section-heading h2 { font-size: 2.4rem; }
  .section { padding: 50px 0; }
  .cta-box { padding: 30px; flex-direction: column; text-align: center; gap: 20px; }
  .impact-number { font-size: 2.2rem; }
  .footer-logo-img { max-height: 45px; }
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero .lead { font-size: 1rem; }
  .feature-boxes { margin-top: -20px; }
  .feature-box { min-height: 180px; }
  .section { padding: 40px 0; }
  .impact-card { margin-bottom: 20px; }
  .cta-box { padding: 20px; }
  .result-number { font-size: 2.2rem; }
  .contact-item { flex-direction: column; gap: 5px; }
  .site-footer { padding: 40px 0 20px; }
  .footer-social-icons .social-link { width: 32px; height: 32px; font-size: 14px; }
  .footer-logo-img { max-height: 45px; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.8rem; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
  .page-hero { min-height: 30vh; }
  .footer-logo-img { max-height: 38px; }
  .footer-social-icons .social-link { width: 28px; height: 28px; font-size: 12px; }
}