/* SMOOTHING & OFFSET FIXES */
html {
  scroll-behavior: smooth;
}

/* Stops sections from hiding under the sticky header */
section[id] {
  scroll-margin-top: 100px; 
}

/* Active State for Scroll Spy */
.nav-btn.active::before {
  opacity: 1 !important;
}
.nav-btn.active::after {
  opacity: 1 !important;
}
.nav-btn.active {
  color: transparent !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,116,201,0.3);
}

/* Floating Actions Transition */
.floating-actions {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-actions.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

:root {
  --brand: #0a74c9;
  --brand-dark: #07579a;
  --dark: #0f172a;
  --muted: #64748b;
  --bg: #ffffff;
  --glass: rgba(255,255,255,0.85);
  --border: rgba(0,0,0,0.08);
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg,#f8fbff,#eef4fa);
  overflow-x: hidden;
}

/* ===== HIDE TOP ADDRESS BAR ON MOBILE ===== */
@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}



/* ================= TOP BAR ================= */
.topbar {
  background: linear-gradient(90deg,#0a74c9,#07579a);
  color: #fff;
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.topbar-inner {
  max-width: 1380px;
  margin: auto;
  padding: 12px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.95;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 8px;
  position: relative;
}

.top-left:hover {
  opacity: 1;
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
}

.top-left svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.top-left:hover svg {
  transform: scale(1.15) rotate(5deg);
}

.lang-switcher {
  display: flex;
  gap: 6px;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.6);
}

.lang-btn.active {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================= MAIN HEADER ================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  max-width: 1380px;
  margin: auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 82px;
  width: auto;
  transition: transform 0.3s ease;
}

.header-logo:hover img {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-btn {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nav-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,var(--brand),var(--brand-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.nav-btn::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.nav-btn:hover::before,
.nav-btn.active::before {
  opacity: 1;
}

.nav-btn:hover::after,
.nav-btn.active::after {
  opacity: 1;
}

.nav-btn:hover,
.nav-btn.active {
  color: transparent;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,116,201,0.3);
}

.cta-btn {
  margin-left: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg,var(--brand),var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(10,116,201,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.cta-btn:hover::before {
  transform: translateX(100%) rotate(45deg);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(10,116,201,0.5);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* ================= HERO SECTION ================= */
.hero-section {
  position: relative;
  padding: 80px 22px 100px;
  background: linear-gradient(180deg,#ffffff,#eef4fa);
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(10,116,201,0.15), transparent),
    radial-gradient(600px 350px at 90% 80%, rgba(10,116,201,0.12), transparent);
  animation: glowPulse 8s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes glowPulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10,116,201,0.6), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  min-height: 520px;
}

/* ===== HERO CONTENT ===== */
.hero-content {
  animation: heroSlideIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,116,201,0.12), rgba(10,116,201,0.08));
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(10,116,201,0.2);
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(10deg); }
}

.hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 550px;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-btn {
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-btn:hover::before {
  transform: translateX(100%);
}

.hero-btn.primary {
  background: linear-gradient(135deg,var(--brand),var(--brand-dark));
  color: #fff;
  box-shadow: 0 14px 35px rgba(10,116,201,0.4);
  animation: primaryPulse 3s ease-in-out infinite;
}

@keyframes primaryPulse {
  0%, 100% {
    box-shadow: 0 14px 35px rgba(10,116,201,0.4);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 20px 50px rgba(10,116,201,0.6);
    transform: translateY(-3px);
  }
}

.hero-btn.primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(10,116,201,0.6);
}

.hero-btn.secondary {
  background: #fff;
  color: var(--dark);
  border: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-btn.secondary:hover {
  background: rgba(10,116,201,0.08);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* ===== TRUST STRIP ===== */
.hero-trust {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: trustFadeIn 1s ease-out 0.5s both;
}

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

.trust-item {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-dark);
  background: linear-gradient(135deg, rgba(10,116,201,0.1), rgba(10,116,201,0.05));
  border: 1px solid rgba(10,116,201,0.2);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(10,116,201,0.15), rgba(10,116,201,0.08));
  box-shadow: 0 8px 20px rgba(10,116,201,0.2);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  animation: visualSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, rgba(10,116,201,0.3), transparent 70%);
  z-index: -1;
  animation: glowRotate 10s linear infinite;
}

@keyframes glowRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

.hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
  animation: heroFloat 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.5);
}

