

/* ===== ISEO STYLE HEADER WITH YOUR CLASSES ===== */
header.d-none.d-lg-block {
  background: #0a1a3a; /* Dark Navy */
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

header .bg-white {
  background: transparent !important;
}

header .header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 18px 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
header .header-logo img {
  height: 80px;
  width: auto;
  margin-top:-32px;
  filter: brightness(0) invert(1);
}

/* Main Menu */
header .primary-menu .main-menu {
  display: flex;
  list-style: none;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

header .primary-menu .main-menu > li {
  position: relative;
}

header .primary-menu .main-menu > li > a {
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
  display: block;
}

header .primary-menu .main-menu > li > a:hover,
header .primary-menu .main-menu > li > a.active {
  color: #22c55e; /* Green hover */
}

/* Dropdown - Submenu */
header .primary-menu .submenu {
  position: absolute;
  top: 150%;
  left: 0;
  background: #12224d;
  border-radius: 8px;
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  list-style: none;
  z-index: 999;
}

header .primary-menu .main-menu > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

header .primary-menu .submenu li a {
  color: #fff;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s;
}

header .primary-menu .submenu li a:hover {
  background: rgba(34,197,94,0.1);
  color: #22c55e;
}

/* Green CTA Button */
header .herder-icon {
  margin-left: 1rem;
}
header .herder-icon .btn-audit {
  background: #22c55e; /* Green Button */
  color: #ffffff !important;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s;
  display: inline-block;
  white-space: nowrap;
}
header .herder-icon .btn-audit:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* Hide old cart and search */
header .search-cart { display: none !important; }

/* Responsive */
@media (max-width: 991px) {
  header.d-none.d-lg-block { display: block !important; }
  header .header-menu { display: none; }
  header .herder-icon { display: none; }
}

.m-menu li a{
    color:white !important;
}


/* === HERO SECTION PRO DESIGN === */
.hero-iseous-pro {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding-top: 120px;
  padding-bottom: 100px;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* Badge */
.hero-left .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* Heading */
.hero-left h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #0a1a3a; /* Pro Navy */
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-left h1 .gradient-text {
  background: linear-gradient(90deg, #0a1a3a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-left p {
  font-size: 18px;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 560px;
}

/* Buttons Pro */
.hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}
.hero-buttons .btn-primary {
  background: linear-gradient(90deg, #0a1a3a, #1e3a8a);
  color: #fff; 
  padding: 18px 36px; 
  border-radius: 12px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.25);
}
.hero-buttons .btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 40px rgba(10, 26, 58, 0.35);
}
.hero-buttons .btn-secondary {
  background: #fff; 
  color: #0a1a3a;
  padding: 18px 36px; 
  border-radius: 12px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 16px;
  border: 2px solid #cbd5e1;
  transition: 0.3s;
}
.hero-buttons .btn-secondary:hover { 
  background: #0a1a3a;
  color: #fff;
  border-color: #0a1a3a;
  transform: translateY(-3px);
}

/* Features */
.hero-left .features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
}
.hero-left .features li {
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Right Side */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-right .laptop {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(10, 26, 58, 0.15);
}

/* Floating Cards Pro */
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(10, 26, 58, 0.12);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: #0a1a3a;
  backdrop-filter: blur(10px);
}
.floating-card small { display: block; color: #64748b; font-size: 12px; font-weight: 500; }
.floating-card b { font-weight: 800; color: #2563eb; font-size: 16px; }
.floating-card img { width: 26px; height: 26px; }
.card1 { top: 8%; left: -12%; animation: float 6s ease-in-out infinite; }
.card2 { top: 22%; right: -18%; animation: float 6s ease-in-out infinite 1s; }
.card3 { bottom: 32%; left: -18%; animation: float 6s ease-in-out infinite 2s; }
.card4 { bottom: 12%; right: -12%; animation: float 6s ease-in-out infinite 1.5s; }
.card5 { top: 48%; left: 50%; transform: translate(-50%, -50%); animation: float 6s ease-in-out infinite 0.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-15px); }
}

/* Stats Bar Pro */
.stats-bar {
  max-width: 1320px;
  margin: 100px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 30px 25px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 30px rgba(10, 26, 58, 0.06);
  transition: 0.3s;
}
.stat:hover {
  transform: translateY(-5px);
  border-color: #2563eb;
}
.stat span { font-size: 32px; }
.stat b { font-size: 30px; color: #0a1a3a; display: block; font-weight: 800; }
.stat small { font-size: 14px; color: #64748b; font-weight: 500; }

/* Responsive */
@media(max-width: 992px){
  .hero-container { grid-template-columns: 1fr; gap: 50px; }
  .hero-left h1 { font-size: 40px; }
  .hero-left .features { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .floating-card { display: none; }
}
@media(max-width: 576px){
  .stats-bar { grid-template-columns: 1fr; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: 100%; text-align: center; }
}

/* === SECTION 2 PRO LIGHT GRADIENT === */
.hero-iseous.section-2 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.section2-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Content */
.section-2 .hero-left h2 {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
}

.section-2 .hero-left p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 550px;
}

/* Buttons - Same Pro Style */
.section-2 .hero-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 35px;
}
.section-2 .btn-primary {
  background: linear-gradient(90deg, #0a1a3a, #1e3a8a);
  color: #fff; 
  padding: 18px 36px; 
  border-radius: 12px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.25);
}
.section-2 .btn-primary:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 15px 40px rgba(10, 26, 58, 0.35);
}
.section-2 .btn-secondary {
  background: #fff; 
  color: #0a1a3a;
  padding: 18px 36px; 
  border-radius: 12px;
  text-decoration: none; 
  font-weight: 700; 
  font-size: 16px;
  border: 2px solid #0a1a3a;
  transition: 0.3s;
}
.section-2 .btn-secondary:hover { 
  background: #0a1a3a;
  color: #fff;
  transform: translateY(-3px);
}

/* Right Side - Glass Cards Grid */
.section-2 .hero-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Glass Card Pro */
.section-2 .glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.08);
}
.section-2 .glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: #2563eb;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.section-2 .glass-card .icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(10, 26, 58, 0.2);
}

