/* ============================================
   index.css - Source Area Solutions
   Dark-minimalist corporate design
   Enhanced with Carousel, Modals, Footer
   ============================================ */

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A0E17;
  color: #EDF2F8;
  line-height: 1.5;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding-top: 90px;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  margin: 0.75rem 0 0.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2E8FD9;
  background: rgba(46, 143, 217, 0.1);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.highlight {
  color: #2E8FD9;
}

.gradient-text {
  background: linear-gradient(135deg, #FFFFFF, #2E8FD9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== UNIQUE CORPORATE NAVBAR ===== */
.navbar {
  position: fixed;
  top: 30px;
  width: 100%;
  background: rgba(8, 12, 20, 0.92);
  backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(46, 143, 217, 0.2);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(6, 10, 18, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar.hide-nav {
  top: -80px;
  opacity: 0;
  pointer-events: none;
}

.navbar.show-nav {
  top: 30px;
  opacity: 1;
  pointer-events: auto;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-wrapper {
  position: relative;
}

.logo-img {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 2;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background: radial-gradient(circle, rgba(230, 90, 90, 0.3), transparent);
  border-radius: 50%;
  filter: blur(8px);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.company-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.3px;
  color: #FFFFFF;
}

.brand-tagline {
  font-size: 0.55rem;
  letter-spacing: 1px;
  color: #88C9F0;
  text-transform: uppercase;
}

.area-highlight {
  color: #E65A5A;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: #E2E8F0;
  font-weight: 500;
  font-size: 0.8rem;
  transition: 0.25s;
  position: relative;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2E8FD9;
  transition: width 0.25s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active-nav::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #2E8FD9;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #111724;
  min-width: 230px;
  border-radius: 12px;
  padding: 0.75rem 0;
  top: 40px;
  left: -20px;
  box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(230, 90, 90, 0.2);
  backdrop-filter: blur(8px);
  z-index: 1001;
  pointer-events: auto;
}

.dropdown-content a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #EDF2F8;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  pointer-events: auto;
}

.dropdown-content a i {
  width: 20px;
  color: #2E8FD9;
}

.dropdown-content a:hover {
  background: rgba(46, 143, 217, 0.1);
  color: #60A5FA;
  padding-left: 1.8rem;
}

.dropdown:hover .dropdown-content {
  display: block;
  pointer-events: auto;
}

.external-link i {
  font-size: 0.7rem;
  margin-left: 4px;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.nav-progress {
  height: 2px;
  background: linear-gradient(90deg, #E65A5A, #1B2A4A);
  width: 0%;
  transition: width 0.2s;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 23, 0.85), rgba(10, 14, 23, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(46, 143, 217, 0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2E8FD9;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 550px;
  color: #B0B8D0;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: #2E8FD9;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  background: #1B5A99;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(46, 143, 217, 0.4);
}

.btn-outline {
  background: transparent;
  padding: 0.85rem 2rem;
  border-radius: 40px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  border-color: #2E8FD9;
  background: rgba(46, 143, 217, 0.1);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2E8FD9;
}

.stat-label {
  font-size: 0.8rem;
  color: #94A3B8;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: #94A3B8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: #080C14;
  padding: 1rem 0;
  border-top: 1px solid #1A212F;
  border-bottom: 1px solid #1A212F;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0 2rem;
}

.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748B;
}

.trust-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-logos img {
  height: 30px;
  width: auto;
  opacity: 0.5;
  transition: 0.2s;
}

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

/* ===== SOLUTIONS FOCUS ===== */
.solutions-focus {
  padding: 5rem 0;
  background: #0D121C;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.solution-card {
  background: #111722;
  padding: 1.8rem;
  border-radius: 20px;
  border: 1px solid #1F2838;
  transition: all 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: #2E8FD940;
  box-shadow: 0 20px 30px -15px rgba(0, 0, 0, 0.3);
}

.solution-icon {
  font-size: 2.5rem;
  color: #2E8FD9;
  margin-bottom: 1rem;
}

/* ===== ANNOUNCEMENT SECTION ===== */
.announcement-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0D121C 0%, #111722 100%);
  border-top: 1px solid rgba(46, 143, 217, 0.2);
  border-bottom: 1px solid rgba(46, 143, 217, 0.2);
}

.announcement-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem;
  background: rgba(17, 23, 34, 0.5);
  border-radius: 20px;
  border: 1px solid rgba(46, 143, 217, 0.15);
}

.announcement-video {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(46, 143, 217, 0.2);
}

.announcement-video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  background: #000;
}

.announcement-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2E8FD9 0%, #1E5A96 100%);
  padding: 0.75rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(46, 143, 217, 0.3);
  z-index: 10;
}

.badge-icon {
  font-size: 1.2rem;
}

.announcement-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.announcement-title {
  font-size: 2rem;
  color: #FFFFFF;
  line-height: 1.3;
}

.announcement-intro {
  font-size: 1rem;
  color: #B0B8D0;
  line-height: 1.6;
}

.announcement-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item i {
  color: #2E8FD9;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  color: #EDF2F8;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: #8A92A6;
  line-height: 1.5;
}

.announcement-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.announcement-subtitle {
  font-size: 0.85rem;
  color: #8A92A6;
}

/* ===== COMPANY INTRO ===== */
.company-intro {
  padding: 5rem 0;
  background: #0A0E17;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-content p {
  color: #B0B8D0;
  margin: 1.5rem 0;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intro-features div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.intro-features i {
  color: #2E8FD9;
}

.intro-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  border-radius: 24px;
}

.image-stats {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
  padding: 5rem 0;
  background: #0D121C;
}

.service-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.card {
  background: #111722;
  border-radius: 20px;
  padding: 1.8rem;
  flex: 1 1 220px;
  transition: all 0.3s;
  border: 1px solid #1F2838;
}

.card:hover {
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.card i {
  font-size: 2.2rem;
  color: #2E8FD9;
}

.card-link {
  display: inline-block;
  margin-top: 1rem;
  color: #2E8FD9;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===== INDUSTRIES CAROUSEL SECTION ===== */
.industries-carousel-section {
  padding: 3rem 0;
  background: #0A0E17;
  overflow: hidden;
}

.swiper-container {
  width: 100%;
  padding: 3.2rem 1rem 2.5rem;
}

.industries-swiper {
  overflow: visible;
}

.industry-slide {
  background: #111722;
  border-radius: 24px;
  padding: 1.2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #1F2838;
  position: relative;
  overflow: hidden;
}

.industry-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 143, 217, 0.1), transparent);
  transition: left 0.5s;
}

.industry-slide:hover::before {
  left: 100%;
}

.industry-slide:hover {
  transform: translateY(-8px);
  border-color: #2E8FD9;
  box-shadow: 0 20px 35px -12px rgba(46, 143, 217, 0.2);
}

.industry-slide-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1B2A4A, #0F172A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  border: 2px solid #2E8FD940;
  transition: all 0.3s;
}

