/* Shreenath Enterprises — supporting styles beyond Tailwind utilities */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}


::selection {
  background: #1B5FBF;  
  color: #ffffff;
}

/* ---------- Header ---------- */

#site-header {
  background: transparent;
}

#site-header.is-scrolled {
  background: rgba(251, 251, 249, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(11, 37, 69, 0.08);
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #12212E;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #3F8F3F;
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link-mobile {
  font-size: 16px;
  font-weight: 600;
  color: #0B2545;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle i,
.mobile-nav-dropdown-toggle i {
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i,
.nav-dropdown.is-open .nav-dropdown-toggle i,
.mobile-nav-dropdown.is-open .mobile-nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 250px;
  gap: 4px;
  padding: 10px;
  border: 1px solid #D6E0EC;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(11, 37, 69, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #0B2545;
  font-size: 13px;
  line-height: 1.35;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  background: #EEF2F7;
  color: #1B5FBF;
}

.mobile-nav-dropdown {
  display: grid;
  gap: 8px;
}

.mobile-nav-dropdown-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.mobile-nav-dropdown-menu {
  display: grid;
  gap: 12px;
  padding-left: 16px;
  border-left: 2px solid #D6E0EC;
}

.mobile-nav-dropdown-menu.hidden {
  display: none;
}

/* ---------- Kicker label ---------- */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #1B5FBF;
  letter-spacing: 0.01em;
}

.kicker-dark {
  color: #8FB8EE;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #1B5FBF;
  display: inline-block;
}

/* ---------- Hero ---------- */

.hero-section {
  padding-top: 80px;
  height: auto;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(420px, 42vw, 720px);
  overflow: hidden;
  background: #0B2545;
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: visible;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(11, 37, 69, 0.62);
  color: #fff;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-control:hover {
  background: #0B2545;
}

.hero-control-prev { left: 24px; }
.hero-control-next { right: 24px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 26px;
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 640px) {
  .about-animate-left,
  .about-animate-right {
    opacity: 1;
    transform: none;
  }

  .hero-slider {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .hero-slide img {
    object-fit: contain;
    background: #ffffff;
  }

  .hero-control {
    width: 36px;
    height: 36px;
  }

  .hero-control-prev { left: 10px; }
  .hero-control-next { right: 10px; }

  .hero-dots {
    bottom: 14px;
  }
}

.hero-backdrop {
  background:
    radial-gradient(60% 55% at 82% 10%, rgba(27, 95, 191, 0.10), transparent 60%),
    radial-gradient(45% 40% at 10% 85%, rgba(63, 143, 63, 0.08), transparent 60%),
    #FBFBF9;
  z-index: -1;
}

.avatar-chip {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 2px solid #FBFBF9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.hero-panel {
  border-radius: 28px;
  padding: 3px;
  background: linear-gradient(150deg, #2A6FD1, #0B2545 55%, #3F8F3F);
}

.hero-panel-inner {
  border-radius: 25px;
  padding: 36px;
  background: linear-gradient(165deg, #0F2C50, #081A30 70%);
}

.mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11.5px;
  font-weight: 600;
}

.mini-stat i {
  font-size: 15px;
  color: #6FB6FF;
}

.pulse-dot {
  box-shadow: 0 0 0 0 rgba(63, 143, 63, 0.6);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(63, 143, 63, 0.55); }
  70% { box-shadow: 0 0 0 7px rgba(63, 143, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 143, 63, 0); }
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #D6E0EC;
  font-size: 12px;
  font-weight: 600;
  color: #12212E;
  line-height: 1.25;
}

/* ---------- Why-us feature cards ---------- */

.feature-card {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #EEF2F7;
  background: #FBFBF9;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
}

.feature-title {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  color: #0B2545;
  min-height: 24px;
}

.feature-desc {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #4A5568;
}

/* ---------- Product cards ---------- */

.product-card {
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #E3E9F1;
  background: #ffffff;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  border-color: #1B5FBF;
  transform: translateY(-3px);
}

.product-card-cta {
  background: linear-gradient(160deg, #0F2C50, #081A30);
  border: none;
}

.product-card-cta:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.product-icon {
  width: 46px;
  height: 46px;
  min-height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17px;
}

.product-title {
  margin-top: 20px;
  font-size: 17.5px;
  font-weight: 700;
  color: #0B2545;
  min-height: 48px;
  line-height: 1.3;
}

.product-desc {
  margin-top: 6px;
  font-size: 14.5px;
  line-height: 1.55;
  color: #4A5568;
  min-height: 66px;
  flex-grow: 1;
}

.product-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: #1B5FBF;
  width: fit-content;
}

.product-link i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.product-card:hover .product-link i {
  transform: translateX(3px);
}

/* ---------- Process steps ---------- */

.process-step {
  padding: 28px 24px;
  border-radius: 18px;
  background: #FBFBF9;
  border: 1px solid #EEF2F7;
  min-height: 190px;
}

.process-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #3F8F3F;
  letter-spacing: 0.04em;
}

.process-title {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #0B2545;
  min-height: 24px;
}

.process-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: #4A5568;
}

.clientele-title {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.clientele-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 1.7vw, 1.7rem);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.logo-track-wrap {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.logo-track {
  margin: 0;
  padding: 0;
}

.logo-card {
  border: 2px solid #629C17;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 26px rgba(11, 37, 69, 0.12);
  overflow: hidden;
}

.logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
  filter: drop-shadow(0 3px 10px rgba(11, 37, 69, 0.08));
}

/* ---------- Contact section ---------- */

.contact-backdrop {
  background: radial-gradient(55% 60% at 90% 15%, rgba(63, 143, 63, 0.14), transparent 60%);
  z-index: -1;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6FB6FF;
  font-size: 15px;
}

.contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.contact-value {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 2px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 32px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14.5px;
  color: #ffffff;
  font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.field select option {
  color: #12212E;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #3F8F3F;
}

/* ---------- Footer ---------- */

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list li,
.footer-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-list a:hover {
  color: #ffffff;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: #3F8F3F;
}

/* ---------- Focus visibility ---------- */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #3F8F3F;
  outline-offset: 2px;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .pulse-dot {
    animation: none;
  }
  .product-card,
  .nav-link::after {
    transition: none;
  }
}

@keyframes scrollLeftToRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
  }

  @keyframes scrollRightToLeft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
  }

  .animate-track-ltr {
    display: flex;
    width: max-content;
    animation: scrollLeftToRight 35s linear infinite;
  }

  .animate-track-rtl {
    display: flex;
    width: max-content;
    animation: scrollRightToLeft 35s linear infinite;
  }

  /* Pause animation on hover for manual interaction convenience */
  .slider-container:hover .animate-track-ltr,
  .slider-container:hover .animate-track-rtl {
    animation-play-state: paused;
  }


