@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --snec-navy: #1b2a41;
  --snec-navy-2: #243b55;
  --snec-blue: #2d4f6e;
  --snec-orange: #e8732a;
  --snec-orange-dark: #c9581a;
  --snec-teal: #fff0e5;
  --snec-soft: #fff9f4;
  --snec-text: #2b2b2b;
  --snec-muted: #6b7280;
  --snec-border: #e5e0db;
  --snec-white: #ffffff;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--snec-text);
  background: var(--snec-white);
  overflow-x: hidden;
}
body,
main,
section {
  max-width: 100%;
}
.container,
.row > *,
.hero-content {
  min-width: 0;
}
a {
  text-decoration: none;
}
section {
  scroll-margin-top: 88px;
}
.section-pad {
  padding: 3rem 0;
}
.min-vh-75 {
  min-height: 75vh;
}
.bg-soft {
  background: #f9f9f9;
}

/* Distinct section backgrounds */
#about {
  background: #ffffff;
}
.values-section {
  background: #ffffff;
}
#projects {
  background: #f9f9f9;
}
#clients {
  background: #ffffff;
}
.text-brand {
  color: var(--snec-orange) !important;
  
}
.eyebrow {
  color: var(--snec-orange);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-light {
  color: #ffb074;
}
.section-title {
  color: var(--snec-navy);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
.section-heading {
  max-width: 730px;
}
.btn {
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-brand {
  color: #fff;
  background: var(--snec-orange);
  border-color: var(--snec-orange);
  box-shadow: 0 8px 20px rgba(232, 115, 42, 0.35);
}
.btn-brand:hover,
.btn-brand:focus {
  color: #fff;
  background: var(--snec-orange-dark);
  border-color: var(--snec-orange-dark);
  box-shadow: 0 12px 28px rgba(232, 115, 42, 0.45);
}

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: #1b2a41;
}
.topbar a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}
.topbar a:hover {
  color: #fff;
}
.navbar {
  min-height: 82px;
}
.navbar-brand img {
  object-fit: contain;
}
.brand-copy {
  color: var(--snec-navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
  border-left: 1px solid var(--snec-border);
  padding-left: 1rem;
}
.brand-copy small {
  color: var(--snec-muted);
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.15em;
  margin-top: 0.35rem;
}
.navbar .nav-link {
  color: var(--snec-navy);
  font-size: 17px;
  font-weight: 700;
  padding: 0.65rem 1.5rem !important;
  position: relative;
  transition: color 0.25s ease;
}
.navbar .nav-link::before {
  background: var(--snec-orange);
  bottom: 0.25rem;
  content: "";
  height: 2px;
  left: 0.8rem;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  width: calc(100% - 1.6rem);
}
.navbar .nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar .nav-link.active {
  color: var(--snec-orange);
}

.dropdown-menu{
    margin-top:8px;
    opacity:0;
    visibility:hidden;
    display:block;
    transform:translateY(10px);
    transition:all .3s ease;
}

@media (min-width:992px){

.nav-item.dropdown:hover>.dropdown-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

}

.hero-section {
  background: linear-gradient(135deg, #16213e 0%, #1b2a41 40%, #243b55 100%);
}
.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  inset: 0;
  mask-image: linear-gradient(to right, black, transparent);
  position: absolute;
}
.hero-section::before {
  background: var(--snec-orange);
  border-radius: 50%;
  content: "";
  filter: blur(1px);
  height: 410px;
  opacity: 0.1;
  position: absolute;
  right: -180px;
  top: -130px;
  width: 410px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-kicker {
  color: #dceaf4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 0.9rem;
}
.pulse-dot {
  animation: pulse 1.8s infinite;
  background: #4ec994;
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.hero-section h1 {
  letter-spacing: -0.055em;
  line-height: 1.02;
  max-width: 820px;
  font-size: 50px;
}
.hero-section h1 span,
.contact-section h2 span {
  color: #e8732a;
}
.hero-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 700px;
}
.hero-stats {
  color: #fff;
  max-width: 580px;
}
.hero-stats strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
}
.hero-stats span {
  color: rgba(255, 255, 255, 0.55);
  display: block;
  font-size: 0.73rem;
  margin-top: 0.2rem;
}
.hero-visual {
  min-height: 550px;
  position: relative;
  animation: visualFloat 7s ease-in-out infinite;
}
.hero-visual::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(219, 113, 0, 0.18) 0%, rgba(9, 27, 49, 0) 70%);
  top: 20px;
  right: -60px;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}