@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: blobMove 8s ease-in-out infinite;
  z-index: -1;
}

@keyframes blobMove {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    transform: rotate(180deg);
  }
}

/* ================= STATS BAR ================= */
.stats-bar {
  background: linear-gradient(135deg, rgba(10,116,201,0.05), rgba(10,116,201,0.02));
  padding: 50px 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1380px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.stat-number {
  font-size: 42px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 22px;
  }

  .hero-section {
    padding: 60px 22px 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .header-logo img {
    height: 60px;
  }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .trust-item {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .stats-inner {
    grid-template-columns: 1fr;
  }
}
/* ================= ABOUT SECTION ================= */
.about-section {
  padding: 100px 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,116,201,0.08), transparent 70%);
  border-radius: 50%;
  animation: aboutGlow 15s ease-in-out infinite;
}

@keyframes aboutGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, 50px) scale(1.1); }
}

.about-inner {
  max-width: 1380px;
  margin: auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT - Image Grid */
.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  animation: aboutImagesSlide 1s ease-out both;
}

@keyframes aboutImagesSlide {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-img:nth-child(1) {
  grid-row: 1 / 3;
  height: 400px;
}

.about-img:nth-child(2) {
  height: 190px;
}

.about-img:nth-child(3) {
  height: 190px;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  padding: 25px 30px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(10,116,201,0.4);
  z-index: 2;
  animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.experience-badge .number {
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.95;
}

/* RIGHT - Content */
.about-content {
  animation: aboutContentSlide 1s ease-out 0.2s both;
}

@keyframes aboutContentSlide {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,116,201,0.1), rgba(10,116,201,0.05));
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(10,116,201,0.2);
}

.about-content h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.about-content h2 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

/* Features List */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(10,116,201,0.04);
  border-radius: 12px;
  border: 1px solid rgba(10,116,201,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(10,116,201,0.08);
  border-color: rgba(10,116,201,0.2);
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-text {
  flex: 1;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(10,116,201,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.about-cta:hover::before {
  transform: translateX(100%);
}

.about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(10,116,201,0.5);
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 22px;
  }

  .hero-section {
    padding: 60px 22px 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .header-logo img {
    height: 60px;
  }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-images {
    order: -1;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .trust-item {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .stats-inner {
    grid-template-columns: 1fr;
  }
  
  .about-img:nth-child(1) {
    height: 300px;
  }
}

/* ================= SERVICES SECTION ================= */
.services-section {
  padding: 100px 22px;
  background: linear-gradient(180deg, #f8fbff, #ffffff);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(10,116,201,0.05), transparent 70%);
  animation: servicesGlow 20s ease-in-out infinite;
}

@keyframes servicesGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.2); }
}

.services-inner {
  max-width: 1380px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  animation: headerFadeIn 0.8s ease-out both;
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,116,201,0.12), rgba(10,116,201,0.08));
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(10,116,201,0.2);
}

.section-header h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-bottom: 50px;
}

.service-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  animation: cardSlideUp 0.6s ease-out both;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark), var(--brand));
  -webkit-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.5s ease;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

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

.service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 70px rgba(10,116,201,0.25);
}

.service-card:hover::before {
  opacity: 1;
}

/* Image Container */
.service-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-image::before {
  opacity: 0.3;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.95);
}

.service-card:hover .service-image img {
  transform: scale(1.15) rotate(3deg);
  filter: brightness(1.05);
}

