/* ============================================================
   AymanInfotech Business Template - style.css
   Author: AymanInfotech | aymaninfotechs@gmail.com
   Version: 1.0
   ============================================================ */

/* -------------------------
   1. CSS Variables / Tokens
------------------------- */
:root {
  --primary:       #1a56db;
  --primary-dark:  #1341b0;
  --primary-light: #e8f0fe;
  --secondary:     #0ea5e9;
  --accent:        #f59e0b;
  --dark:          #0f172a;
  --dark-2:        #1e293b;
  --text:          #334155;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --white:         #ffffff;
  --light:         #f8fafc;
  --light-2:       #f1f5f9;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:        0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:     0 10px 40px rgba(0,0,0,.14);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --transition:    all .3s ease;
  --font:          'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* -------------------------
   2. Base / Reset
------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* -------------------------
   3. Typography
------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { color: var(--text); margin-bottom: 1rem; }
.text-muted { color: var(--text-muted) !important; }
.text-primary { color: var(--primary) !important; }
.lead { font-size: 1.125rem; color: var(--text-muted); }

/* -------------------------
   4. Utility Classes
------------------------- */
.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-custom { background-color: var(--light); }
.bg-dark-custom { background-color: var(--dark); }
.bg-primary-custom { background-color: var(--primary); }

/* Section Header */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-header h2 { margin-bottom: .5rem; }
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 50px;
  margin: 20px auto 0;
}

/* -------------------------
   5. Buttons
------------------------- */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(26,86,219,.3);
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26,86,219,.4);
  color: var(--white);
}
.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 15px 36px; font-size: 1rem; border-radius: 10px; }

/* -------------------------
   6. Navbar
------------------------- */
.navbar-custom {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  transition: var(--transition);
  z-index: 1030;
}
.navbar-custom.sticky-top { position: sticky; top: 0; }
.navbar-custom.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow);
}
.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-brand-custom .logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}
.navbar-brand-custom .logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
}
.navbar-brand-custom .logo-text span { color: var(--primary); }
.navbar-nav .nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 8px 22px !important;
}
.nav-cta:hover {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary)) !important;
  transform: translateY(-1px);
}
.navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar-toggler:focus { box-shadow: none; }

/* -------------------------
   7. Hero Section
------------------------- */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(26,86,219,.25) 0%, transparent 65%);
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(14,165,233,.15) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,86,219,.2);
  border: 1px solid rgba(26,86,219,.35);
  color: #93c5fd;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: #22d3ee;
  border-radius: 50%;
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero-section h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-section h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-section .lead { color: rgba(255,255,255,.72); margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label { font-size: .82rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.hero-image-wrap {
  position: relative;
  z-index: 2;
}
.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-floating-card.card-1 { bottom: 30px; left: -20px; }
.hero-floating-card.card-2 { top: 30px; right: -20px; animation-delay: 2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-floating-card .card-icon {
  width: 42px; height: 42px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

/* -------------------------
   8. Stats / Counter
------------------------- */
.stats-section { background: var(--primary); padding: 60px 0; }
.stat-card {
  text-align: center;
  color: var(--white);
  padding: 20px;
}
.stat-card .stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .stat-label {
  font-size: .9rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-divider {
  border-left: 1px solid rgba(255,255,255,.2);
}

/* -------------------------
   9. Service Cards
------------------------- */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
  color: var(--white);
}
.service-card h4 { margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: .95rem; margin-bottom: 20px; }
.service-link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-link:hover { gap: 10px; }

/* -------------------------
   10. About Section
------------------------- */
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge-box {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 28px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}
.about-badge-box .big-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.about-badge-box .small-text {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .95rem;
}
.feature-list .check-icon {
  width: 24px; height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.mission-vision { gap: 16px; }
.mv-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--primary);
}
.mv-card h5 { color: var(--dark); margin-bottom: 10px; }
.mv-card p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* -------------------------
   11. Team Cards
------------------------- */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-img-wrap { position: relative; overflow: hidden; }
.team-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  transition: var(--transition);
}
.team-card:hover .team-img-wrap img { transform: scale(1.06); }
.team-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,86,219,.85), transparent);
  padding: 24px 20px 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: var(--transition);
}
.team-card:hover .team-overlay { transform: translateY(0); }
.team-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .9rem;
  backdrop-filter: blur(4px);
}
.team-social:hover { background: var(--white); color: var(--primary); }
.team-info { padding: 22px 20px; }
.team-info h5 { margin-bottom: 4px; }
.team-info .role { font-size: .85rem; color: var(--primary); font-weight: 600; }

