/* ===== CSS Variables & Reset ===== */
:root {
  --white: #ffffff;
  --blue: #1e3a8a;
  --blue-light: #3b82f6;
  --blue-dark: #1e2d5f;
  --blue-pale: #eff6ff;
  --black: #111827;
  --gray-dark: #374151;
  --gray-medium: #6b7280;
  --gray-light: #f3f4f6;
  --accent: #f59e0b;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Navbar ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.navbar {
  width: 100%;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-image {
  height: 42px;
  width: auto;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.85;
}

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

.nav-link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--blue);
  background-color: var(--blue-pale);
}
/* Active Nav Link */
.nav-link.active {
  color: #ffffff !important;
  background-color: #1e3a8a !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background-color: var(--black);
  border-radius: 4px;
  transition: var(--transition);
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Banner Section ===== */
.banner-full-image {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  background-color: var(--black);
}

.full-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.banner-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,58,138,0.75) 0%, rgba(17,24,39,0.6) 100%);
}

.banner-text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 800px;
}

.banner-text-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease;
}

.banner-text-overlay p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease;
}

.banner-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--white) 0%, #f0f0f0 100%);
  color: var(--blue);
  padding: 1rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  animation: fadeInUp 1.4s ease;
}

.banner-btn:hover {
  background: var(--blue-light);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Section Common Styles ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

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

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--gray-medium);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== What We Do Section ===== */
.what-we-do-section {
  background-color: var(--white);
  position: relative;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.what-we-do-content {
  padding-right: 1rem;
}

.what-we-do-content .section-title {
  position: relative;
  padding-bottom: 1rem;
}

.what-we-do-content .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 3px;
}

.what-we-do-text {
  font-size: 1.05rem;
  color: var(--gray-dark);
  margin: 1.5rem 0;
  line-height: 1.8;
}

.what-we-do-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gray-dark);
  font-weight: 500;
  padding: 0.5rem 0;
}

.feature-item i {
  color: var(--blue);
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.what-we-do-image {
  position: relative;
}

.what-we-do-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--blue-light);
  border-radius: 20px;
  z-index: -1;
}

.what-we-do-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* ===== Technology Stack Section ===== */
.technology-stack-section {
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  position: relative;
  overflow: hidden;
}

.technology-stack-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  border-radius: 50%;
}

.technology-stack-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
}

.section-tag {
  display: inline-block;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59,130,246,0.3);
}

.technology-stack-section .section-title {
  color: var(--white);
}

.technology-stack-section .highlight {
  color: #60a5fa;
}

.technology-stack-section .section-subtitle {
  color: #94a3b8;
}

/* Tech Stack Row - 5 items per row */
.tech-stack-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.tech-stack-row:last-child {
  margin-bottom: 0;
}

.tech-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.tech-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59,130,246,0.08) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-item:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59,130,246,0.1);
}

.tech-item:hover::before {
  opacity: 1;
}

.tech-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}

.tech-item:hover .tech-icon-wrapper {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(59,130,246,0.5);
}

.tech-info h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.tech-info span {
  color: #60a5fa;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .tech-stack-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-stack-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .tech-stack-row {
    grid-template-columns: 1fr;
  }
}
/* ===== Why Choose Us Tabs ===== */
.why-choose-us-tabs {
  background: var(--white);
  position: relative;
}

.why-choose-us-tabs .highlight {
  color: var(--blue);
}

.tabs-container {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: 12px;
  color: var(--gray-dark);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  background: var(--blue-pale);
  border-color: var(--blue-light);
  color: var(--blue);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3);
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.tab-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

