/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Global Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Global SVG Constraints */
svg {
  max-width: 100%;
  height: auto;
}
.info-card svg,
.contact-form-modern svg,
.btn-submit-modern svg {
  flex-shrink: 0;
}

/* Hero Logo and Title */
.hero-logo {
  width: 180px;
  max-width: 90vw;
  margin: 0 auto 1.5rem auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(11,93,215,0.10));
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.7rem;
  letter-spacing: 2px;
  text-shadow: 0 2px 12px rgba(11,93,215,0.10);
}
.hero-tagline {
  font-size: 1.45rem;
  color: #e0e7ff;
  margin-bottom: 1.2rem;
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(11,93,215,0.10);
}

/* About Section */
.section-about {
  background: linear-gradient(180deg, #fff 0%, #f4f7fc 100%);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.section-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.section-wave svg {
  width: 100%;
  height: 60px;
}
.section-about::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11,93,215,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section-about::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(11,93,215,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.about-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
}
.about-shape-1 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(11,93,215,0.15) 0%, rgba(0,212,255,0.1) 100%);
  top: 10%;
  right: 10%;
  animation: float 10s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(11,93,215,0.1);
}
.about-shape-2 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(0,212,255,0.12) 0%, rgba(11,93,215,0.08) 100%);
  bottom: 15%;
  left: 5%;
  animation: floatReverse 8s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(0,212,255,0.1);
}
.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}
.about-img-wrapper {
  flex: 0 0 45%;
  position: relative;
}
.about-img-wrapper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  border-radius: 16px;
  z-index: 1;
}
.about-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--accent) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.4;
  z-index: 0;
}
.about-intro-img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
.about-img-wrapper:hover .about-intro-img {
  transform: translate(8px, 8px);
}
.about-intro-text {
  flex: 1;
  min-width: 300px;
}
.about-intro-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.about-intro-text h2 span {
  color: var(--accent);
  position: relative;
}
.about-intro-text h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(11,93,215,0.15);
  z-index: -1;
  border-radius: 2px;
}
.section-about .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(11,93,215,0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(11,93,215,0.15);
}
.section-about .section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.about-intro-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.about-intro-text p:last-child {
  margin-bottom: 2rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about-stat {
  text-align: center;
}
.about-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(11,93,215,0.3);
  white-space: nowrap;
}
.about-cta:hover {
  background: #0847a3;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,93,215,0.4);
}
.about-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.about-cta:hover svg {
  transform: translateX(5px);
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 3rem;
  }
  .about-img-wrapper {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
  .about-intro-text h2 {
    font-size: 2rem;
  }
  .about-stats {
    justify-content: center;
  }
}

:root{--accent:#0b5dd7;--accent-dark:#0847a3;--bg:#f7f8fb;--bg-light:#f0f2f7;--text:#14213d;--text-light:#4a5568;--border:#e6e9ef;--success:#10b981}
*{box-sizing:border-box}
body{margin:0;font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--text);background:grey;line-height:1.6;-webkit-font-smoothing:antialiased}
.container{max-width:1100px;margin:0 auto;padding:2rem 1rem}