.section-2 .glass-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 10px;
}

.section-2 .glass-card p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Responsive */
@media(max-width: 992px){
  .section2-container { grid-template-columns: 1fr; gap: 50px; }
  .section-2 .hero-left h2 { font-size: 36px; }
  .section-2 .hero-right { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 576px){
  .section-2 .hero-right { grid-template-columns: 1fr; }
  .section-2 .hero-buttons .btn-primary, 
  .section-2 .hero-buttons .btn-secondary { width: 100%; text-align: center; }
}


/* === FOOTER SECTION === */
.iseo-footer {
  background: radial-gradient(circle at 50% 10%, #0a1f44 0%, #020a18 100%);
  padding-top: 80px;
  padding-bottom: 30px;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

/* Bubbles */
.iseo-footer .footer-bubbles .bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  animation: float 8s ease-in-out infinite;
}
.iseo-footer .b1 { width: 120px; height: 120px; top: 10%; left: 5%; }
.iseo-footer .b2 { width: 80px; height: 80px; top: 40%; right: 10%; animation-delay: 2s; }
.iseo-footer .b3 { width: 150px; height: 150px; bottom: 10%; left: 15%; animation-delay: 4s; }
.iseo-footer .b4 { width: 60px; height: 60px; bottom: 20%; right: 20%; animation-delay: 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-20px); }
}

/* Footer Columns */
.iseo-footer .footer-col {
  margin-bottom: 30px;
}
.iseo-footer .footer-logo img {
  max-width: 160px;
  margin-bottom: 20px;
}
.iseo-footer .footer-about {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 25px;
}

/* Headings */
.iseo-footer h4 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}
.iseo-footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #3b82f6;
  border-radius: 10px;
}

/* Social Icons */
.iseo-footer .footer-social {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.iseo-footer .footer-social li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  transition: 0.3s;
}
.iseo-footer .footer-social li a:hover {
  background: #3b82f6;
  color: #fff;
  transform: translateY(-3px);
}
.iseo-footer .footer-social li a img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

/* Links */
.iseo-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.iseo-footer .footer-links li {
  margin-bottom: 12px;
}
.iseo-footer .footer-links li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  display: inline-block;
}
.iseo-footer .footer-links li a:hover {
  color: #60a5fa;
  padding-left: 5px;
}

/* Contact */
.iseo-footer .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.iseo-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 16px;
}
.iseo-footer .footer-contact li i {
  color: #3b82f6;
  margin-top: 4px;
}