.visual-ring {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  height: 490px;
  position: absolute;
  right: -50px;
  top: 30px;
  width: 490px;
  z-index: 1;
  animation: slideRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 50px rgba(255, 255, 255, 0.05);
}

.visual-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  animation: imageZoom 10s ease-in-out infinite alternate;
}
.visual-ring::before,
.visual-ring::after {
  border-radius: 50%;
  content: "";
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
}
.visual-ring::before {
  border: 2px dashed rgba(219, 113, 0, 0.25);
  inset: 20px;
  animation: rotateCw 25s linear infinite;
}
.visual-ring::after {
  border: 1px dotted rgba(255, 255, 255, 0.18);
  inset: 50px;
  animation: rotateCcw 20s linear infinite;
}
.hero-image-card {
  animation: heroFloat 5s ease-in-out infinite;
  background: #fff;
  border: 8px solid rgba(255, 255, 255, 0.85);
  border-radius: 240px 240px 28px 28px;
  height: 500px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  top: 20px;
  width: 365px;
}
.hero-image-card img {
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  width: 100%;
}
.floating-card {
  animation: heroFloat 4.5s ease-in-out infinite;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  position: absolute;
  z-index: 2;
}
.floating-card-top {
  right: -20px;
  top: 80px;
}
.floating-card-bottom {
  animation-delay: -2s;
  bottom: 50px;
  left: -10px;
}

.dropdown-menu{
    min-width:280px;
    border:none;
    border-radius:15px;
    padding:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    margin-top:15px;
    animation:fadeDown .3s ease;
}

.dropdown-item{
    display:flex;
    align-items:center;
    padding:12px 18px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    color:#1b2b45;
    position:relative;
    overflow:hidden;
    transition:all .3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 4px;
    height: 55%;
    background: var(--snec-orange);
    border-radius: 0 4px 4px 0;
    transition: transform 0.25s ease;
}

.dropdown-item:hover,
.dropdown-item.active,
.dropdown-item:active {
    background: rgba(232, 115, 42, 0.06) !important;
    color: var(--snec-orange) !important;
    padding-left: 26px;
}

.dropdown-item:hover::before,
.dropdown-item.active::before,
.dropdown-item:active::before {
    transform: translateY(-50%) scaleY(1);
}

.dropdown-menu li:not(:last-child) {
    position: relative;
}