/* Header */
.site-header{
  background: #fff;
  border-bottom: none;
  box-shadow: 0 2px 20px rgba(11,93,215,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container{
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.8rem 3rem;
  min-height: 80px;
  max-width: 1400px;
}
.logo{
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.8rem;
}
.logo:hover{
  transform: scale(1.03);
}
.logo-img{
  height: 60px;
  width: auto;
  display: block;
}
.nav{
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}
.nav a{
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0b5dd7, #0847a3);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav a:hover{
  color: var(--accent);
}
.nav a:hover::after {
  width: 50%;
}
.nav-toggle{
  display: none;
  background: none;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

/* Hero Slider Section */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 550px;
  overflow: hidden;
}
.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 1.4s ease-in-out;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,93,215,0.85) 0%, rgba(8,71,163,0.75) 50%, rgba(20,33,61,0.9) 100%);
  z-index: 1;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(11,93,215,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeSlideUp 1s ease-out 0.3s both;
}
.hero-slide.active .hero-content {
  animation: fadeSlideUp 1s ease-out 0.3s both;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-slider .hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3), 0 0 60px rgba(11,93,215,0.4);
  background: linear-gradient(90deg, #fff 0%, #a5c4ff 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
  white-space: nowrap;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-slider .hero-tagline {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-slider .hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.hero-slider .hero-cta .btn {
  padding: 1.1rem 2.8rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.hero-slider .hero-cta .btn-primary {
  background: linear-gradient(135deg, #fff 0%, #e8f0ff 100%);
  color: #0b5dd7;
  box-shadow: 0 8px 32px rgba(255,255,255,0.25), 0 0 0 0 rgba(255,255,255,0.4);
}
.hero-slider .hero-cta .btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255,255,255,0.35), 0 0 30px rgba(255,255,255,0.2);
}
.hero-slider .hero-cta .btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.3);
}
.hero-slider .hero-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
.hero-slider-nav {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid rgba(255,255,255,0.6);
  position: relative;
}
.hero-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.hero-dot.active, .hero-dot:hover {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.hero-dot.active::after, .hero-dot:hover::after {
  opacity: 1;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.8rem;
  padding: 1rem 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
}
.hero-arrow-left { left: 30px; }
.hero-arrow-right { right: 30px; }

/* Decorative floating elements */
.hero-slider::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
.hero-slider::after {
  content: '';
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(11,93,215,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  z-index: 3;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@media (max-width: 1000px) {
  .hero-slider .hero-title { font-size: 2.5rem; letter-spacing: 1px; }
}

@media (max-width: 700px) {
  .hero-slider { height: 60vh; min-height: 380px; max-height: 500px; }
  .hero-slider .hero-title { font-size: 1.6rem; letter-spacing: 1px; white-space: normal; }
  .hero-slider .hero-tagline { font-size: 0.95rem; }
  .hero-arrow { width: 40px; height: 40px; font-size: 1.2rem; }
  .hero-arrow-left { left: 10px; }
  .hero-arrow-right { right: 10px; }
}

/* Legacy Hero (can be removed if not used) */
.hero{
  padding:8rem 0;
  background:url('Hero%20bg.jpg') center/cover;
  position:relative;
  overflow:hidden;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    background-size: 100%;
  }
  100% {
    background-size: 110%;
  }
}
.hero::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(11,93,215,0.7);pointer-events:none}
.hero-graphic{position:absolute;inset:0;width:100%;height:100%;z-index:1;opacity:0.45;mix-blend-mode:screen}
.hero-graphic path{filter:drop-shadow(0 8px 16px rgba(0,0,0,0.15));}
.hero-graphic g{transform-origin:50% 50%;animation:float 12s linear infinite}
.hero-content{position:relative;z-index:2;text-align:center;padding-top:1rem}
.hero h1{margin:0 0 1rem;font-size:3rem;font-weight:700;line-height:1.15;color:#fff}
.hero-subtitle{font-size:1.15rem;color:rgba(255,255,255,0.95);margin:0 0 2rem;max-width:700px;margin-left:auto;margin-right:auto}
.hero-cta{display:flex;gap:1rem;justify-content:center;align-items:center}
.btn-secondary{background:#fff;color:var(--accent);border:none;padding:1rem 2.5rem;border-radius:8px;font-size:1.1rem;min-width:200px;}
.btn-secondary:hover{background:#f0f2f7;transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.3)}

@keyframes float{
  0%{transform:translateY(0) rotate(0deg)}
  50%{transform:translateY(-6px) rotate(0.5deg)}
  100%{transform:translateY(0) rotate(0deg)}
}

/* Buttons */
.btn{display:inline-block;padding:1rem 2.5rem;border-radius:8px;text-decoration:none;font-weight:600;transition:all 0.2s;border:none;cursor:pointer;font-size:1.1rem;text-align:center;min-width:200px;}
.btn-primary{background:#fff;color:var(--accent);font-size:1.1rem;min-width:200px;}
.btn-primary:hover{background:#f0f2f7;transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.3)}
.btn-primary:active{transform:translateY(0)}
.btn-lg{padding:1rem 2.5rem;font-size:1.1rem}

/* Sections */
.section-about{background:#fff;padding:4rem 0;border-top:1px solid var(--border)}
.section-about .container{padding:3rem 1rem}
.section-about h2{font-size:2.2rem;margin:0 0 1.5rem;color:var(--text)}
.section-about p{font-size:1.05rem;color:var(--text-light);line-height:1.8}

/* Services Section */
.section-services {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  padding: 4rem 0;
  position: relative;
}
.section-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-services .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(11,93,215,0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(11,93,215,0.15);
}
.section-services .section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 1rem;
  letter-spacing: -0.5px;
}
.section-header h2 span {
  background: linear-gradient(135deg, var(--accent) 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  white-space: nowrap;
}

/* Floating Decorative Shapes */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  filter: blur(1px);
}
.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(11,93,215,0.3) 0%, rgba(0,212,255,0.15) 100%);
  top: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(11,93,215,0.2);
}
.shape-2 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(0,212,255,0.2) 0%, rgba(11,93,215,0.1) 100%);
  top: 55%;
  right: 5%;
  animation: floatReverse 12s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(0,212,255,0.15);
}
.shape-3 {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(11,93,215,0.35) 0%, transparent 100%);
  bottom: 20%;
  left: 12%;
  animation: float 6s ease-in-out infinite 1s;
  box-shadow: 0 0 40px rgba(11,93,215,0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.section-services .service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(11,93,215,0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 100px;
}
.section-services .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #0847a3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.section-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11,93,215,0.12);
  border-color: rgba(11,93,215,0.15);
}
.section-services .service-card:target {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11,93,215,0.2), 0 20px 40px rgba(11,93,215,0.15);
  animation: targetPulse 0.6s ease;
}
.section-services .service-card:target::before {
  transform: scaleX(1);
}
@keyframes targetPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}
.section-services .service-card:hover::before {
  transform: scaleX(1);
}
.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(11,93,215,0.1) 0%, rgba(11,93,215,0.05) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}
.service-icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
  transition: all 0.4s ease;
}
.section-services .service-card:hover .service-icon-wrapper {
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  transform: scale(1.1);
}
.section-services .service-card:hover .service-icon-wrapper svg {
  color: #fff;
}
.section-services .service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  color: var(--text);
}
.section-services .service-card p {
  color: var(--text-light);
  margin: 0 0 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-link span {
  transition: transform 0.3s ease;
}
.service-link:hover {
  gap: 0.8rem;
}
.service-link:hover span {
  transform: translateX(4px);
}
@media (max-width: 1000px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section-header h2 {
    font-size: 2rem;
  }
}

/* Parallax CTA Banner */
.parallax-cta {
  position: relative;
  height: 400px;
  background: url('office.jpeg') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,93,215,0.6) 0%, rgba(20,33,61,0.7) 100%);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.parallax-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.parallax-content p {
  font-size: 1.2rem;
  margin: 0 0 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--accent);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-light:hover {
  background: #f0f5ff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
  .parallax-cta {
    height: 350px;
    background-attachment: scroll;
  }
  .parallax-content h2 {
    font-size: 1.8rem;
  }
  .parallax-content p {
    font-size: 1rem;
  }
}