/* Bottom Bar */
.iseo-footer .footer-bottom {
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  padding-top: 25px;
  margin-top: 40px;
  text-align: center;
}
.iseo-footer .footer-bottom p {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

/* Responsive */
@media(max-width: 992px){
  .iseo-footer { padding-top: 60px; }
}

/* === ISEO PRO LIGHT SECTION === */
.iseo-dark-pro {
  background: linear-gradient(135deg, #f8fafc 0%, #dbeafe 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.iseo-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section Tag */
.iseo-dark-pro .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* Heading */
.iseo-dark-pro h2 {
  font-size: 42px;
  line-height: 1.3;
  font-weight: 800;
  color: #0a1a3a;
  max-width: 900px;
  margin-bottom: 60px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Row Layout */
.iseo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left: Image */
.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.image-wrapper img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(10, 26, 58, 0.12);
  display: block;
}
.image-wrapper .glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(80px);
  z-index: -1;
}

/* Right: Content */
.content-wrapper {
  padding-left: 20px;
}

/* Pro Bullets */
.pro-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.pro-bullets li {
  font-size: 17px;
  color: #1e293b;
  font-weight: 600;
  padding: 16px 20px 16px 50px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  position: relative;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(10, 26, 58, 0.04);
}
.pro-bullets li:hover {
  border-color: #2563eb;
  transform: translateX(5px);
}
.pro-bullets li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Pro Button */
.btn-pro {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #0a1a3a, #1e3a8a);
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.25);
}
.btn-pro:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(10, 26, 58, 0.35);
}

/* Responsive */
@media(max-width: 992px){
  .iseo-row { grid-template-columns: 1fr; gap: 50px; }
  .iseo-dark-pro h2 { font-size: 32px; }
  .content-wrapper { padding-left: 0; }
}
@media(max-width: 576px){
  .iseo-dark-pro { padding: 80px 0; }
  .iseo-dark-pro h2 { font-size: 28px; }
}


.iseo-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center; /* sab center */
}

.iseo-dark-pro .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}


/* === ISEO STATS PRO LIGHT === */
.iseo-stats-pro {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bae6fd 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
}

.iseo-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.iseo-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.stats-header .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.stats-header h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 18px;
}

.stats-header p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Step Indicator */
.step-indicator {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.step-indicator .step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
}
.step-indicator .step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}
.step-indicator .step.active span {
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  color: #fff;
  box-shadow: 0 5px 15px rgba(10, 26, 58, 0.2);
}
.step-indicator .step.active {
  color: #0a1a3a;
}

/* Right Side - Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Stat Card Pro */
.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 35px 30px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.08);
}
.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: #2563eb;
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.15);
}

.stat-card .stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-card .stat-number span {
  color: #2563eb;
}

.stat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.progress-bar .fill {
  height: 100%;
  background: linear-gradient(90deg, #0a1a3a, #2563eb);
  border-radius: 10px;
  transition: width 1.2s ease;
}

/* Responsive */
@media(max-width: 992px){
  .iseo-row { grid-template-columns: 1fr; gap: 50px; }
  .stats-header h2 { font-size: 34px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 576px){
  .stats-grid { grid-template-columns: 1fr; }
  .iseo-stats-pro { padding: 80px 0; }
}


/* === SERVICES SECTION EXTRA LIGHT === */
.iseo-services-bs {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 50%, #bfdbfe 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
}

.iseo-services-bs .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-services-bs .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 18px;
}

.iseo-services-bs .section-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Service Box - Lighter Glass */
.iseo-services-bs .service-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(10, 26, 58, 0.05);
}
.iseo-services-bs .service-box:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
}