.industry-slide:hover .industry-slide-icon {
  border-color: #2E8FD9;
  transform: scale(1.05);
}

.industry-slide-icon i {
  font-size: 1.8rem;
  color: #2E8FD9;
  transition: all 0.3s;
}

.industry-slide:hover .industry-slide-icon i {
  color: #5BA4E6;
}

.industry-slide h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.industry-slide p {
  font-size: 0.8rem;
  color: #94A3B8;
}

.industry-slide .click-hint {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  color: #2E8FD9;
  opacity: 0;
  transition: opacity 0.3s;
}

.industry-slide:hover .click-hint {
  opacity: 1;
}

/* Swiper Navigation Styling */
.industries-pagination {
  margin-top: 1rem;
}

.industries-pagination .swiper-pagination-bullet {
  background: #2A3343;
  opacity: 0.6;
}

.industries-pagination .swiper-pagination-bullet-active {
  background: #2E8FD9;
  opacity: 1;
}

.industries-prev,
.industries-next {
  color: #2E8FD9;
  background: #111722;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #2A3343;
  transition: all 0.3s;
  top: 380px !important;
  bottom: auto !important;
}

.industries-prev:hover,
.industries-next:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
}

.industries-prev::after,
.industries-next::after {
  font-size: 1.2rem;
}