/* Process Section */
.section-process {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  padding: 4rem 0;
  position: relative;
}
.section-process .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(11,93,215,0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(11,93,215,0.15);
}
.section-process .section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 1rem;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #0847a3, var(--accent));
  border-radius: 2px;
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.step-icon-wrapper {
  width: 90px;
  height: 90px;
  background: #fff;
  border: 3px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(11,93,215,0.15);
}
.step-icon-wrapper svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  transition: all 0.4s ease;
}
.step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11,93,215,0.3);
}
.process-step:hover .step-icon-wrapper {
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  transform: scale(1.1);
}
.process-step:hover .step-icon-wrapper svg {
  color: #fff;
}
.step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  .process-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    display: flex;
    text-align: left;
    gap: 1.5rem;
    padding: 0;
  }
  .step-icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin: 0;
  }
  .step-icon-wrapper svg {
    width: 28px;
    height: 28px;
  }
}

/* Team Banner Section */
.team-banner {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('team.jpg') center/cover no-repeat;
  overflow: hidden;
}
.team-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,33,61,0.85) 0%, rgba(11,93,215,0.8) 100%);
}
.team-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 4rem 2rem;
  max-width: 1100px;
  width: 100%;
}
.team-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  margin-bottom: 1rem;
  background: rgba(0,212,255,0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(0,212,255,0.3);
}
.team-banner-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.team-banner-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .team-banner {
    min-height: auto;
    padding: 2rem 0;
  }
  .team-banner-content {
    padding: 2rem 1rem;
  }
  .team-banner-content h2 {
    font-size: 1.6rem;
  }
  .team-banner-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  .team-banner .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .team-banner .stat-item {
    padding: 1rem 0.5rem;
  }
  .team-banner .stat-number {
    font-size: 1.8rem;
  }
  .team-banner .stat-label {
    font-size: 0.65rem;
  }
}