.dropdown-menu li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(27, 42, 65, 0.08) 20%, rgba(27, 42, 65, 0.08) 80%, transparent);
}
.section-title {
    color: var(--snec-navy);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 40px;
}
.floating-card .icon-box {
  align-items: center;
  background: #fff0e7;
  border-radius: 10px;
  color: var(--snec-orange);
  display: flex;
  font-size: 1.25rem;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.floating-card strong,
.floating-card small {
  display: block;
}
.floating-card strong {
  color: var(--snec-navy);
  font-size: 0.78rem;
}
.floating-card small {
  color: var(--snec-muted);
  font-size: 0.63rem;
  margin-top: 0.15rem;
}
.scroll-cue {
  align-items: center;
  bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  gap: 0.75rem;
  left: 2rem;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: left;
}
.scroll-cue span {
  background: rgba(255, 255, 255, 0.35);
  height: 1px;
  width: 45px;
}

.trust-strip {
  border-bottom: 1px solid var(--snec-border);
  box-shadow: 0 8px 25px rgba(9, 27, 49, 0.04);
}
.system-pill {
  align-items: center;
  border: 1px solid var(--snec-border);
  border-radius: 50rem;
  color: var(--snec-navy);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
}
.system-pill i {
  color: var(--snec-orange);
}

.about-visual {
  min-height: 540px;
}
.about-image-wrap {
  background: var(--snec-soft);
  border-radius: 16px;
  height: 480px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 88%;
}
.about-image-wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.experience-card {
  background: #fff;
  border-radius: 14px;
  bottom: 10px;
  left: 0;
  padding: 1.5rem;
  position: absolute;
  width: 210px;
  z-index: 2;
}
.experience-card p {
  color: var(--snec-navy);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.6;
}
.orange-block {
  background: var(--snec-orange);
  border-radius: 12px;
  height: 100px;
  position: absolute;
  right: -18px;
  top: 50px;
  width: 18px;
}
.quote-panel {
  background: var(--snec-soft);
  border-left: 4px solid var(--snec-orange);
  color: var(--snec-navy);
  display: flex;
  gap: 1rem;
  line-height: 1.75;
  padding: 1.25rem;
}
.quote-panel i {
  color: var(--snec-orange);
  font-size: 1.75rem;
}
.check-item {
  align-items: center;
  color: var(--snec-navy);
  display: flex;
  font-size: 16px;
  font-weight: 700;
  gap: 0.65rem;
}
.check-item i {
  color: black;
  font-size: 1.1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--snec-border);
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem 1.5rem;
  position: relative;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: 0 22px 45px rgba(9, 27, 49, 0.1);
  transform: translateY(-8px);
}
.service-card::after {
  background: var(--snec-orange);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-number {
  color: #cbd4da;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  position: absolute;
  right: 1.35rem;
  top: 1.25rem;
}
.service-icon {
  align-items: center;
  background: #fff0e7;
  border-radius: 12px;
  color: var(--snec-orange);
  display: flex;
  font-size: 1.55rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 58px;
}
.service-card h3 {
  color: var(--snec-navy);
  font-size: 1.05rem;
  text-align: center;
  font-weight: 800;
  margin-top: 0.8rem;
}
.service-card p {
  color: var(--snec-muted);
  font-size: 0.82rem;
  line-height: 1.75;
  margin: 0;
}

.strengths-section {
  background: linear-gradient(135deg, #1b2a41 0%, #16213e 100%);
  position: relative;
}
.strengths-section::before {
  background: radial-gradient(
    circle,
    rgba(232, 115, 42, 0.2),
    transparent 70%
  );
  content: "";
  height: 500px;
  left: -180px;
  position: absolute;
  top: -150px;
  width: 500px;
}
.strength-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 100%;
  padding: 1.5rem;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.strength-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-4px);
}
.strength-card strong {
  color: #e8732a;
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.strength-card h3 {
  font-size: 1rem;
  font-weight: 800;
}
.strength-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0;
}

