/* ================================
   TOPBAR
================================== */
.topbar {
  background: #0E7AFE; /* brand color */
  color: #fff;
  font-size: 14px;
  padding: 6px 0;
}

.topbar a {
  color: #fff;
  text-decoration: none;
  transition: color .3s;
}

.topbar a:hover {
  color: #ffd700;
}

.topbar-left span {
  margin-right: 16px;
  font-weight: 500;
}

.topbar-right a {
  display: inline-block;
  font-size: 16px;
  margin-left: 10px;
}

/* Responsive */
@media (max-width: 767.98px) {
  .topbar {
    font-size: 13px;
    padding: 8px 0;
  }
  .topbar-left span {
    display: block;
    margin: 2px 0;
  }
  .topbar-right {
    margin-top: 6px;
  }
}


/* ================================
   DARK HEADER & TEXT-LOGO
=================================== */
.site-header-dark {
  position: sticky;
  top: 0;
  z-index: 1100;
}

/* Navbar base */
.nav-dark {
  background: #111 !important;
  padding: 0.5rem 0;
}
.nav-dark .navbar-brand {
  padding: 0 1rem;
  display: flex;
  align-items: center;
}

/* Text Logo */
.text-logo {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-decoration: none;
}
.logo-part1 {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
.logo-part2 {
  color: #FFD700;
  margin-left: 2px;
  position: relative;
}
.logo-part2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,215,0,0.7), rgba(255,215,0,0.3));
  border-radius: 2px;
}

/* Toggler icon (white) */
.navbar-dark .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.7%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav links */
.nav-dark .navbar-nav {
  gap: 1rem;
}
.nav-dark .navbar-nav .nav-link {
  color: #eee;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0 1rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

/* Underline on hover/active */
.nav-dark .nav-link::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
  transform: translateX(-50%);
}
.nav-dark .nav-link:hover::before,
.nav-dark .nav-link.active::before {
  width: 50%;
  left: 50%;
}

/* Mobile Collapsed Menu Fix */
@media (max-width: 991.98px) {
  /* Collapsed menu container */
  .nav-dark .navbar-collapse.show {
    background: #fff !important;
    padding: 1rem;
  }
  /* Collapsed nav-links styling */
  .nav-dark .navbar-collapse.show .navbar-nav {
    justify-content: end;
    flex-direction: column;
    gap: 0;
  }
  .nav-dark .navbar-collapse.show .nav-link {
    padding: 0.5rem 0;
    color: #1F2937;
  }
  .nav-dark .navbar-collapse.show .nav-link:hover,
  .nav-dark .navbar-collapse.show .nav-link.active {
    color: #0E7AFE;
  }
  /* Ensure toggler icon stays white */
  .site-header-dark .navbar-toggler-icon {
    filter: invert(100%);
  }
  .site-header-dark .navbar-toggler {
    background: transparent;
  }
}

/* Mobile Header Tweaks (max-width: 767px) */
@media (max-width: 767.98px) {
  .site-header-dark .text-logo {
    font-size: 1.4rem;
  }
  .site-header-dark .logo-part2::after {
    height: 3px;
    bottom: -3px;
  }
}


/* ================================
   FULL-SCREEN HERO (hero4.png)
================================== */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../images/hero4.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.hero-full .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  padding: 0 1rem;
  max-width: 90%;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero-cta .btn {
  border-width: 2px;
  border-color: #fff;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}

.hero-cta .btn:hover {
  background: #fff;
  color: #111;
}

/* -------- Mobile tweaks -------- */
@media (max-width: 767.98px) {
  .hero-full {
    /* make height auto to fit image fully */
    height: auto;
    padding-top: calc(750 / 1911 * 100%); /* maintain 1911×750 ratio */
  }
  .hero-full .hero-overlay {
    background: rgba(0,0,0,0.4);
  }
  .hero-content {
    top: 45%;
    transform: translateY(-45%);
    padding: 0 0.5rem;
  }
  .hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.1;
  }
  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
    margin-bottom: 1rem;
  }
  .hero-cta .btn-lg {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    display: block;
    width: 100%;
    margin: 0.5rem auto 0;
  }
  .hero-cta .btn-lg + .btn-lg {
    margin-top: 0.75rem;
    margin-left: 0;
  }
}


/* ================================
   SERVICES SECTION – FULL-WIDTH
=================================== */
.servx-unique {
  background: #f3f4f6;
  box-shadow: 0 8px 16px -8px rgba(0,0,0,0.1);
}
.wrapper-shadow-bottom {
  background: #fff;
  border-radius: 12px;
  margin: 0 -15px;         /* Reset Bootstrap container-fluid side padding */
  padding: 3rem 15px;      /* Reintroduce side padding */
}
@media (min-width: 576px) {
  .wrapper-shadow-bottom {
    margin: 0;             /* Remove negative margin on larger screens */
    padding: 6rem 0;        /* Restore vertical padding */
  }
}