/* ===== MODAL BASE STYLES ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #111722;
  border-radius: 24px;
  border: 1px solid #2A3343;
  animation: modalFadeIn 0.3s;
  max-width: 90%;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid #1F2838;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: #94A3B8;
  transition: color 0.2s;
}

.modal-close:hover {
  color: #E65A5A;
}

.modal-body {
  padding: 1.5rem;
}

/* ===== INDUSTRY MODAL - CLIENTS GRID ===== */
.industry-modal-content {
  max-width: 1000px;
}

.industry-clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  padding: 0.5rem 0;
}

.industry-client-card {
  background: #0D121C;
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.2s;
  border: 1px solid #1F2838;
}

.industry-client-card:hover {
  border-color: #E65A5A;
  transform: translateY(-3px);
}

.industry-client-card img {
  width: 80px;
  height: 80px;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 0.75rem;
  border: 2px solid #E65A5A40;
}

.industry-client-card h4 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.industry-client-card p {
  font-size: 0.7rem;
  color: #94A3B8;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: 4rem 0;
  background: #0A0E17;
}

.partners-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}

.partners-wrapper {
  display: flex;
  align-items: center;
  gap: 10rem;
  flex-wrap: wrap;
}

.partner-label {
  background: #1B2A4A;
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #2E8FD9;
  text-decoration: none;
  transition: 0.2s;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.view-all i {
  font-size: 2.1rem;
}

.view-all:hover {
  color: #1B5A99;
  background-color: rgba(46, 143, 217, 0.1);
}

.partner-logos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-logos img {
  width: 85px;
  height: auto;
  filter: brightness(0.7);
  transition: 0.2s;
}

.partner-logos img:hover {
  filter: brightness(1);
}

/* ===== PARTNERS MODAL - FULL GRID ===== */
.partners-modal-content {
  max-width: 1100px;
}

.partners-full-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1.5rem;
  max-height: 500px;
  overflow-y: auto;
  padding: 0.5rem;
}

.partner-card {
  background: transparent;
  border-radius: 0;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.2s;
  border: none;
}

.partner-card:hover {
  border-color: #2E8FD9;
  transform: translateY(-2px);
}

.partner-card img {
  width: 80px;
  height: 80px;
  border-radius: 0;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.partner-card span {
  font-size: 0.7rem;
  display: block;
  color: #94A3B8;
}

/* Scrollbar styling */
.partners-full-grid::-webkit-scrollbar {
  width: 6px;
}

.partners-full-grid::-webkit-scrollbar-track {
  background: #1A212F;
  border-radius: 10px;
}

.partners-full-grid::-webkit-scrollbar-thumb {
  background: #E65A5A;
  border-radius: 10px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0A0E17, #0D121C);
  border-top: 1px solid #1F2838;
}

.cta-container {
  text-align: center;
}

.cta-container h3 {
  font-size: 2rem;
}

.cta-container p {
  margin: 1rem 0;
  color: #94A3B8;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ===== ENHANCED FOOTER ===== */
.footer {
  background: #05080F;
  position: relative;
  margin-top: 0;
}

.footer-wave {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding: 0 32px;
}

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.footer-logo-img {
  height: 42px;
  width: auto;
}

.footer-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: #111722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  transition: all 0.3s;
  border: 1px solid #1F2838;
  text-decoration: none;
}

.social-icons a:hover {
  background: #2E8FD9;
  color: white;
  border-color: #2E8FD9;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #2E8FD9;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: #2E8FD9;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.contact-info li i {
  width: 20px;
  color: #E65A5A;
}

.footer-bottom {
  border-top: 1px solid #1A202E;
  padding: 1.5rem 0;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 32px;
}

.footer-bottom p {
  color: #64748B;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #E65A5A;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
  h1 {
    font-size: 2.8rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 850px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: #0C111C;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem;
    gap: 1.5rem;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
  }
  
  .announcement-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-logo-wrapper {
    justify-content: center;
  }
  
  .footer-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-info li {
    justify-content: center;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .industry-clients-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
  
  .partners-full-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  h2 {
    font-size: 1.6rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .solution-card {
    padding: 1.2rem;
  }
  
  .service-cards {
    flex-direction: column;
  }
  
  .industry-clients-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .announcement-title {
    font-size: 1.4rem;
  }
  
  .announcement-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 1.2rem;
  }
  
  .industry-clients-grid {
    grid-template-columns: 1fr;
  }
}