/* Icon Wrapper */
.iseo-services-bs .icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 25px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon Colors - Soft Gradient */
.icon-blue { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.icon-green { background: linear-gradient(135deg, #10b981, #34d399); }
.icon-orange { background: linear-gradient(135deg, #f97316, #fb923c); }
.icon-pink { background: linear-gradient(135deg, #ec4899, #f472b6); }
.icon-cyan { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.icon-red { background: linear-gradient(135deg, #ef4444, #f87171); }
.icon-indigo { background: linear-gradient(135deg, #6366f1, #818cf8); }
.icon-yellow { background: linear-gradient(135deg, #eab308, #facc15); }

.iseo-services-bs .service-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 15px;
}

.iseo-services-bs .service-box p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media(max-width: 992px){
  .iseo-services-bs .section-title { font-size: 34px; }
  .iseo-services-bs { padding: 80px 0; }
}


/* === WHY CHOOSE US PRO LIGHT === */
.iseo-why-choose {
  background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #ffffff 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Left Content */
.iseo-why-choose .why-content .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-why-choose .why-content h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 20px;
}

.iseo-why-choose .why-content .lead-text {
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 18px;
  line-height: 1.7;
}

.iseo-why-choose .why-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Right Image */
.iseo-why-choose .why-image {
  position: relative;
  border-radius: 24px;
}
.iseo-why-choose .why-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(10, 26, 58, 0.12);
  position: relative;
  z-index: 2;
}

/* Glow Background */
.iseo-why-choose .why-image .glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: 1;
}

/* Hover Effect on Image */
.iseo-why-choose .why-image:hover img {
  transform: translateY(-5px);
  transition: 0.4s;
}

/* Responsive */
@media(max-width: 992px){
  .iseo-why-choose { padding: 80px 0; }
  .iseo-why-choose .why-content h2 { font-size: 34px; }
  .iseo-why-choose .why-image { margin-top: 40px; }
}


/* === INDUSTRIES SECTION PRO LIGHT === */
.iseo-industries {
  background: linear-gradient(180deg, #f8fafc 0%, #f0f9ff 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
}

.iseo-industries .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-industries .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 18px;
}

.iseo-industries .section-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Custom 5 Columns for lg */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%; /* 100 / 5 = 20% */
  }
}

/* Industry Box Pro */
.iseo-industries .industry-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(10, 26, 58, 0.05);
}
.iseo-industries .industry-box:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
}

/* Icon */
.iseo-industries .industry-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: 0.3s;
}
.iseo-industries .industry-box:hover .industry-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.iseo-industries .industry-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 12px;
}

.iseo-industries .industry-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media(max-width: 1200px){
  .col-lg-2-4 { width: 25%; } /* 4 per row on 1200px */
}
@media(max-width: 992px){
  .iseo-industries .section-title { font-size: 34px; }
  .iseo-industries { padding: 80px 0; }
}
@media(max-width: 768px){
  .col-lg-2-4 { width: 50%; } /* 2 per row on tablet */
}
@media(max-width: 576px){
  .col-lg-2-4 { width: 100%; } /* 1 per row on mobile */
}


/* === RESULTS SECTION PRO LIGHT === */
.iseo-results {
  background: linear-gradient(135deg, #ffffff 0%, #dbeafe 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
}

.iseo-results .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-results .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 30px;
}

.iseo-results .section-subtitle {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  max-width: 750px;
  margin: 30px auto 0;
}

/* 3 Points Row */
.result-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.result-points .point-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
}
.result-points .point-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Metric Boxes */
.iseo-results .metric-box {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  padding: 50px 30px;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.06);
}
.iseo-results .metric-box:hover {
  transform: translateY(-10px);
  border-color: #2563eb;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

.iseo-results .metric-number {
  font-size: 64px;
  font-weight: 800;
  color: #0a1a3a;
  line-height: 1;
  margin-bottom: 15px;
}
.iseo-results .metric-number .percent {
  color: #2563eb;
  font-size: 40px;
}

.iseo-results .metric-label {
  font-size: 18px;
  font-weight: 600;
  color: #475569;
  margin: 0;
}

/* Responsive */
@media(max-width: 992px){
  .iseo-results .section-title { font-size: 34px; }
  .iseo-results { padding: 80px 0; }
  .result-points { gap: 20px; }
}
@media(max-width: 576px){
  .iseo-results .metric-number { font-size: 48px; }
}

/* === PROCESS SECTION PRO LIGHT === */
.iseo-process {
  background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
}

.iseo-process .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-process .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 20px;
}

/* Process Wrapper */
.process-wrapper {
  padding-top: 40px;
}

/* Connecting Line */
.process-line {
  position: absolute;
  top: 70px;
  left: 12.5%;
  width: 75%;
  height: 3px;
  background: linear-gradient(90deg, #0a1a3a, #2563eb, #0a1a3a);
  z-index: 1;
  border-radius: 10px;
}

/* Process Step */
.process-step {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid #e2e8f0;
  padding: 40px 25px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: 0.4s;
  height: 100%;
  box-shadow: 0 10px 30px rgba(10, 26, 58, 0.06);
}
.process-step:hover {
  transform: translateY(-10px);
  border-color: #2563eb;
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
}

/* Step Number Circle */
.process-step .step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0a1a3a, #2563eb);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(10, 26, 58, 0.2);
  border: 4px solid #fff;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0a1a3a;
  margin-bottom: 15px;
}

.process-step p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.8;
  margin: 0;
}

/* Responsive */
@media(max-width: 992px){
  .process-line { display: none; } /* Hide line on tablet/mobile */
  .iseo-process .section-title { font-size: 34px; }
  .iseo-process { padding: 80px 0; }
}
@media(max-width: 576px){
  .process-step { padding: 30px 20px; }
}


/* === FINAL CTA RADIAL PRO === */
.iseo-cta-radial {
  background: radial-gradient(circle at 50% 0%, #1e3a8a 0%, #0a1a3a 100%);
  padding: 140px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Glow Effects */
.iseo-cta-radial::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(100px);
  z-index: 1;
}

.iseo-cta-radial .container {
  position: relative;
  z-index: 2;
}

.iseo-cta-radial h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.iseo-cta-radial .cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Badges */
.cta-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.cta-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.cta-badges .badge-item i {
  color: #3b82f6;
  font-size: 18px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 20px 45px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}
.cta-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.6);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: #fff;
  padding: 20px 45px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s;
}
.cta-buttons .btn-secondary:hover {
  background: #fff;
  color: #0a1a3a;
  border-color: #fff;
  transform: translateY(-4px);
}

/* Responsive */
@media(max-width: 992px){
  .iseo-cta-radial { padding: 100px 0; }
  .iseo-cta-radial h2 { font-size: 36px; }
}
@media(max-width: 576px){
  .cta-buttons .btn-primary, 
  .cta-buttons .btn-secondary { width: 100%; }
}

/* === CONTACT FORM PRO LIGHT v2 === */
.iseo-contact-pro {
  background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 100%); /* Lighter blue bg */
  padding: 120px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  position: relative;
}

