/* ── M/S Aarambh Power & Energy Solutions – SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@300;400;500;600;700;800&display=swap');


/* :root {
  --ap-orange: #f97316;
  --ap-orange-dark: #c2410c;
  --ap-orange-light: #fed7aa;
  --ap-yellow: #fbbf24;
  --ap-dark: #080808;
  --ap-dark2: #0f0f0f;
  --ap-dark3: #181818;
  --ap-dark4: #222;
  --ap-border: rgba(255, 255, 255, 0.07);
  --ap-border-orange: rgba(249, 115, 22, 0.25);
  --ap-gray: #888;
  --ap-gray2: rgba(255, 255, 255, 0.55);
} */

:root {
  --ap-orange: #00008B;
  --ap-orange-dark: #7df9ff;
  --ap-orange-light: #fed7aa;
  /* --ap-yellow: #F5D752; */
  --ap-yellow: #7df9ff;
  --ap-dark: #ffffff;
  --ap-dark2: #f9f9f9;
  --ap-dark3: #ffffff;
  --ap-dark4: #021225;
  --ap-border: rgba(0, 17, 255, 0.2);
  --ap-border-orange: rgba(22, 109, 3, 0.25);
  --ap-gray: #888;
  --ap-gray2: rgba(0, 0, 0, 0.55);
  --ap-white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--ap-dark);
  color: #fff;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ── */
.display-font {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--ap-orange);
  text-transform: uppercase;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 1.5px;
  line-height: 1;
  color: #000;
}

.section-subtitle {
  color: var(--ap-gray2);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 580px;
}

.ap-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--ap-orange), var(--ap-yellow));
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ── NAVBAR ── */
#apNav {
  background: rgba(253, 253, 253, 1) !important;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ap-border-orange);
  transition: all .3s;
  padding: 0 !important;
}

#apNav .container-xl {
  height: 70px;
  display: flex;
  align-items: center;
}

.ap-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ap-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--ap-orange), var(--ap-yellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ap-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: #fff;
  line-height: 1;
}

.ap-logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--ap-orange);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.75);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 6px 14px !important;
  position: relative;
  transition: color .2s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--ap-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #000 !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.ap-nav-cta {
  background: var(--ap-orange) !important;
  color: #fff !important;
  border-radius: 7px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
}

.ap-nav-cta:hover {
  background: var(--ap-orange-dark) !important;
}

.ap-nav-cta::after {
  display: none !important;
}

.navbar-toggler {
  border-color: var(--ap-border-orange) !important;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── BUTTONS ── */
.btn-ap {
  background: linear-gradient(135deg, var(--ap-orange), var(--ap-orange-dark));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  /* box-shadow: 0 6px 28px rgba(249, 115, 22, .35); */
  box-shadow: 0 6px 28px rgba(245, 215, 84, .35);
  text-decoration: none;
}

.btn-ap:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(22, 26, 249, 0.5);
  color: #fff;
}

.btn-ap-outline {
  /* border: 1.5px solid rgba(0, 0, 0, .2); */
  border: 1.5px solid var(--ap-orange);
  color: var(--ap-orange);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  text-decoration: none;
  background: transparent;
}

.btn-ap-outline:hover {
  border-color: var(--ap-orange-dark);
  color: var(--ap-orange-dark);
}

/* ── CARDS ── */
.ap-card {
  background: var(--ap-dark3);
  border: 1px solid var(--ap-border);
  border-radius: 16px;
  transition: all .3s;
}

.ap-card:hover {
  border-color: var(--ap-border-orange);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.ap-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(22, 37, 249, 0.1);
  border: 1px solid var(--ap-border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* ── SECTION SPACING ── */
.ap-section {
  padding: 90px 0;
}

.ap-section-alt {
  padding: 90px 0;
  background: var(--ap-dark2);
}

/* ── TICKER ── */
.ap-ticker-wrap {
  background: var(--ap-orange);
  overflow: hidden;
  padding: 12px 0;
}

.ap-ticker {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: apTicker 22s linear infinite;
}

.ap-ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--ap-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ap-ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, .3);
  border-radius: 50%;
}

@keyframes apTicker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ── PAGE HERO ── */
.ap-page-hero {
  padding: 140px 0 80px;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(249, 115, 22, .12) 0%, transparent 60%),
    var(--ap-dark2);
  position: relative;
  overflow: hidden;
}

.ap-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(249, 115, 22, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 115, 22, .04) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* ── STAT BOXES ── */
.ap-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--ap-orange);
  letter-spacing: 1px;
  line-height: 1;
}

.ap-stat-label {
  font-size: 12px;
  color: var(--ap-gray);
  letter-spacing: .5px;
  margin-top: 4px;
}

/* ── TAG/BADGE ── */
.ap-tag {
  display: inline-block;
  background: rgba(249, 115, 22, .1);
  color: var(--ap-orange);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  border: 1px solid var(--ap-border-orange);
}

/* ── FORM ── */
.ap-form-control {
  background: rgba(0, 0, 0, .05) !important;
  border: 1px solid rgba(0, 0, 0, .1) !important;
  color: #000 !important;
  border-radius: 8px !important;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  padding: 12px 16px !important;
  transition: border-color .2s !important;
  width: 100%;
}

.ap-form-control:focus {
  border-color: var(--ap-orange) !important;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .1) !important;
  background: rgba(249, 115, 22, .04) !important;
}

.ap-form-control::placeholder {
  color: var(--ap-gray) !important;
}

.ap-form-control option {
  background: var(--ap-dark3);
}

label.ap-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, .5);
  letter-spacing: .5px;
  margin-bottom: 6px;
  display: block;
  text-transform: uppercase;
}

/* ── FOOTER ── */
#apFooter {
  background: #f5f5f5;
  border-top: 1px solid var(--ap-border);
  padding: 64px 0 24px;
}

#apFooter .footer-brand p {
  font-size: 13px;
  color: var(--ap-gray);
  line-height: 1.8;
  margin-top: 14px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  background: rgba(0, 0, 0, .05);
  border: 1px solid var(--ap-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ap-orange);
  text-decoration: none;
  font-size: 14px;
  transition: all .2s;
}

.footer-social-link:hover {
  background: rgba(29, 249, 22, 0.15);
  border-color: var(--ap-border-orange);
  color: var(--ap-orange);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .3);
  margin-bottom: 18px;
}

.footer-link {
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-bottom: 9px;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--ap-orange);
}

.footer-bottom {
  border-top: 1px solid var(--ap-border);
  padding-top: 24px;
  margin-top: 40px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(0, 0, 0, 1);
  margin: 0;
}

.footer-bottom a {
  color: var(--ap-orange);
  text-decoration: none;
}

/* ── CTA BAND ── */
.ap-cta-band {
  background: linear-gradient(135deg, var(--ap-orange-dark), var(--ap-orange));
  padding: 72px 0;
  text-align: center;
}

.ap-cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: 2px;
}

.ap-cta-band p {
  font-size: 16px;
  opacity: .88;
  max-width: 500px;
  margin: 0 auto 32px;
}

.btn-white {
  background: #fff;
  color: var(--ap-orange-dark);
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
  color: var(--ap-orange-dark);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}


.fade-up {
  animation: fadeUp .8s ease both;
}

.fade-up-1 {
  animation-delay: .1s;
}

.fade-up-2 {
  animation-delay: .2s;
}

.fade-up-3 {
  animation-delay: .3s;
}

.fade-up-4 {
  animation-delay: .4s;
}