/* Icon Badge */
.service-icon {
  position: absolute;
  bottom: -30px;
  left: 35px;
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 15px 35px rgba(10,116,201,0.5);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 3px solid #fff;
}

.service-card:hover .service-icon {
  transform: rotate(15deg) scale(1.15);
  box-shadow: 0 20px 45px rgba(10,116,201,0.6);
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(255,215,0,0.4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Content */
.service-content {
  padding: 45px 35px 35px;
  position: relative;
}

.service-content h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--brand);
}

.service-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 26px;
}

/* Features List */
.service-features {
  list-style: none;
  margin-bottom: 28px;
  padding-left: 0;
  display: grid;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

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

.service-features li:hover {
  padding-left: 8px;
  color: var(--brand);
}

.service-features li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(10,116,201,0.3);
  transition: all 0.3s ease;
}

.service-features li:hover::before {
  transform: rotate(360deg) scale(1.1);
}

/* Card Button */
.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(10,116,201,0.3);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.service-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-btn span {
  position: relative;
  z-index: 1;
}

.service-btn svg {
  position: relative;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-btn:hover::before {
  opacity: 1;
}

.service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(10,116,201,0.5);
}

.service-btn:hover svg {
  transform: translateX(5px);
}

/* CTA Banner */
.services-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 24px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(10,116,201,0.3);
  position: relative;
  overflow: hidden;
  animation: ctaSlideUp 0.8s ease-out 0.4s both;
}

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

.services-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  opacity: 0.3;
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(100px, 100px); }
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 14px;
  background: #fff;
  color: var(--brand);
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 80px 20px 20px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .header-nav.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-direction: column;
    gap: 10px;
    padding: 12px 22px;
  }

  .hero-section {
    padding: 60px 22px 80px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    order: -1;
  }

  .header-logo img {
    height: 60px;
  }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-images {
    order: -1;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .about-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .trust-item {
    font-size: 11px;
    padding: 8px 12px;
  }
  
  .stats-inner {
    grid-template-columns: 1fr;
  }
  
  .about-img:nth-child(1) {
    height: 300px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .services-cta {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }
  
  .cta-content h3 {
    font-size: 26px;
  }
  
  .section-header h2 {
    font-size: 36px;
  }
}

/* ================= FLOATING ACTION BUTTONS ================= */
/* CONTAINER FOR FLOATING ACTIONS */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10000;
}

/* BASE FAB STYLE - THE MODERN CURVE */
.fab {
    width: 58px;
    height: 58px;
    border-radius: 18px; /* The "Superfine" Squircle Curve */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* WHATSAPP BUTTON */
.fab.whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.fab.whatsapp svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }
    50% { transform: scale(1.08); box-shadow: 0 18px 45px rgba(37,211,102,0.7); }
}

/* BACK TO TOP BUTTON */
.fab.top {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab.top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER EFFECTS */
.fab:hover {
    transform: translateY(-5px) scale(1.1);
}

/* MOBILE FIXED HEADER WITH SOFT CURVE */
@media (max-width: 1024px) {
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    body { padding-top: 88px; }
}

@media (max-width: 600px) {
    .floating-actions { right: 16px; bottom: 16px; }
    .fab { width: 52px; height: 52px; border-radius: 16px; }
}

/* ===== MOBILE: ALWAYS SHOW FLOATING BUTTONS ===== */
@media (max-width: 768px) {
  .floating-actions {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    display: flex !important;
  }

  .floating-actions.hide {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}


/* ================= PROJECTS SECTION – FULL WIDTH ================= */
.projects-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding: 100px 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  position: relative;
  overflow: hidden;
}

/* INNER CONTENT CENTER */
.projects-inner {
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* BACKGROUND GLOWS */
.projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(10,116,201,0.08), transparent 70%);
  animation: projectsGlow 25s ease-in-out infinite;
}

.projects-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(10,116,201,0.06), transparent 70%);
  animation: projectsGlow 25s ease-in-out infinite reverse;
}