/* Rest of styles unchanged… */
/* Heading */
.servx-head .servx-tag {
  font-weight: 700; letter-spacing: .15em; color: #0E7AFE; font-size: .85rem;
}
.servx-head .servx-title {
  font-weight: 800; color: #111827;
  font-size: clamp(2rem,1.2rem+2vw,3.2rem);
}
.servx-scribble {
  width: 120px; height: 8px;
  background: linear-gradient(90deg,#ffd700 0%,rgba(255,215,0,.3)100%);
  border-radius: 999px;
}
.servx-intro {
  color: #475569; font-size: .95rem;
}

/* Cards Grid */
.servx-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 12px -6px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}
.servx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.15);
}

/* Icon */
.servx-icon {
  font-size: 2.5rem; color: #0E7AFE;
  display: inline-block; padding: .5rem; margin-bottom: 1rem;
  background: rgba(14,122,254,.1); border-radius: 50%;
  transition: background .3s, color .3s;
}
.servx-card:hover .servx-icon {
  background: #FFD70033; color: #FFD700;
}

/* Text */
.servx-h {
  font-size: 1.25rem; font-weight: 700; color: #111827;
  margin-bottom: .75rem;
}
.servx-p {
  color: #475569; font-size: .95rem; margin-bottom: 1.25rem;
}

/* Learn More Button */
.servx-btn {
  display: inline-block;
  padding: .5rem 1.2rem;
  background: #FFD700;
  color: #111827;
  border-radius: 999px;
  font-weight: 600;
  transition: background .3s;
  text-decoration: none;
}
.servx-btn:hover {
  background: #e6c200;
}

/* Responsive */
@media (max-width: 767.98px) {
  .wrapper-shadow-bottom { padding: 2rem 1rem; }
  .servx-card { padding: 1.5rem 1rem; }
}

/* ================================
   INDUSTRIES WE SERVE – Unique PR Style
=================================== */
.weserve-section {
  position: relative;
  background: #f7f9fc;
  padding-bottom: 4rem;
}

/* Gold bottom accent bar */
.weserve-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: #FFD700;
}