.section-clients{background:var(--bg-light);padding:4rem 0}
.section-clients h2{font-size:2.2rem;margin-bottom:2rem;text-align:center;color:var(--text)}
.clients-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.client-logo{background:#fff;padding:2rem;border-radius:8px;border:1px solid var(--border);font-weight:600;color:var(--text-light);text-align:center;transition:all 0.3s}
.client-logo:hover{border-color:var(--accent);color:var(--accent);box-shadow:0 4px 8px rgba(11,93,215,0.1)}

.section-why-choose{background:#e8e8e8;padding:4rem 0}
.section-why-choose h2{font-size:2.2rem;margin-bottom:2rem;text-align:center;color:var(--text)}
.why-choose-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.why-choose-card{padding:2.5rem;border-radius:16px;border:none;transition:all 0.5s cubic-bezier(0.4,0,0.2,1);text-align:center;box-shadow:0 10px 30px rgba(0,0,0,0.15);background-size:cover;background-position:center;position:relative;min-height:360px;display:flex;flex-direction:column;justify-content:flex-end;align-items:center;overflow:hidden}
.why-choose-card::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.65) 50%,rgba(0,0,0,0.85) 100%);z-index:1;transition:all 0.5s}
.why-choose-card:hover{transform:translateY(-12px);box-shadow:0 20px 50px rgba(0,0,0,0.25)}
.why-choose-card:hover::before{background:linear-gradient(180deg,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.75) 50%,rgba(0,0,0,0.95) 100%)}
.why-icon{display:none}
.why-choose-card h3{font-size:1.6rem;margin:0 0 1rem;color:#fff;position:relative;z-index:2;font-weight:700;letter-spacing:-0.5px}
.why-choose-card p{color:rgba(255,255,255,0.95);margin:0;line-height:1.7;font-size:1rem;position:relative;z-index:2}

.why-choose-card:nth-child(1){background-image:url('FnR.jpg')}
.why-choose-card:nth-child(2){background-image:url('cost.jpg')}
.why-choose-card:nth-child(3){background-image:url('PAS.jpg')}
.why-choose-card:nth-child(4){background-image:url('PS.jpg')}
.why-choose-card:nth-child(5){background-image:url('GF.jpg')}
.why-choose-card:nth-child(6){background-image:url('PE.jpg');background-size:cover;background-position:center;box-shadow:0 10px 30px rgba(11,93,215,0.2)}
.why-choose-card:nth-child(6)::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,0.45) 0%,rgba(0,0,0,0.65) 50%,rgba(0,0,0,0.85) 100%);z-index:1;transition:all 0.5s}
.why-choose-card:nth-child(6):hover{box-shadow:0 20px 50px rgba(11,93,215,0.3)}