/* GLOW ANIMATION */
@keyframes projectsGlow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
    opacity: 0.8;
  }
}



.projects-inner {
  max-width: 1380px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  animation: headerSlideDown 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,116,201,0.15), rgba(10,116,201,0.08));
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 20px;
  border: 1px solid rgba(10,116,201,0.25);
  animation: badgeFloat 3s ease-in-out infinite;
  box-shadow: 0 8px 20px rgba(10,116,201,0.15);
}

@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.section-header h2 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-header h2 span::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
  border-radius: 2px;
  opacity: 0.3;
}

.section-header p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  animation: tabsSlideUp 0.8s ease-out 0.2s both;
}

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

.filter-btn {
  padding: 12px 28px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--border);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.filter-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.filter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(10,116,201,0.2);
  border-color: var(--brand);
}

.filter-btn.active {
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(10,116,201,0.4);
  transform: translateY(-2px);
}

.filter-btn.active::before {
  opacity: 1;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 35px;
  margin-bottom: 60px;
}

.project-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.08);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid transparent;
  animation: cardFadeIn 0.6s ease-out both;
  position: relative;
  cursor: pointer;
}

.project-card.hidden {
  display: none;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }
.project-card:nth-child(5) { animation-delay: 0.5s; }
.project-card:nth-child(6) { animation-delay: 0.6s; }

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

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  -webkit-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.5s ease;
}

.project-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 40px 80px rgba(10,116,201,0.25);
}

.project-card:hover::before {
  opacity: 1;
}

/* Project Image */
.project-image {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.project-card:hover .project-image::after {
  opacity: 0.4;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: brightness(0.9);
}

.project-card:hover .project-image img {
  transform: scale(1.2) rotate(2deg);
  filter: brightness(1.1);
}

/* Category Badge */
.project-category {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.project-card:hover .project-category {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
}

/* Status Badge */
.project-status {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.project-status.completed {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
}

.project-status.ongoing {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
}

.project-card:hover .project-status {
  transform: translateY(-5px) scale(1.05);
}

/* Project Info Overlay */
.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.85) 100%);
  backdrop-filter: blur(1px);
  transition: all 0.4s ease;
}

.project-card:hover .project-info {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 20%, rgba(10,116,201,0.9) 100%);
  backdrop-filter: blur(4px);
}

.project-client {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.project-client svg {
  width: 14px;
  height: 14px;
}

.project-card:hover .project-client {
  color: #fff;
  transform: translateX(3px);
}

.project-title {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.25;
  transition: all 0.3s ease;
}

.project-card:hover .project-title {
  transform: translateY(-2px);
}

.project-description {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  max-height: 0;
  overflow: hidden;
}

.project-card:hover .project-description {
  opacity: 1;
  transform: translateY(0);
  max-height: 100px;
}

/* Project Stats */
.project-stats {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease 0.1s;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.project-card:hover .project-stats {
  opacity: 1;
  transform: translateY(0);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stat-value {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #50C878;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* View Button */
.view-project {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(10,116,201,0.4);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  opacity: 0;
  transform: scale(0);
  border: none;
  cursor: pointer;
}

.project-card:hover .view-project {
  opacity: 1;
  transform: scale(1);
}

.view-project:hover {
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 15px 35px rgba(10,116,201,0.6);
}

/* CTA Section */
.projects-cta {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  border-radius: 28px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10,116,201,0.3);
  animation: ctaSlideUp 0.8s ease-out 0.6s both;
}

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

.projects-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1), transparent 60%),
              radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08), transparent 60%);
  animation: ctaGlow 8s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.projects-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  margin-bottom: 25px;
  font-size: 36px;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cta-content h3 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.cta-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-button:hover::before {
  transform: translateX(100%);
}

.cta-button.primary {
  background: #fff;
  color: var(--brand);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-button.primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-button.secondary {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-button.secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
  }
  
  .section-header h2 {
    font-size: 46px;
  }
}