/* -------------------------
   12. Portfolio
------------------------- */
.portfolio-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  background: var(--light-2);
  color: var(--text);
  border: none;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover { background: var(--primary); color: var(--white); }

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.portfolio-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.portfolio-card:hover .portfolio-img img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,86,219,.85), rgba(14,165,233,.75));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-icon {
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  transform: scale(.7);
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay-icon { transform: scale(1); }
.portfolio-info { padding: 22px; background: var(--white); }
.portfolio-category { font-size: .8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.portfolio-info h5 { margin-bottom: 8px; }
.portfolio-info p { color: var(--text-muted); font-size: .9rem; margin: 0; }

/* -------------------------
   13. Testimonials
------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; right: 28px;
  font-size: 5rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }
.testimonial-text { color: var(--text); font-size: .97rem; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: .95rem; margin-bottom: 2px; }
.testimonial-role { font-size: .82rem; color: var(--text-muted); }

/* -------------------------
   14. Blog Cards
------------------------- */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img {
  overflow: hidden;
  height: 220px;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.07); }
.blog-content { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: .82rem;
  color: var(--text-muted);
}
.blog-meta .category {
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.blog-content h5 { margin-bottom: 12px; line-height: 1.4; }
.blog-content h5 a { color: var(--dark); }
.blog-content h5 a:hover { color: var(--primary); }
.blog-content p { color: var(--text-muted); font-size: .9rem; flex: 1; }
.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.blog-author { display: flex; align-items: center; gap: 8px; }
.blog-author img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.blog-author span { font-size: .85rem; font-weight: 600; color: var(--text); }
.read-more { font-size: .85rem; font-weight: 600; color: var(--primary); }

/* -------------------------
   15. Contact
------------------------- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: var(--transition);
  height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.contact-icon {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail h6 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 6px; }
.contact-detail p { color: var(--dark); font-weight: 600; font-size: .97rem; margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .95rem;
  color: var(--text);
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
  color: var(--dark);
}
.form-control::placeholder { color: #94a3b8; }
textarea.form-control { resize: vertical; min-height: 140px; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* -------------------------
   16. Newsletter
------------------------- */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1341b0 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 45%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.08) 0%, transparent 65%);
}
.newsletter-section h2 { color: var(--white); }
.newsletter-section p { color: rgba(255,255,255,.75); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form .form-control {
  flex: 1;
  min-width: 240px;
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.12);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.6); }
.newsletter-form .form-control:focus { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); box-shadow: none; color: var(--white); }
.btn-newsletter {
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-newsletter:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

/* -------------------------
   17. Footer
------------------------- */
.footer {
  background: var(--dark);
  padding: 70px 0 0;
}
.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; font-weight: 800; }
.footer-brand .logo-text span { color: var(--secondary); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 16px; max-width: 300px; }
.footer-title { color: var(--white); font-size: .95rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin-bottom: 14px;
}
.footer-contact .fc-icon {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,.4); font-size: .85rem; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: var(--white); }

/* -------------------------
   18. Page Hero Banner
------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #1a3a6e 100%);
  padding: 100px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 55%; height: 170%;
  background: radial-gradient(ellipse, rgba(26,86,219,.2) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.65); margin-bottom: 0; }
.breadcrumb { background: none; padding: 0; margin-bottom: 12px; }
.breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .9rem; }
.breadcrumb-item.active { color: rgba(255,255,255,.9); font-size: .9rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* -------------------------
   19. Values / Icon Blocks
------------------------- */
.value-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}

/* -------------------------
   20. Back-to-Top
------------------------- */
#backToTop {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* -------------------------
   21. Preloader
------------------------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 54px; height: 54px;
  border: 4px solid rgba(255,255,255,.15);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------
   22. Scroll Reveal Animation
------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* -------------------------
   23. Responsive
------------------------- */
@media (max-width: 991.98px) {
  .hero-image-wrap { margin-top: 48px; }
  .hero-floating-card.card-1 { left: 0; }
  .hero-floating-card.card-2 { right: 0; }
  .about-badge-box { right: 0; }
  .stat-divider { border-left: none; border-top: 1px solid rgba(255,255,255,.2); }
  .contact-form-wrap { padding: 36px 24px; }
}
@media (max-width: 767.98px) {
  .section-padding { padding: 70px 0; }
  .hero-section { padding: 100px 0 70px; text-align: center; }
  .hero-btns, .hero-stats { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-form .form-control { min-width: 100%; }
  .hero-floating-card { display: none; }
}
@media (max-width: 575.98px) {
  .navbar-brand-custom .logo-text { font-size: 1.1rem; }
  h2 { font-size: 1.6rem; }
  .hero-stats { gap: 20px; }
}