/* Heading diagonal bars */
.weserve-head .weserve-title {
  font-size: clamp(2rem,1.5vw,3rem);
  font-weight: 800;
  color: #0f172a;
  display: inline-block;
  position: relative;
}
.weserve-head .weserve-title span { color: #0E7AFE; }
.weserve-head .diag-bar-left,
.weserve-head .diag-bar-right {
  position: absolute;
  width: 40px; height: 4px;
  background: #0E7AFE;
  top: 50%;
  transform: translateY(-50%) rotate(15deg);
}
.weserve-head .diag-bar-left {
  left: -50px;
}
.weserve-head .diag-bar-right {
  right: -50px;
  transform: translateY(-50%) rotate(-15deg);
}

/* Scribble under title */
.weserve-scribble {
  width: 120px; height: 8px;
  background: linear-gradient(90deg,#ffd700,#ffd70080);
  border-radius: 999px;
}

/* Cards overlapping effect */
.row.justify-content-center {
  margin-top: -2rem;
}
.weserve-card {
  background: linear-gradient(135deg, #ffffff, #eef4fb);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.weserve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

/* Icon */
.weserve-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: #fff;
  border-radius: 50%;
  transition: background .3s;
}
.weserve-icon svg {
  width: 28px; height: 28px;
  fill: #0E7AFE;
  transition: fill .3s;
}
.weserve-card:hover .weserve-icon {
  background: #0E7AFE;
}
.weserve-card:hover .weserve-icon svg {
  fill: #fff;
}

/* Title & text */
.weserve-title-sm {
  font-size: 1.25rem; font-weight: 700;
  color: #0f172a; margin-bottom: .5rem;
}
.weserve-text {
  font-size: .95rem; color: #475569;
  line-height: 1.6; margin: 0 auto;
  max-width: 280px;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .row.justify-content-center { margin-top: 0; }
}
@media (max-width: 767.98px) {
  .weserve-head .diag-bar-left,
  .weserve-head .diag-bar-right { display: none; }
  .wserve-scribble { margin: .75rem auto 1.5rem; }
}



/* ================================
   WHY-ICONS FULL – Bottom-Only Shadow & Yellow Buttons
=================================== */
/* Full-width section with bottom-only shadow */
.why-icons-full {
  background: #f3f4f6;
  box-shadow: 0 8px 16px -8px rgba(0,0,0,0.1);
}

/* Inner container */
.why-icons-full .container {
  background: #fff;
  border-radius: 12px;
}

/* Spacing */
.why-icons-full .container { padding: 6rem 1rem; }

/* Headings & text (unchanged) */
.why-small {
  font-size: 0.9rem; text-transform: uppercase;
  color: #0E7AFE; font-weight: 600;
}
.why-underline {
  width: 60px; height: 4px; background: #111827;
  border-radius: 2px;
}
.why-big {
  font-size: clamp(1.75rem,3vw,2.5rem);
  font-weight: 700; color: #111827; line-height: 1.2;
}
.why-big strong { color: #0E7AFE; }
.why-desc {
  color: #4B5563; font-size: 1rem; line-height: 1.6;
}

/* Icon Grid */
.icon-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.icon-item {
  background: #fff; border-radius: 12px; padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 6px 12px -6px rgba(0,0,0,0.1);
  transition: transform .3s, box-shadow .3s;
}
.icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.15);
}
.icon-item i {
  font-size: 2rem; color: #0E7AFE; margin-bottom: .75rem;
  transition: color .3s;
}
.icon-item:hover i { color: #FFD700; }
.icon-item span {
  display: block; font-weight: 600; color: #1F2937;
}

/* Yellow Button */
.btn-yellow {
  background: #FFD700;
  color: #111;
  border: none;
  font-weight: 600;
  transition: background .3s;
}
.btn-yellow:hover {
  background: #e6c200;
}

/* Responsive */
@media (max-width: 991.98px) {
  .why-icons-full .container { padding: 4rem 1rem; }
}
@media (max-width: 767.98px) {
  .why-icons-full { box-shadow: 0 6px 12px -6px rgba(0,0,0,0.1); }
  .icon-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
}

/* ================================
   SITE FOOTER
================================== */
.site-footer {
  position: relative;
  background: #1F2937;
  color: #CBD5E1;
  overflow: hidden;
  padding-top: 0;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-content {
  padding: 2rem 0 1rem;
}

.footer-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}
.footer-logo span {
  color: #FFD700;
}

.footer-desc {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #A0AEC0;
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 0.75rem;
}

.footer-links li + li {
  margin-top: 0.5rem;
}
.footer-links a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #FFD700;
}

.footer-contact a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: #FFD700;
}

.footer-social a {
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.25rem;
  color: #CBD5E1;
  transition: color 0.3s;
}
.footer-social a:hover {
  color: #0E7AFE;
}

.footer-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.footer-input {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 4px;
}
.footer-btn {
  padding: 0.5rem 1rem;
  background: #0E7AFE;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.footer-btn:hover {
  background: #0C66DA;
}

.footer-bottom {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: #718096;
  border-top: 1px solid #2D3748;
}


/* ================================
   BLOG PAGE – Hero & Masonry Grid
=================================== */
/* Hero Banner */
.blog-hero {
  background: url('../images/blog-hero-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 1rem;
  position: relative;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.blog-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.blog-hero .container {
  position: relative; z-index: 2;
}
.blog-hero-title {
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 800;
  margin-bottom: .5rem;
}
.blog-hero-subtitle {
  font-size: clamp(1.25rem,2vw,1.75rem);
  opacity: .9;
}

/* Posts Grid */
.blog-posts {
  background: #f9fafb;
}
.post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}
.post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.post-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #0f172a;
}
.post-date {
  font-size: .85rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.post-excerpt {
  flex: 1;
  color: #475569;
  margin-bottom: 1rem;
}
.post-body .btn {
  align-self: start;
}

/* Responsive Masonry Tweak */
@media (min-width: 992px) {
  .blog-posts .row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}


/* ================================
   CONTACT PAGE – Unique & Professional
=================================== */

/* Hero Banner */
.contact-hero {
  position: relative;
  height: 60vh;
  background: linear-gradient(rgba(14,122,254,0.7), rgba(14,122,254,0.7)),
              url('../images/contact-hero.png') center/cover no-repeat;
}
.contact-hero .overlay { /* extra subtle dark layer */
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-heading {
  font-size: clamp(2.5rem,5vw,4rem);
  font-weight: 800; margin-bottom: .5rem;
}
.hero-heading span { color: #FFD700; }
.hero-subtitle {
  font-size: clamp(1.25rem,2vw,1.75rem);
  opacity: .9;
}

/* Main Contact Section */
.contact-main {
  background: #f7f9fc;
}
.contact-info h4 {
  font-size: 1.5rem; font-weight: 700;
}
.contact-info h4 span { color: #0E7AFE; }
.contact-info a {
  color: #0E7AFE; text-decoration: none;
  transition: color .2s;
}
.contact-info a:hover { color: #0A62C3; }
.socials a {
  font-size: 1.25rem; transition: transform .2s;
}
.socials a:hover { transform: translateY(-3px); }

/* Contact Form */
.contact-form {
  background: #fff;
}
.contact-form .form-label {
  font-weight: 600; color: #374151;
}
.btn-gold {
  background: #FFD700; color: #111827;
  border: none; font-weight: 700;
  transition: background .3s;
}
.btn-gold:hover {
  background: #e6c200;
}

/* Shadows */
.shadow-sm {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* Responsive */
@media (max-width: 767.98px) {
  .contact-hero { height: 40vh; }
  .socials { text-align: center; margin-top: 1.5rem; }
}