@media (max-width: 900px) {
  .projects-section {
    padding: 70px 18px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 38px;
  }
  
  .section-header p {
    font-size: 16px;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-image {
    height: 260px;
  }
  
  .project-info {
    padding: 20px;
  }
  
  .project-title {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .project-description {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .project-stats {
    gap: 14px;
    padding-top: 10px;
  }
  
  .stat-value {
    font-size: 15px;
  }
  
  .stat-label {
    font-size: 9px;
  }
  
  .view-project {
    width: 44px;
    height: 44px;
    bottom: 20px;
    right: 20px;
    font-size: 16px;
  }
  
  .filter-tabs {
    gap: 8px;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  
  .projects-cta {
    padding: 50px 35px;
  }
  
  .cta-content h3 {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .projects-section {
    padding: 60px 16px;
  }
  
  .section-header h2 {
    font-size: 30px;
    margin-bottom: 16px;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .section-label {
    font-size: 12px;
    padding: 8px 16px;
  }
  
  .filter-tabs {
    gap: 6px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  .project-card {
    border-radius: 20px;
  }
  
  .project-image {
    height: 220px;
  }
  
  .project-info {
    padding: 16px;
  }
  
  .project-client {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .project-client svg {
    width: 12px;
    height: 12px;
  }
  
  .project-title {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .project-description {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  
  .project-stats {
    gap: 12px;
    padding-top: 8px;
  }
  
  .stat-value {
    font-size: 14px;
  }
  
  .stat-label {
    font-size: 9px;
  }
  
  .project-category {
    font-size: 11px;
    padding: 6px 14px;
    top: 16px;
    left: 16px;
  }
  
  .project-status {
    font-size: 10px;
    padding: 6px 12px;
    top: 16px;
    right: 16px;
  }
  
  .view-project {
    width: 40px;
    height: 40px;
    bottom: 16px;
    right: 16px;
    font-size: 14px;
  }
  
  .projects-cta {
    padding: 40px 24px;
    border-radius: 20px;
  }
  
  .cta-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
    margin-bottom: 20px;
  }
  
  .cta-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .cta-content p {
    font-size: 15px;
    margin-bottom: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .projects-section {
    padding: 50px 14px;
  }
  
  .section-header h2 {
    font-size: 26px;
  }
  
  .project-image {
    height: 200px;
  }
  
  .project-info {
    padding: 14px;
  }
  
  .project-title {
    font-size: 16px;
  }
  
  .project-description {
    font-size: 10px;
  }
  
  .project-stats {
    gap: 10px;
  }
  
  .stat-value {
    font-size: 13px;
  }
  
  .stat-label {
    font-size: 8px;
  }
  
  .view-project {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  
  .cta-content h3 {
    font-size: 22px;
  }
}


/* ================= ULTRA CONTACT (FULL WIDTH) ================= */
/* ==========================================================
   ULTRA PRO+++ CONTACT FORM – ALL IN ONE
   ZERO HTML / JS CHANGES REQUIRED
========================================================== */

:root{
  --brand:#0a74c9;
  --brand-dark:#07579a;
  --accent:#38bdf8;
  --success:#22c55e;

  --dark:#0f172a;
  --muted:#64748b;

  --glass:rgba(255,255,255,.82);
  --glass-border:rgba(255,255,255,.4);

  --shadow-soft:0 15px 40px rgba(0,0,0,.1);
  --shadow-hover:0 35px 80px rgba(10,116,201,.35);

  --ease-ultra:cubic-bezier(.22,1,.36,1);
}

/* ================= SECTION ================= */
.ultra-contact{
  padding:120px 5%;
  background:
    radial-gradient(800px 300px at 20% 10%,rgba(56,189,248,.15),transparent 60%),
    linear-gradient(180deg,#fff,#f1f5f9);
  font-family:'Inter',system-ui,sans-serif;
}

.ultra-container{
  max-width:1280px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

/* ================= LEFT ================= */
.contact-pill{
  display:inline-block;
  background:rgba(10,116,201,.1);
  color:var(--brand);
  padding:6px 16px;
  border-radius:50px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
}

.ultra-title{
  font-size:clamp(32px,5vw,54px);
  font-weight:800;
  line-height:1.1;
  margin:20px 0;
  color:var(--dark);
}

.ultra-title span{
  background:linear-gradient(90deg,var(--brand),var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.ultra-desc{
  color:var(--muted);
  max-width:480px;
}

.contact-features{
  display:flex;
  gap:30px;
  margin:40px 0;
}

.feat-item{
  font-size:14px;
  color:var(--muted);
}

.feat-item strong{
  display:block;
  font-size:20px;
  color:var(--dark);
}

/* ================= CONTACT LINKS ================= */
.contact-links{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.contact-link-item{
  display:flex;
  align-items:center;
  gap:15px;
  padding:14px 18px;
  border-radius:18px;
  text-decoration:none;
  color:inherit;
  transition:.45s var(--ease-ultra);
}

.contact-link-item:hover{
  background:rgba(10,116,201,.06);
  transform:translateX(10px);
  box-shadow:0 18px 35px rgba(10,116,201,.18);
}

.link-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.08);
  transition:.45s var(--ease-ultra);
}

.contact-link-item:hover .link-icon{
  background:linear-gradient(135deg,var(--brand),var(--accent));
  color:#fff;
  transform:scale(1.1) rotate(3deg);
}

/* ================= FORM CARD ================= */
.contact-form-card{
  position:relative;
  background:var(--glass);
  backdrop-filter:blur(20px);
  padding:50px;
  border-radius:32px;
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-soft);
  transition:.6s var(--ease-ultra);
}

.contact-form-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  background:linear-gradient(120deg,transparent 20%,rgba(56,189,248,.35),transparent 80%);
  opacity:0;
  transition:.6s;
  pointer-events:none;
}

.contact-form-card:hover{
  transform:translateY(-8px) scale(1.01);
  box-shadow:var(--shadow-hover);
}

.contact-form-card:hover::before{opacity:1}

/* ================= FORM ================= */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.input-group{margin-bottom:20px}
.full-width{grid-column:span 2}

input,select,textarea{
  width:100%;
  padding:16px 20px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  font-size:15px;
  background:linear-gradient(180deg,#fff,#f8fafc);
  transition:
    transform .35s var(--ease-ultra),
    box-shadow .35s var(--ease-ultra),
    border-color .35s;
}

input:hover,
select:hover,
textarea:hover{
  transform:translateY(-2px);
  border-color:var(--accent);
  box-shadow:0 12px 24px rgba(56,189,248,.2);
}

input:focus,
select:focus,
textarea:focus{
  outline:none;
  border-color:var(--brand);
  background:#fff;
  box-shadow:
    0 0 0 6px rgba(10,116,201,.15),
    0 20px 40px rgba(10,116,201,.35);
}

/* ================= BUTTON ================= */
.submit-btn{
  width:100%;
  padding:18px;
  border:none;
  border-radius:18px;
  font-weight:800;
  font-size:16px;
  color:#fff;
  cursor:pointer;
  background:linear-gradient(135deg,var(--brand),#3b82f6);
  position:relative;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(10,116,201,.4);
  transition:.45s var(--ease-ultra);
}

.submit-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,transparent 20%,rgba(255,255,255,.7),transparent 80%);
  transform:translateX(-120%);
  transition:.7s var(--ease-ultra);
}

.submit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 30px 70px rgba(10,116,201,.55);
}

.submit-btn:hover::before{
  transform:translateX(120%);
}

.form-privacy{
  text-align:center;
  font-size:12px;
  color:var(--muted);
  margin-top:15px;
}

/* ================= POPUP ================= */
.ultra-popup{
  position:fixed;
  inset:0;
  background:rgba(15,23,42,.65);
  backdrop-filter:blur(12px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.ultra-popup.active{display:flex}

.popup-glass-card{
  background:rgba(255,255,255,.95);
  padding:50px 40px;
  border-radius:40px;
  text-align:center;
  max-width:440px;
  width:90%;
  box-shadow:0 40px 100px rgba(0,0,0,.25);
  animation:popupFloat .6s var(--ease-ultra);
}

@keyframes popupFloat{
  from{opacity:0;transform:translateY(40px) scale(.92)}
  to{opacity:1;transform:translateY(0) scale(1)}
}

.checkmark-circle{
  width:80px;height:80px;
  border-radius:50%;
  margin:auto;
  border:4px solid var(--success);
  position:relative;
}

.checkmark:after{
  content:"";
  position:absolute;
  left:18px;top:38px;
  width:22px;height:40px;
  border-right:4px solid var(--success);
  border-top:4px solid var(--success);
  transform:scaleX(-1) rotate(135deg);
  animation:checkmark .8s ease forwards;
}

@keyframes checkmark{
  from{height:0;width:0}
  to{height:40px;width:22px}
}

.close-btn{
  margin-top:20px;
  padding:15px 35px;
  border:none;
  border-radius:14px;
  background:var(--dark);
  color:#fff;
  font-weight:800;
  cursor:pointer;
  transition:.35s;
}

.close-btn:hover{
  background:var(--brand);
  transform:scale(1.06);
}

/* ================= MOBILE ================= */
@media(max-width:992px){
  .ultra-container{grid-template-columns:1fr;gap:60px}
}

@media(max-width:600px){
  .form-grid{grid-template-columns:1fr}
  .contact-form-card{padding:30px 22px}
}



/* SMOOTH SCROLLING & SCROLL SPY FIXES */
html {
  scroll-behavior: smooth; /* Ensures smooth transitions when clicking links */
}

/* Ensure sections have padding so the header doesn't cover content */
section {
  scroll-margin-top: 100px; /* Adjust this to match your header height */
}

/* Scroll Spy Active State - Ensures visibility */
.nav-btn.active::before {
  opacity: 1 !important;
}
.nav-btn.active::after {
  opacity: 1 !important;
}
.nav-btn.active {
  color: transparent !important;
  border-color: transparent !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,116,201,0.3);
}

/* Floating Actions Transition */
.floating-actions {
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.floating-actions.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f5f5f5;
            margin: 0;
    padding: 0;
        }

        /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0f4c75, #3282b8, #0f4c75);
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }

        /* Newsletter Section */
        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
            transition: transform 0.3s ease;
        }

        .footer-newsletter:hover {
            transform: translateY(-5px);
        }

        .newsletter-content {
            flex: 1;
            min-width: 250px;
        }

        .newsletter-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #fff;
        }

        .newsletter-content p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .newsletter-form {
            flex: 1;
            min-width: 300px;
            display: flex;
            gap: 10px;
        }

        .newsletter-input {
            flex: 1;
            padding: 14px 20px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            color: #fff;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .newsletter-input:focus {
            outline: none;
            border-color: #3282b8;
            background: rgba(255, 255, 255, 0.1);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-btn {
            padding: 14px 30px;
            background: linear-gradient(135deg, #0f4c75, #3282b8);
            border: none;
            border-radius: 10px;
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .newsletter-btn:hover::before {
            left: 100%;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(50, 130, 184, 0.4);
        }

        /* Main Footer Grid */
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #3282b8, transparent);
            border-radius: 2px;
        }

        /* Company Column */
        .footer-company {
            padding-right: 30px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #0f4c75, #3282b8);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            transform: rotate(-5deg);
            transition: transform 0.3s ease;
        }

        .footer-logo:hover .logo-icon {
            transform: rotate(0deg) scale(1.1);
        }

        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .footer-badges {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 11px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .badge:hover {
            background: rgba(50, 130, 184, 0.3);
            border-color: #3282b8;
        }

        /* Links */
        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .footer-links a::before {
            content: '→';
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #3282b8;
            padding-left: 8px;
        }

        .footer-links a:hover::before {
            opacity: 1;
            transform: translateX(0);
        }

        /* Contact Info */
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .contact-icon {
            width: 38px;
            height: 38px;
            background: rgba(50, 130, 184, 0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            background: #3282b8;
            transform: translateY(-3px);
        }

        .contact-item:hover {
            color: #fff;
        }

        /* Social Media */
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f4c75, #3282b8);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .social-link:hover::before {
            opacity: 1;
        }

        .social-link svg {
            position: relative;
            z-index: 1;
        }

        .social-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(50, 130, 184, 0.4);
        }

        /* Footer Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
        }

        .footer-legal {
            display: flex;
            gap: 20px;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: #3282b8;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .footer-container {
                padding: 50px 20px 25px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-company {
                grid-column: 1 / -1;
                padding-right: 0;
            }
        }

        @media (max-width: 768px) {
            .footer-newsletter {
                padding: 30px 20px;
                gap: 20px;
            }

            .newsletter-content h3 {
                font-size: 20px;
            }

            .newsletter-form {
                flex-direction: column;
                width: 100%;
            }

            .newsletter-input,
            .newsletter-btn {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            /* Hide Quick Links, Services, and Contact sections on mobile */
            .footer-column:not(.footer-company) {
                display: none;
            }

            .footer-company {
                text-align: center;
                grid-column: 1;
            }

            .footer-logo {
                justify-content: center;
            }

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

            .social-links {
                justify-content: center;
            }

            /* Hide legal links on mobile */
            .footer-legal {
                display: none;
            }

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

        @media (max-width: 640px) {
            body {
                padding: 20px 0;
            }

            .footer-container {
                padding: 40px 15px 20px;
            }

            .footer-newsletter {
                padding: 25px 15px;
            }

            .newsletter-content h3 {
                font-size: 18px;
            }

            .newsletter-content p {
                font-size: 13px;
            }

            .footer-logo {
                font-size: 24px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
                font-size: 18px;
            }

            .footer-description {
                font-size: 13px;
            }

            .badge {
                font-size: 10px;
                padding: 6px 10px;
            }

            .social-link {
                width: 40px;
                height: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-copyright {
                font-size: 12px;
            }
        }

        @media (max-width: 375px) {
            .footer-container {
                padding: 30px 10px 15px;
            }

            .footer-newsletter {
                padding: 20px 12px;
            }

            .newsletter-input,
            .newsletter-btn {
                font-size: 13px;
                padding: 12px 16px;
            }

            .footer-logo {
                font-size: 20px;
            }

            .logo-icon {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }

            .footer-badges {
                gap: 8px;
            }

            .badge {
                font-size: 9px;
                padding: 5px 8px;
            }

            .social-link {
                width: 36px;
                height: 36px;
            }

            .social-link svg {
                width: 16px;
                height: 16px;
            }
        }

        /* Touch device improvements */
        @media (hover: none) and (pointer: coarse) {
            .contact-item:active .contact-icon {
                background: #3282b8;
                transform: scale(0.95);
            }

            .footer-links a:active {
                color: #3282b8;
            }

            .social-link:active {
                transform: scale(0.9);
            }

            .newsletter-btn:active {
                transform: scale(0.98);
            }
        }
        
        
        /* ARABIC RTL ADJUSTMENTS */
[dir="rtl"] body {
    text-align: right;
    font-family: 'Inter', sans-serif; /* You can add an Arabic font here if you like */
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .nav-btn {
    margin-left: 0;
    margin-right: 20px; /* Moves margin to the other side */
}

[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 15px;
}

/* Fix for form fields in RTL */
[dir="rtl"] input, [dir="rtl"] textarea {
    text-align: right;
}

/* Ensure the submit button arrow points the right way */
[dir="rtl"] .submit-btn svg {
    transform: scaleX(-1);
}