.tab-info h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.tab-info p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.tab-info ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tab-info ul li {
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.tab-info ul li i {
  color: #10b981;
  font-size: 1.1rem;
}
/* ===== NEW: 2 Trust Feature Cards Row ===== */
.trust-features-row {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-feature-mini {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 1rem 1.8rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  min-width: 280px;
}

.trust-feature-mini:hover {
  background: #dcfce7;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.tf-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.tf-text strong {
  display: block;
  color: #065f46;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.tf-text span {
  color: #047857;
  font-size: 0.85rem;
}

/* ===== ENHANCED: Tab Image with Overlay & Hover Effect ===== */
.tab-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.tab-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-image:hover img {
  transform: scale(1.08);
}

/* Image Overlay Badge */
.tab-image-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid #bfdbfe;
  transition: all 0.3s ease;
}

.tab-image-overlay span {
  color: #1e3a8a;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.tab-image:hover .tab-image-overlay {
  background: #1e3a8a;
  border-color: #1e3a8a;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
}

.tab-image:hover .tab-image-overlay span {
  color: white;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .trust-features-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .trust-feature-mini {
    min-width: auto;
    width: 100%;
    max-width: 350px;
  }
}
/* ===== Horizontal Scroll Insights ===== */
.insights-scroll {
  background: #f8fafc;
  overflow: hidden;
}

.insights-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-header-left {
  text-align: left;
}

.section-header-left .section-title {
  margin-bottom: 0.5rem;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border: 2px solid #1e3a8a;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-all-link:hover {
  background: #1e3a8a;
  color: white;
}

.scroll-container {
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.scroll-container::-webkit-scrollbar {
  height: 6px;
}

.scroll-container::-webkit-scrollbar-track {
  background: transparent;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.scroll-grid {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem;
}

.scroll-card {
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.scroll-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.scroll-image {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.scroll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.scroll-card:hover .scroll-image img {
  transform: scale(1.1);
}

.scroll-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, 
    rgba(0,0,0,0.9) 0%, 
    rgba(0,0,0,0.4) 50%, 
    transparent 100%);
}

.scroll-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: white;
}

.scroll-category {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.scroll-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.scroll-meta {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .scroll-card {
    min-width: 300px;
  }
  
  .scroll-image {
    height: 380px;
  }
}
/* ===== Modern Let's Connect Section ===== */
.connect-modern {
  position: relative;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
  overflow: hidden;
}

.connect-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.connect-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: #3b82f6;
  top: -200px;
  right: -200px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  background: #1e3a8a;
  bottom: -150px;
  left: -150px;
}

.connect-wrapper-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.connect-left {
  color: var(--white);
}

.connect-badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.connect-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.connect-title .highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect-description {
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.connect-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.connect-info-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.connect-info-card:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(8px);
}

.connect-icon-circle {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.connect-info-text {
  display: flex;
  flex-direction: column;
}

.connect-label {
  color: #64748b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.2rem;
}

.connect-value {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
}

.connect-social {
  margin-top: 1rem;
}

.social-label {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

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

.social-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-circle:hover {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Form Card */
.form-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #94a3b8;
}

.form-row-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-group select {
  color: #94a3b8;
  cursor: pointer;
}

.form-group select option {
  background: #1a1f35;
  color: white;
}

.submit-btn-modern {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.submit-btn-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}
/* ===== Footer ===== */
.footer-modern {
  background: #06080f;
  position: relative;
}

.footer-top {
  padding: 3rem 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 2.5rem;
}

.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.newsletter-form button {
  padding: 0.75rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.6rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-links-list a i {
  font-size: 0.6rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 5px;
}

.footer-links-list a:hover i {
  color: #60a5fa;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.2rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.5;
  margin: 0;
}

.contact-text a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 1.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-bottom-content strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.dot-divider {
  width: 3px;
  height: 3px;
  background: #4b5563;
  border-radius: 50%;
}

/* ===== Responsive Footer ===== */
@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-large {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-col-large {
    grid-column: 1;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-links-list a {
    justify-content: center;
  }
  
  .footer-contact-list li {
    justify-content: center;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .newsletter-form {
    max-width: 350px;
    margin: 0 auto;
  }
}
.footer-col-large {
  color: #cbd5e1;
}

.footer-logo-wrap {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-newsletter h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: white;
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: #64748b;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #3b82f6;
}

.newsletter-form button {
  padding: 0.85rem 1.2rem;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border: none;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.footer-col h4 {
  color: white;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.8rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links-list a i {
  font-size: 0.65rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
  padding-left: 8px;
}

.footer-links-list a:hover i {
  color: #60a5fa;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-box {
  width: 45px;
  height: 45px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-text span {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-text p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-bottom-content strong {
  color: white;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-bottom-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #60a5fa;
}

.dot-divider {
  width: 4px;
  height: 4px;
  background: #4b5563;
  border-radius: 50%;
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-payment span {
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-payment i {
  font-size: 1.5rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-payment i:hover {
  color: #60a5fa;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .footer-grid-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 968px) {
  .what-we-do-grid,
  .tab-grid,
  .connect-wrapper-modern {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .what-we-do-image {
    order: -1;
  }
  
  .what-we-do-image::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateX(0);
    opacity: 1;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .banner-full-image {
    height: 60vh;
    min-height: 400px;
  }

  .what-we-do-features {
    grid-template-columns: 1fr;
  }

  .form-row-dual {
    grid-template-columns: 1fr;
  }

  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .tabs-nav {
    gap: 0.5rem;
  }
  
  .tab-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .tab-info ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-container {
    padding: 3rem 1rem;
  }
  
  .banner-full-image {
    height: 50vh;
    min-height: 350px;
  }

  .banner-text-overlay h1 {
    font-size: 1.8rem;
  }

  .banner-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }

  .tech-stack-modern {
    grid-template-columns: 1fr;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 1.5rem;
  }
}
/* ===== Modern Services Page Styles ===== */

/* ===== Section Tags ===== */
.section-tag-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #eff6ff;
  color: #1e3a8a;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid #bfdbfe;
}

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

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.highlight {
  color: #1e3a8a;
}

.section-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 550px;
  margin: 0 auto;
}

/* ===== Section Container - Reduced Padding ===== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ===== Technology Solutions ===== */
.tech-solutions-modern {
  background: #ffffff;
}

.solutions-masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.solution-block {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.04);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.solution-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.solution-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.solution-block:hover .solution-image img {
  transform: scale(1.05);
}

.solution-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #1e3a8a;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.solution-details {
  padding: 1.5rem;
}

.solution-details h3 {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.solution-details p {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.solution-details ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.solution-details ul li {
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.solution-details ul li i {
  color: #10b981;
  font-size: 0.7rem;
}

.solution-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #1e3a8a;
  color: white;
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.solution-cta:hover {
  background: #3b82f6;
  transform: translateX(3px);
}

/* ===== Marketing Section ===== */
.marketing-modern {
  background: #f8fafc;
  position: relative;
}

.marketing-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(59,130,246,0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(30,58,138,0.02) 0%, transparent 50%);
  pointer-events: none;
}

.marketing-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

.marketing-showcase-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.marketing-showcase-card.reverse {
  direction: rtl;
}

.marketing-showcase-card.reverse .showcase-body {
  direction: ltr;
}

.showcase-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.showcase-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.showcase-number {
  position: absolute;
  bottom: 2px;
  left: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 10px 25px rgba(30,58,138,0.3);
}

.showcase-body {
  padding: 0.5rem 0;
}

.showcase-icon {
  width: 55px;
  height: 55px;
  background: #eff6ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.showcase-body h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
}

.showcase-body p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.showcase-results {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.result-item {
  text-align: center;
  padding: 0.8rem 1.2rem;
  background: #f1f5f9;
  border-radius: 10px;
  min-width: 100px;
}

.result-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1e3a8a;
  line-height: 1;
}

.result-text {
  font-size: 0.75rem;
  color: #64748b;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.showcase-link:hover {
  gap: 0.6rem;
}

/* ===== Technical Section ===== */
.technical-modern {
  background: #ffffff;
}

.technical-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.skills-title {
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.skills-title i {
  color: #3b82f6;
}

.skill-visual-item {
  margin-bottom: 1.2rem;
}

.skill-visual-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.skill-icon-small {
  width: 35px;
  height: 35px;
  background: #eff6ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a8a;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.skill-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-info span {
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

.skill-percent {
  color: #3b82f6 !important;
}

.skill-progress {
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 10px;
  transition: width 1.5s ease;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.cert-visual-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.cert-visual-card:hover {
  background: #eff6ff;
  border-color: #3b82f6;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(59,130,246,0.08);
}

.cert-icon-wrap {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin: 0 auto 0.8rem;
  box-shadow: 0 5px 15px rgba(30,58,138,0.2);
}

.cert-visual-card h4 {
  font-size: 0.85rem;
  color: #0f172a;
  margin-bottom: 0.2rem;
}

.cert-visual-card span {
  font-size: 0.75rem;
  color: #64748b;
}

/* ===== CTA Section ===== */
.cta-modern {
  position: relative;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15,23,42,0.92) 0%, rgba(30,58,138,0.9) 100%);
}

.cta-modern .section-container {
  padding: 3rem 1.5rem;
}

.cta-content-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content-wrapper h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: white;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.cta-content-wrapper p {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin-bottom: 1.8rem;
}

.cta-button-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-lg {
  background: white;
  color: #1e3a8a;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.cta-btn-lg:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-2px);
}

.cta-btn-outline {
  background: transparent;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

/* ===== Footer ===== */
.footer-modern {
  background: #0a0e1a;
}

.footer-top {
  padding: 2.5rem 0 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo-wrap {
  margin-bottom: 0.8rem;
}

.footer-logo-img {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-about {
  color: #94a3b8;
  line-height: 1.6;
  font-size: 0.85rem;
}

.footer-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

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

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.5rem;
}

.footer-links-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links-list a:hover {
  color: white;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact-list li i {
  color: #3b82f6;
  font-size: 0.8rem;
}

.footer-bottom-bar {
  padding: 1.2rem 0;
  text-align: center;
}

.footer-bottom-bar p {
  color: #64748b;
  font-size: 0.8rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .solutions-masonry {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .marketing-showcase-card {
    grid-template-columns: 1fr;
  }
  
  .marketing-showcase-card.reverse {
    direction: ltr;
  }
  
  .showcase-image img {
    height: 220px;
  }
  
  .technical-showcase {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section-container {
    padding: 2rem 1rem;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .solution-details ul {
    grid-template-columns: 1fr;
  }
  
  .showcase-results {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .certs-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid-main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact-list li {
    justify-content: center;
  }
  
  .cta-button-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .solution-image {
    height: 160px;
  }
  
  .showcase-image img {
    height: 180px;
  }
  
  .showcase-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    bottom: -15px;
    left: 15px;
  }
}

/* ===== Certification Courses Section ===== */
.technical-modern {
  background: #ffffff;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.course-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

.course-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.course-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.course-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #1e3a8a;
  margin: 0 auto 1.2rem;
  transition: all 0.3s ease;
}

.course-card:hover .course-icon {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  transform: rotate(5deg);
}

.course-card h3 {
  font-size: 1.2rem;
  color: #0f172a;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.course-card p {
  color: #64748b;
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.course-info {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.course-info span {
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.course-info span i {
  color: #3b82f6;
}

.course-skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.course-skills span {
  background: #f1f5f9;
  color: #475569;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
}

.course-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1e3a8a;
  color: white;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.course-cta:hover {
  background: #3b82f6;
  transform: translateX(3px);
  box-shadow: 0 5px 20px rgba(59,130,246,0.3);
}

/* Course Features Strip */
.course-features-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: #f8fafc;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  flex-wrap: wrap;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #475569;
  font-weight: 600;
  font-size: 0.9rem;
}

.feature-strip-item i {
  color: #10b981;
  font-size: 1.2rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .course-features-strip {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}



/* my code  */


/* =========================================================
   FOOTER BOTTOM LINKS
   ========================================================= */

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-bottom-links a:hover {
  color: #6c4cff;
}

.dot-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}


/* =========================================================
   POLICY MODAL
   ========================================================= */

.policy-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 99999;
}

.policy-modal.active {
  display: flex;
}


/* Dark background */

.policy-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.75);

  backdrop-filter: blur(5px);
}


/* =========================================================
   MODAL CONTAINER
   ========================================================= */

.policy-modal-content {
  position: relative;

  width: min(760px, 100%);
  max-height: 85vh;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.30);

  z-index: 2;

  animation: policyModalIn 0.25s ease;
}


/* Animation */

@keyframes policyModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* =========================================================
   CLOSE BUTTON
   ========================================================= */

.policy-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  border-radius: 50%;

  background: #f1f2f6;

  color: #333;

  font-size: 15px;

  cursor: pointer;

  transition: all 0.2s ease;

  z-index: 3;
}

.policy-modal-close:hover {
  background: #321b9b;
  color: #ffffff;
  transform: rotate(90deg);
}


/* =========================================================
   MODAL HEADER
   ========================================================= */

.policy-modal-header {
  padding: 30px 35px 20px;

  border-bottom: 1px solid #e7e8ee;
}

.policy-label {
  display: inline-flex;
  align-items: center;

  gap: 7px;

  margin-bottom: 8px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.policy-modal-header h2 {
  margin: 0;

  color: #111827;

  font-size: 26px;

  line-height: 1.3;
}


/* =========================================================
   MODAL BODY
   ========================================================= */

.policy-modal-body {
  max-height: calc(85vh - 120px);

  overflow-y: auto;

  padding: 25px 35px 35px;

  color: #555b6e;

  font-size: 14px;

  line-height: 1.75;
}

.policy-modal-body h3 {
  margin: 22px 0 8px;

  color: #1f2937;

  font-size: 17px;
}

.policy-modal-body h3:first-child {
  margin-top: 0;
}

.policy-modal-body p {
  margin: 0 0 14px;
}

.policy-modal-body ul {
  margin: 8px 0 16px;

  padding-left: 22px;
}

.policy-modal-body li {
  margin-bottom: 7px;
}

.policy-modal-body a {
  color: #321b9b;

  text-decoration: none;

  font-weight: 600;
}

.policy-modal-body a:hover {
  text-decoration: underline;
}


/* =========================================================
   PREVENT BACKGROUND SCROLL
   ========================================================= */

body.policy-modal-open {
  overflow: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .footer-bottom-links {
    justify-content: center;

    margin-top: 10px;
  }

  .policy-modal {
    padding: 12px;
  }

  .policy-modal-content {
    width: 100%;
    max-height: 90vh;

    border-radius: 14px;
  }

  .policy-modal-header {
    padding: 24px 20px 18px;
  }

  .policy-modal-header h2 {
    font-size: 21px;
  }

  .policy-modal-body {
    max-height: calc(90vh - 110px);

    padding: 20px;
  }

  .policy-modal-close {
    top: 12px;
    right: 12px;
  }

}


/* for explore modal */

/* =========================================================
   SERVICE DETAILS MODAL
   ========================================================= */

.service-modal {
  position: fixed;
  inset: 0;

  display: none;

  align-items: center;
  justify-content: center;

  padding: 20px;

  z-index: 99999;
}

.service-modal.active {
  display: flex;
}

.service-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(10, 8, 35, 0.78);

  backdrop-filter: blur(6px);
}

.service-modal-content {
  position: relative;

  width: min(900px, 100%);
  max-height: 88vh;

  overflow-y: auto;

  background: #fff;

  border-radius: 22px;

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.3);

  z-index: 2;

  animation: serviceModalIn 0.3s ease;
}

@keyframes serviceModalIn {

  from {
    opacity: 0;
    transform: translateY(25px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}


/* Close button */

.service-modal-close {
  position: absolute;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.95);

  color: #222;

  cursor: pointer;

  font-size: 16px;

  z-index: 5;

  transition: 0.25s ease;
}

.service-modal-close:hover {
  background: #321b9b;
  color: #fff;
  transform: rotate(90deg);
}


/* Image */

.service-modal-image {
  width: 100%;
  height: 300px;

  overflow: hidden;
}

.service-modal-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Body */

.service-modal-body {
  padding: 32px 38px 38px;
}

.service-modal-label {
  display: inline-flex;

  align-items: center;
  gap: 7px;

  margin-bottom: 10px;

  color: #321b9b;

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.6px;
}

.service-modal-body h2 {
  margin: 0 0 12px;

  color: #151525;

  font-size: 30px;

  line-height: 1.25;
}

.service-modal-description {
  margin: 0 0 25px;

  color: #62677a;

  font-size: 15px;

  line-height: 1.8;
}

.service-modal-body h3 {
  margin: 0 0 14px;

  color: #222;

  font-size: 18px;
}


/* Features */

.service-modal-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;

  margin: 0 0 30px;

  padding: 0;

  list-style: none;
}

.service-modal-features li {
  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding: 13px 15px;

  border-radius: 10px;

  background: #f7f7fb;

  color: #505568;

  font-size: 14px;

  line-height: 1.5;
}

.service-modal-features li i {
  color: #321b9b;

  margin-top: 3px;
}


/* Bottom CTA */

.service-modal-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding-top: 22px;

  border-top: 1px solid #e8e8ee;
}

.service-modal-bottom strong {
  display: block;

  margin-bottom: 4px;

  color: #222;

  font-size: 15px;
}

.service-modal-bottom span {
  display: block;

  color: #777;

  font-size: 13px;
}

.service-modal-cta {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 12px 20px;

  border-radius: 8px;

  background: #321b9b;

  color: #fff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  white-space: nowrap;

  transition: 0.25s ease;
}

.service-modal-cta:hover {
  transform: translateY(-2px);
}


/* Mobile */

@media (max-width: 650px) {

  .service-modal {
    padding: 12px;
  }

  .service-modal-content {
    max-height: 92vh;

    border-radius: 16px;
  }

  .service-modal-image {
    height: 210px;
  }

  .service-modal-body {
    padding: 24px 20px 25px;
  }

  .service-modal-body h2 {
    font-size: 23px;
  }

  .service-modal-features {
    grid-template-columns: 1fr;
  }

  .service-modal-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .service-modal-cta {
    justify-content: center;
  }

}

/* ===== Insight News Modal ===== */
.insight-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.insight-modal.active {
  display: flex;
}

.insight-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
}

.insight-modal-content {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  max-width: 750px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(40px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.insight-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1e3a8a;
  z-index: 10;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.insight-modal-close:hover {
  background: #1e3a8a;
  color: white;
  transform: rotate(90deg);
}

/* Modal Image */
.modal-image-section {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

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

.modal-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.modal-category-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: #1e3a8a;
  color: white;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

/* Modal Content */
.modal-content-section {
  padding: 2rem 2.5rem;
}

.modal-meta-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #64748b;
}

.modal-meta-info i {
  color: #3b82f6;
  margin-right: 0.3rem;
}

.meta-sep {
  color: #cbd5e1;
}

.modal-content-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.modal-summary {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid #3b82f6;
  font-style: italic;
}

/* Full Article Content */
.modal-full-article h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin: 1.5rem 0 0.5rem;
}

.modal-full-article p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.modal-full-article ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.modal-full-article ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.9rem;
}

.modal-full-article ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  margin-top: 1rem;
}

.modal-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.modal-tags span {
  background: #eff6ff;
  color: #1e3a8a;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.modal-share-btn {
  background: #1e3a8a;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.modal-share-btn:hover {
  background: #3b82f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .insight-modal {
    padding: 0.5rem;
  }
  
  .modal-image-section {
    height: 200px;
    border-radius: 16px 16px 0 0;
  }
  
  .modal-content-section {
    padding: 1.5rem;
  }
  
  .modal-content-section h2 {
    font-size: 1.3rem;
  }
  
  .modal-summary {
    font-size: 0.95rem;
  }
}