.value-card {
  border: 1px solid var(--snec-border);
  border-radius: 12px;
  padding: 2rem;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 20px 40px rgba(9, 27, 49, 0.08);
  transform: translateY(-6px);
}
.value-card.featured {
  background: linear-gradient(135deg, #e8732a, #c9581a);
  border-color: #e8732a;
  color: #fff;
}
.value-card > span {
  align-items: center;
  background: #fff0e5;
  border-radius: 50%;
  color: var(--snec-orange);
  display: flex;
  font-size: 1.45rem;
  height: 58px;
  justify-content: center;
  margin-bottom: 1.5rem;
  width: 58px;
}
.value-card h3 {
  color: var(--snec-navy);
  font-size: 1.2rem;
  font-weight: 800;
}
.value-card.featured h3 {
  color: #fff;
}
.value-card p {
  color: var(--snec-muted);
  font-size: 0.86rem;
  line-height: 1.8;
  margin: 0;
}
.value-card.featured p {
  color: rgba(255, 255, 255, 0.58);
}

.project-count {
  background: #fff;
  border: 1px solid var(--snec-border);
  border-radius: 50rem;
  color: var(--snec-navy);
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  margin: 0.4rem 0 0.4rem 0.35rem;
  padding: 0.6rem 0.9rem;
  transition: all 0.25s ease;
}
a:hover .project-count {
  background: var(--snec-orange);
  border-color: var(--snec-orange);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(232, 115, 42, 0.25);
  transform: translateY(-2px);
}
.project-accordion {
  border-top: 1px solid #cfd8de;
}
.project-accordion .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #cfd8de;
}
.project-accordion .accordion-button {
  background: transparent;
  box-shadow: none;
  color: var(--snec-navy);
  gap: 2rem;
  padding: 1.6rem 0.5rem;
}
.project-accordion .accordion-button:not(.collapsed) {
  color: var(--snec-orange);
}
.project-accordion .accordion-button::after {
  background-size: 1rem;
}
.project-index {
  color: var(--snec-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  min-width: 48px;
}
.project-accordion .accordion-button strong,
.project-accordion .accordion-button small {
  display: block;
}
.project-accordion .accordion-button strong {
  font-size: 17px;
}
.project-accordion .accordion-button small {
  color: var(--snec-muted);
  font-size: 13px;
  font-weight: 500;
  margin-top: 0.35rem;
}
.project-accordion .accordion-body {
  background: #fff;
  border-top: 3px solid var(--snec-orange);
  margin-bottom: 1.5rem;
  padding: 1.75rem;
}
.project-accordion .accordion-body h4 {
  color: var(--snec-navy);
  font-size: 16px;
  font-weight: 800;
}
.project-accordion .accordion-body p {
  color: var(--snec-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.project-note {
  color: var(--snec-muted);
  font-size: 0.72rem;
}

.clientSwiper{
    padding-top: 5px;
}

.client-card {
  align-items: center;
  background: #fff;
  border: 1px solid var(--snec-border);
  border-radius: 12px;
  color: var(--snec-navy);
  display: flex;
  justify-content: center;
  height: 150px;
  width: 100%;
  padding: 15px;
  margin-top: 1.5rem;
  text-align: center;
  box-sizing: border-box;
  transition:
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
  overflow: hidden;
}

.client-card:hover {
  border-color: var(--snec-orange);
  color: var(--snec-orange);
  transform: translateY(-4px);
}
.client-card small {
  color: var(--snec-muted);
  font-size: 0.62rem;
  font-weight: 500;
  margin-top: 0.4rem;
}
.client-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 1rem;
}
.process-step > span {
  align-items: center;
  background: var(--snec-orange);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 auto;
  font-size: 0.65rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.process-step h3 {
  color: var(--snec-navy);
  font-size: 1rem;
  font-weight: 800;
}
.process-step p {
  color: var(--snec-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0;
}

.contact-section {
  background: linear-gradient(135deg, #16213e 0%, #1b2a41 60%, #243b55 100%);
}
.contact-section::before {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  height: 500px;
  position: absolute;
  right: -170px;
  top: -180px;
  width: 500px;
}
.contact-lead {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
}
.contact-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
}
.contact-badge {
  background: #fff0e7;
  border-radius: 50rem;
  color: var(--snec-orange);
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
}
.contact-card h3 {
  color: var(--snec-navy);
  font-size: 1.3rem;
  font-weight: 800;
}
.contact-card > a,
.location-row {
  align-items: center;
  color: var(--snec-navy);
  display: flex;
  font-size: 0.86rem;
  font-weight: 700;
  gap: 1rem;
  padding: 0.7rem 0;
}
.contact-card > a > i,
.location-row > i {
  align-items: center;
  background: var(--snec-soft);
  border-radius: 9px;
  color: var(--snec-orange);
  display: flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.contact-card small {
  color: var(--snec-muted);
  display: block;
  font-size: 0.58rem;
  font-weight: 500;
  margin-bottom: 0.12rem;
  text-transform: uppercase;
}
.contact-card > a:hover {
  color: var(--snec-orange);
}

.footer {
  background: #061321;
}
.footer-logo {
  background: #fff;
  border-radius: 5px;
  object-fit: contain;
  padding: 0.25rem;
}
.footer-links a,
.profile-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}
.footer-links a:hover,
.profile-link:hover {
  color: #fff;
}
.back-to-top {
  align-items: center;
  background: var(--snec-orange);
  border-radius: 50%;
  bottom: 1.25rem;
  color: #fff;
  display: flex;
  height: 50px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(15px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  width: 50px;
  z-index: 1040;
}
.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  color: #fff;
  background: var(--snec-orange-dark);
}

.animate-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.animate-ready .reveal-left {
  transform: translateX(-35px);
}
.animate-ready .reveal-right {
  transform: translateX(35px);
}
.animate-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}
.animate-ready .delay-1 {
  transition-delay: 0.08s;
}
.animate-ready .delay-2 {
  transition-delay: 0.16s;
}
.animate-ready .delay-3 {
  transition-delay: 0.24s;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(78, 201, 148, 0.4);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(78, 201, 148, 0);
  }
}
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(80px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

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

@keyframes rotateCw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotateCcw {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.92);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes imageZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

@media (max-width: 1199.98px) {
  .navbar .nav-link {
    padding-left: 0.55rem !important;
    padding-right: 0.55rem !important;
  }
  .hero-section h1 {
    font-size: 4rem;
  }
  .hero-image-card {
    right: -20px;
    width: 330px;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 5rem 0;
  }
  .hero-section h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }
  .hero-content {
    max-width: 760px;
  }
  .about-visual {
    min-height: 480px;
  }
  .about-image-wrap {
    height: 430px;
  }
  .project-count {
    margin-left: 0;
    margin-right: 0.35rem;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    min-height: 72px;
  }
  .navbar-brand img {
    height: 43px;
    width: 96px;
  }
  .hero-section h1 {
    font-size: clamp(2.75rem, 12vw, 4rem);
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-stats span {
    font-size: 0.62rem;
  }
  .section-pad {
    padding: 4rem 0;
  }
  .about-visual {
    min-height: 405px;
  }
  .about-image-wrap {
    height: 365px;
    width: 94%;
  }
  .experience-card {
    padding: 1rem;
    width: 180px;
  }
  .project-accordion .accordion-button {
    gap: 1rem;
    padding: 1.25rem 0.25rem;
  }
  .project-index {
    min-width: 42px;
  }
  .client-card {
    font-size: 0.78rem;
    min-height: 92px;
    padding: 0.7rem;
  }
  .back-to-top {
    width: 42px !important;
    height: 42px !important;
  }
  .back-to-top i {
    font-size: 16px !important;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: clamp(2.55rem, 11vw, 3.15rem);
    overflow-wrap: anywhere;
  }
  .hero-section .btn-lg,
  .contact-section .btn-lg {
    font-size: 0.82rem;
    padding: 0.8rem 1rem;
  }
  .hero-actions .btn,
  .contact-actions .btn {
    justify-content: center;
    width: 100%;
  }
  .hero-kicker {
    font-size: 0.66rem;
  }
  .system-pill {
    font-size: 0.64rem;
    padding: 0.5rem 0.7rem;
  }
  .section-title {
    font-size: 2.15rem;
  }
  .about-visual {
    min-height: 330px;
  }
  .about-image-wrap {
    height: 295px;
  }
  .experience-card {
    bottom: 0;
  }
  .value-card,
  .contact-card {
    padding: 1.5rem;
  }
  .project-accordion .accordion-button strong {
    font-size: 0.85rem;
  }
  .project-accordion .accordion-button small {
    max-width: 235px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .animate-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

.footer-section{

    background: url("images/footer-bg.jpg") center center/cover no-repeat;

    position: relative;

    color:#fff;

}

.footer-overlay{

    background:rgb(9 27 49);

    width:100%;

    height:100%;

    padding:60px 0 20px;

}

.footer-title{

    font-size:30px;

    font-weight:700;

    margin-bottom:25px;

    color:#fff;

}

.footer-text{

    color:#d4d4d4;

    line-height:1.9;

    text-align:justify;

}

.social-icons{

    display:flex;

    gap:15px;

}

.social-icons a{

    width:45px;

    height:45px;

    border:1px solid #091b31;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    background:black;

    border-color:#091b31;

    transform:translateY(-4px);

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:6px;

}

.contact-item i{

    width:30px;

    height:30px;

    border:1px solid rgba(255,255,255,.3);

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    flex-shrink:0;

    margin:3px 0;

}

.contact-item span{

    color:#ffffff;

    line-height:1.8;

}

.map-box{

    border-radius:8px;

    overflow:hidden;

    border:2px solid rgba(255,255,255,.2);

}

.footer-line{

    border-color:rgba(255,255,255,.15);

    margin:40px 0 20px;

}

.footer-section p{

    color:#ffffff;
    font-size: 16px;

}

@media(max-width:991px){

.footer-title{

    margin-top:10px;

} 

  .service-img{
    width:100%;
    height:220px;
    overflow:hidden;
}

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


.service-card h3{
    text-align:center;
    padding:20px 15px;
    margin:0;
    font-size:20px;
    font-weight:600;
}
.service-card{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:16px;
    overflow:hidden;
    transition:.3s;
    padding:0;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

}

/* Ensure all service cards match height and images display cleanly */
.service-card {
    height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
}

.service-img {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
    background: #f4f6f8 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    padding: 10px !important;
}

.service-card h3 {
    font-size: 19px !important;
    padding: 12px 15px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-grow: 1 !important;
    text-align: center !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #1b2b45 !important;
}

@media (max-width: 991.98px) {
  /* Mobile offcanvas navigation dropdown menu styles */
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background-color: #fcfcfc !important;
    padding: 0.5rem 1rem !important;
    border: 1px solid #f1f1f1 !important;
    margin-top: 0.5rem !important;
    border-radius: 10px !important;
    animation: none !important;
    transition: none !important;
    width: 100% !important;
  }
  .navbar-nav .dropdown-menu.show {
    display: block !important;
  }
  .navbar-nav .dropdown-item {
    font-size: 15px !important;
    padding: 10px 16px !important;
    color: var(--snec-navy) !important;
    background: transparent !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 6px !important;
    transition: all 0.25s ease !important;
  }
  .navbar-nav .dropdown-item::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) scaleY(0) !important;
    width: 3px !important;
    height: 50% !important;
    background: var(--snec-orange) !important;
    border-radius: 0 3px 3px 0 !important;
    transition: transform 0.2s ease !important;
  }
  .navbar-nav .dropdown-item:hover,
  .navbar-nav .dropdown-item.active {
    color: var(--snec-orange) !important;
    background: rgba(232, 115, 42, 0.06) !important;
    padding-left: 22px !important;
  }
  .navbar-nav .dropdown-item:hover::before,
  .navbar-nav .dropdown-item.active::before {
    transform: translateY(-50%) scaleY(1) !important;
  }
  .navbar-nav .dropdown-menu li:not(:last-child) {
    position: relative !important;
    border-bottom: none !important;
  }
  .navbar-nav .dropdown-menu li:not(:last-child)::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 8% !important;
    right: 8% !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, rgba(27, 42, 65, 0.08) 20%, rgba(27, 42, 65, 0.08) 80%, transparent) !important;
  }
}

@media (max-width: 991.98px) {
  p {
    text-align: justify;
  }
}

.about-desc {
  font-size: 17px;
  color: #000000 !important;
  text-align: justify;
  line-height: 1.85;
}






      