/* Contact Section */
.section-contact {
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
  padding: 4rem 0;
  position: relative;
}
.section-contact .section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  background: rgba(11,93,215,0.08);
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(11,93,215,0.15);
}
.section-contact .section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 1rem;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1rem;
}
.contact-info > p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(11,93,215,0.1) 0%, rgba(11,93,215,0.05) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}
.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contact-text span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}
.contact-text a,
.contact-text p {
  font-size: 1rem;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}
.contact-text a:hover {
  color: var(--accent);
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(11,93,215,0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
}
input, textarea {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: #f8faff;
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(11,93,215,0.1);
  background: #fff;
}
input::placeholder, textarea::placeholder {
  color: #a0aec0;
}
textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.btn-submit svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}
.btn-submit:hover svg {
  transform: translateX(4px);
}
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 1.5rem;
  }
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #14213d 0%, #0d1829 100%);
  padding: 4rem 0 0;
  color: #fff;
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}
.footer-logo-img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) saturate(100%) invert(29%) sepia(98%) saturate(1835%) hue-rotate(209deg) brightness(96%) contrast(92%);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  position: relative;
}
.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-section ul li {
  margin-bottom: 0.75rem;
}
.footer-section ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-section ul a:hover {
  color: #fff;
  transform: translateX(5px);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.footer-contact-item a,
.footer-contact-item span {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.footer-contact-item a:hover {
  color: #fff;
}
.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
.footer-bottom p {
  margin: 0;
}
@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-social {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
}

/* Mobile Responsiveness */
@media (max-width:900px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .why-choose-grid{grid-template-columns:repeat(2,1fr)}
  .clients-grid{grid-template-columns:repeat(2,1fr)}
  .nav{display:none}
  .nav-toggle{display:block}
  .contact-wrapper{grid-template-columns:1fr}
  .hero h1{font-size:2.2rem}
  .hero-subtitle{font-size:1rem}
}

@media (max-width:600px){
  .site-header .container{padding:0.5rem 1rem;gap:1rem;min-height:54px;}
  .logo-img{height:54px}
  .hero{padding:4rem 0}
  .hero h1{font-size:1.8rem}
  .nav-toggle{font-size:1.25rem}
  .container{padding:1rem}
  .section-about,.section-services,.section-process,.section-why-choose,.section-clients,.section-contact{padding:2rem 0}
  .why-choose-grid{grid-template-columns:1fr}
  .clients-grid{grid-template-columns:1fr}
  .hero-subtitle{max-width:100%}
}

/* ===== COMPREHENSIVE MOBILE FIXES ===== */

/* Tablet */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav a {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav a::after {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .site-header .container {
    justify-content: space-between;
  }
  .hero-slider .hero-cta {
    flex-direction: column;
    gap: 0.8rem;
  }
  .hero-slider .hero-cta .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* Header */
  .site-header .container {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    min-height: 60px;
  }
  .logo-img {
    height: 45px;
  }
  .nav-toggle {
    font-size: 1.5rem;
    padding: 0.25rem;
  }
  
  /* Hero */
  .hero-slider {
    height: 55vh;
    min-height: 350px;
    max-height: 450px;
  }
  .hero-slider .hero-title {
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.3;
  }
  .hero-slider .hero-tagline {
    font-size: 0.85rem;
    padding: 0 0.5rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .hero-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
  .hero-arrow-left {
    left: 8px;
  }
  .hero-arrow-right {
    right: 8px;
  }
  .hero-slider-nav {
    bottom: 15px;
    gap: 6px;
  }
  .hero-dot {
    width: 8px;
    height: 8px;
  }
  
  /* About Section */
  .section-about {
    padding: 2.5rem 0;
  }
  .about-intro-img {
    max-width: 100%;
    border-radius: 16px;
  }
  .about-intro-text h2 {
    font-size: 1.6rem;
  }
  .about-intro-text p {
    font-size: 0.95rem;
  }
  .about-cta {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }
  .section-subtitle {
    font-size: 0.9rem;
  }
  .section-label {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
  
  /* Services */
  .section-services {
    padding: 2.5rem 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .service-card {
    padding: 1.5rem;
  }
  .service-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .service-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  
  /* Process */
  .section-process {
    padding: 2.5rem 0;
  }
  .process-timeline {
    gap: 1.5rem;
  }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }
  .step-number {
    position: relative;
    top: auto;
    left: auto;
    font-size: 0.65rem;
    width: 22px;
    height: 22px;
  }
  .step-icon-wrapper {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
  }
  .step-icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  .step-content h3 {
    font-size: 1rem;
  }
  .step-content p {
    font-size: 0.85rem;
  }
  
  /* Contact */
  .section-contact {
    padding: 2.5rem 0;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-details h3 {
    font-size: 1.3rem;
  }
  .contact-details > p {
    font-size: 0.9rem;
  }
  .contact-item {
    padding: 1rem;
  }
  .contact-icon {
    width: 40px;
    height: 40px;
  }
  .contact-icon svg {
    width: 18px;
    height: 18px;
  }
  .contact-text span {
    font-size: 0.7rem;
  }
  .contact-text a,
  .contact-text p {
    font-size: 0.9rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-group label {
    font-size: 0.8rem;
  }
  .form-group input,
  .form-group textarea {
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
  .btn-submit {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Footer */
  .site-footer {
    padding: 2.5rem 0 0;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-logo-img {
    height: 40px;
    margin: 0 auto 1rem;
    display: block;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-section ul {
    gap: 0.5rem;
  }
  .footer-section a {
    font-size: 0.9rem;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
  .footer-bottom {
    padding: 1.2rem 0;
    font-size: 0.8rem;
  }
}

/* Stats Grid (inside team-banner) */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}
.stat-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
  border-color: rgba(0,212,255,0.4);
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #00d4ff;
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(0,212,255,0.5);
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }
  .stat-item {
    padding: 1.2rem 0.8rem;
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ===== ENHANCED CREATIVE STYLES ===== */

/* Service Cards - Gradient Border & Shine Effect */
.section-services .service-card {
  background: linear-gradient(135deg, #fff 0%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}
.section-services .service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.8) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(45deg);
  transition: none;
}
.section-services .service-card:hover::after {
  transform: translateX(100%) rotate(45deg);
  transition: transform 0.8s ease;
}
.service-icon-wrapper {
  position: relative;
}
.service-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--accent), #00d4ff, var(--accent));
  border-radius: 20px;
  opacity: 0;
  z-index: -1;
  animation: gradientRotate 3s linear infinite;
  transition: opacity 0.4s ease;
}
@keyframes gradientRotate {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.section-services .service-card:hover .service-icon-wrapper::before {
  opacity: 1;
}
.section-services .service-card:hover .service-icon-wrapper {
  box-shadow: 0 0 30px rgba(11,93,215,0.4);
}

/* Process Section - Enhanced Timeline */
.process-timeline::before {
  background: linear-gradient(90deg, 
    var(--accent) 0%, 
    #00d4ff 25%, 
    var(--accent) 50%, 
    #00d4ff 75%, 
    var(--accent) 100%
  );
  background-size: 200% 100%;
  animation: shimmerLine 3s linear infinite;
  height: 4px;
}
@keyframes shimmerLine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.step-number {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(11,93,215,0.3); }
  50% { box-shadow: 0 4px 20px rgba(11,93,215,0.6), 0 0 0 8px rgba(11,93,215,0.1); }
}
.step-icon-wrapper {
  background: linear-gradient(180deg, #fff 0%, #f0f5ff 100%);
}
.process-step:hover .step-number {
  animation: none;
  transform: scale(1.2);
  box-shadow: 0 6px 25px rgba(11,93,215,0.5);
}
.step-content {
  transition: all 0.4s ease;
}
.process-step:hover .step-content {
  transform: translateY(-5px);
}

/* Contact Section - Glassmorphism & Floating Elements */
.section-contact {
  overflow: hidden;
}
.section-contact::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(11,93,215,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.section-contact::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}
.contact-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(11,93,215,0.1);
  position: relative;
  z-index: 2;
}
.contact-form::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(11,93,215,0.3), rgba(0,212,255,0.3), rgba(11,93,215,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-form:hover::before {
  opacity: 1;
}
.contact-icon {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.contact-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #00d4ff 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-item:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}
.contact-item:hover .contact-icon::before {
  opacity: 1;
}
.contact-item:hover .contact-icon svg {
  color: #fff;
  position: relative;
  z-index: 1;
}
input, textarea {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
input:focus, textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(11,93,215,0.15);
}
.btn-submit {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  transition: all 0.4s ease;
}
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-submit:hover::before {
  left: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(11,93,215,0.35);
}

/* Section Headers - Gradient Text Animation */
.section-header h2 span {
  background: linear-gradient(135deg, var(--accent) 0%, #00d4ff 50%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 4s ease infinite;
}
@keyframes gradientText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ===== SPLIT CONTACT SECTION ===== */
.section-contact-split {
  padding: 0;
  background: #fff;
}
.contact-split-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

/* Left Image Side */
.contact-image-side {
  position: relative;
  overflow: hidden;
}
.contact-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,33,61,0.9) 0%, rgba(11,93,215,0.85) 100%);
}
.contact-image-content {
  position: relative;
  z-index: 2;
  padding: 4rem 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.contact-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #00d4ff;
  background: rgba(0,212,255,0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(0,212,255,0.3);
  margin-bottom: 1.5rem;
  width: fit-content;
}
.contact-image-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.contact-image-content > p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
  margin: 0 0 2.5rem;
  max-width: 400px;
}

/* Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.4s ease;
}
.info-card:hover {
  background: rgba(255,255,255,0.15);
  transform: translateX(10px);
  border-color: rgba(0,212,255,0.4);
}
.info-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  min-height: 45px;
  max-width: 45px;
  max-height: 45px;
  background: linear-gradient(135deg, #00d4ff 0%, var(--accent) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  color: #fff;
}
.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.info-text span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.info-text a,
.info-text p {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}
.info-text a:hover {
  color: #00d4ff;
}

/* Right Form Side */
.contact-form-side {
  background: linear-gradient(180deg, #f8faff 0%, #fff 100%);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-header {
  margin-bottom: 2rem;
}
.form-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 0.5rem;
}
.form-header p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
}
.contact-form-modern {
  display: flex;
  flex-direction: column;
}
.contact-form-modern .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.contact-form-modern .form-group {
  margin-bottom: 1.25rem;
}
.contact-form-modern label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 0.9rem;
}
.contact-form-modern input,
.contact-form-modern textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e8eef5;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  box-sizing: border-box;
}
.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(11,93,215,0.1);
}
.contact-form-modern textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-submit-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, var(--accent) 0%, #0847a3 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
}
.btn-submit-modern svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  transition: transform 0.3s ease;
}
.btn-submit-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}
.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(11,93,215,0.35);
}
.btn-submit-modern:hover::before {
  left: 100%;
}
.btn-submit-modern:hover svg {
  transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
  .contact-split-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .contact-image-side {
    min-height: 450px;
  }
  .contact-image-content {
    padding: 3rem 2rem;
  }
  .contact-image-content h2 {
    font-size: 2rem;
  }
  .contact-form-side {
    padding: 3rem 2rem;
  }
}
@media (max-width: 600px) {
  .contact-image-side {
    min-height: 400px;
  }
  .contact-image-content h2 {
    font-size: 1.6rem;
  }
  .contact-form-modern .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-header h3 {
    font-size: 1.5rem;
  }
  .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .info-icon svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
  .info-card {
    padding: 0.8rem 1rem;
  }
  .contact-info-cards {
    gap: 0.75rem;
  }
  .btn-submit-modern {
    width: 100%;
  }
  .btn-submit-modern svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
  }
}