.iseo-contact-pro .section-tag {
  display: inline-block;
  background: rgba(10, 26, 58, 0.08);
  border: 1px solid rgba(10, 26, 58, 0.15);
  color: #0a1a3a;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.iseo-contact-pro .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a1a3a;
  margin-bottom: 20px;
}

/* Form Card */
.iseo-contact-pro .contact-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid #bfdbfe;
  padding: 60px 60px; /* increased padding */
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(10, 26, 58, 0.08);
}

/* Form Fields */
.iseo-contact-pro .form-group {
  margin-bottom: 0;
}

.iseo-contact-pro .form-group label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #0a1a3a;
  margin-bottom: 14px; /* increased from 10px */
  margin-top: 4px; /* added top space */
}

.iseo-contact-pro .form-group input,
.iseo-contact-pro .form-group select,
.iseo-contact-pro .form-group textarea {
  width: 100%;
  background: #ffffff; /* pure white inputs */
  border: 2px solid #dbeafe;
  border-radius: 12px;
  padding: 18px 20px; /* increased padding */
  font-size: 15px;
  color: #1e293b;
  transition: 0.3s;
  font-family: inherit;
}
.iseo-contact-pro .form-group input:focus,
.iseo-contact-pro .form-group select:focus,
.iseo-contact-pro .form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.iseo-contact-pro .form-group input::placeholder,
.iseo-contact-pro .form-group textarea::placeholder {
  color: #94a3b8;
}

/* Error */
.iseo-contact-pro .form-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 8px; /* increased */
  display: block;
}

/* Submit Button */
.iseo-contact-pro .submit-btn {
  background: linear-gradient(90deg, #0a1a3a, #2563eb);
  color: #fff;
  padding: 18px 50px;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
  margin-top: 10px; /* added top space */
}
.iseo-contact-pro .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.4);
}

/* Responsive */
@media(max-width: 992px){
  .iseo-contact-pro { padding: 80px 0; }
  .iseo-contact-pro .section-title { font-size: 34px; }
  .iseo-contact-pro .contact-form-card { padding: 40px 30px; }
}
