/* 
  © 2026 AKSHAYA POWER TECH SOLUTIONS. All Rights Reserved.
  This website, including its design, content, and code, is developed and maintained by
  VIHAN IT PROFESSIONALS (https://vihanitprofessionals.com).

  Unauthorized copying, reproduction, redistribution, or use of any part of this website
  without express written permission is strictly prohibited and may result in legal action 
  under applicable intellectual property laws.

  If you believe this work has been copied or misused in any way, please contact us immediately.
 */

:root {
  --bg: #f3efe7;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffaf1;
  --text: #1c1f1d;
  --muted: #5f665f;
  --line: rgba(28, 31, 29, 0.08);
  --accent: #db5b21;
  --accent-deep: #9d3410;
  --accent-soft: #ffd9b0;
  --forest: #19493b;
  --gold: #c98f1c;
  --shadow: 0 24px 60px rgba(40, 27, 12, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 213, 152, 0.75), transparent 34%),
    radial-gradient(circle at top right, rgba(25, 73, 59, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2e8 0%, #efe7d6 42%, #f7f1e7 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

.page-shell::before {
  top: -80px;
  right: -100px;
  background: #ffbd73;
}

.page-shell::after {
  bottom: -100px;
  left: -80px;
  background: #7db2a0;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 1.2rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  position: sticky;
  /* position: relative; */
  /* top: 20px; */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  border: 1px solid rgba(25, 73, 59, 0.12);
  border-radius: 16px;
  background: rgba(255, 250, 241, 0.8);
  box-shadow: var(--shadow);
  color: var(--forest);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  /* background: linear-gradient(135deg, var(--accent), var(--gold)); */
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  /* box-shadow: 0 14px 24px rgba(157, 52, 16, 0.24); */
}

.brand-text {
  min-width: 0;
}

.brand-text strong,
.section-heading h2,
.hero-copy h1,
.metric strong,
.service-card h3,
.contact-card h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.brand-text strong {
  font-size: 2rem;
  display: block;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2.1rem;
  color: var(--muted);
  font-size: 0.96rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 250, 241, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-deep);
}

.nav-links.is-open {
  display: flex;
  flex-direction: column;
  justify-content: right;
  width: 100%;
  position: relative;
  top: 10%;

}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--accent), #f28c28);
  color: white;
  box-shadow: 0 16px 28px rgba(157, 52, 16, 0.2);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  border: 1px solid rgba(25, 73, 59, 0.12);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  padding: 2rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.6rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-card,
.contact-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 217, 176, 0.95), rgba(255, 217, 176, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(25, 73, 59, 0.08);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.96;
  margin: 0 0 1rem;
  max-width: 12ch;
}

.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0 0 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
}

.hero-actions .button {
  min-width: 180px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.metric {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(25, 73, 59, 0.08);
}

.metric strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-panel {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.82), rgba(255, 250, 241, 0.92)),
    linear-gradient(135deg, rgba(201, 143, 28, 0.15), rgba(25, 73, 59, 0.2));
}

.hero-visual {
  min-height: 360px;
  border-radius: 22px;
  padding: 1.6rem;
  background:
    linear-gradient(155deg, rgba(25, 73, 59, 0.95), rgba(13, 33, 28, 0.98)),
    radial-gradient(circle at top right, rgba(255, 206, 115, 0.3), transparent 30%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.2;
  background: linear-gradient(135deg, #ffd18c, transparent);
}

.hero-visual::before {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -60px;
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  bottom: -30px;
  left: -40px;
}

.visual-badge {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.visual-card {
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.visual-card span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.76);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-pill {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(25, 73, 59, 0.08);
  color: var(--forest);
  font-size: 0.92rem;
  font-weight: 700;
}

section {
  padding: 1rem 0 2.4rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.section-heading p {
  max-width: 52ch;
  margin: 0;
  color: var(--muted);
}

.section-card {
  padding: 1.4rem;
}

.services-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.feature-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.service-card h3,
.feature-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.15rem;
}

.service-card p,
.feature-card p,
.contact-card p,
.contact-item p {
  margin: 0;
  color: var(--muted);
}

.icon {
  width: 100px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  /* background: linear-gradient(135deg, rgba(219, 91, 33, 0.14), rgba(201, 143, 28, 0.18)); */
  background-color: #ffffff;
  color: var(--accent-deep);
  font-size: 1.3rem;
  font-weight: 800;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.map-card {
  min-height: 320px;
  border-radius: 24px;
  padding: 1.6rem;
  color: white;
  background:
    linear-gradient(180deg, rgba(25, 73, 59, 0.9), rgba(17, 46, 37, 0.96)),
    radial-gradient(circle at top left, rgba(255, 210, 140, 0.22), transparent 28%);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.65;
}

.map-pin {
  position: relative;
  z-index: 1;
  width: fit-content;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  margin-top: 5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.map-pin strong,
.contact-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.location-copy {
  display: grid;
  gap: 1rem;
}

.contact-card {
  padding: 1.4rem;
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.cta-band {
  padding-bottom: 4rem;
}

.cta-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(219, 91, 33, 0.98), rgba(144, 42, 12, 0.96)),
    radial-gradient(circle at top right, rgba(255, 217, 176, 0.2), transparent 26%);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 28px 50px rgba(111, 33, 10, 0.25);
}

.cta-card>* {
  min-width: 0;
}

.cta-card h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
}

.cta-card p {
  margin: 0;
  max-width: 55ch;
  color: rgba(255, 245, 239, 0.82);
}

.cta-card .button-secondary {
  background: white;
  color: var(--accent-deep);
  border: none;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal-content {
  background: var(--surface-strong);
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  animation: popup .3s ease;
}

@keyframes popup {
  from {
    opacity: 0;
    transform: scale(.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
}

.close-modal:hover {
  color: var(--text);
}

.modal-content h2 {
  margin-bottom: 10px;
}

.modal-content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.modal-content input,
.modal-content select,
.modal-content textarea {

  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;

  border: 1px solid var(--line);
  border-radius: 6px;

  font-size: 15px;
  outline: none;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {

  border-color: var(--accent);
}

.submit-btn {

  width: 100%;
  cursor: pointer;
}

.divider {

  margin: 25px 0;
  text-align: center;
  position: relative;
}

.divider::before {

  content: "";
  position: absolute;
  left: 0;
  top: 50%;

  width: 100%;
  height: 1px;

  background: var(--line);
}

.divider span {

  position: relative;
  background: var(--surface-strong);
  padding: 0 15px;
  color: var(--muted);
}

.contact-options {

  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.call-btn,
.whatsapp-btn {

  flex: 1;
  text-align: center;

  padding: 14px;

  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;

  transition: .3s;
}

.call-btn {

  background: #0d6efd;
}

.call-btn:hover {

  background: #0b5ed7;
}

.whatsapp-btn {

  background: #25D366;
}

.whatsapp-btn:hover {

  background: #1ebc57;
}

@media(max-width:600px) {

  .contact-options {

    flex-direction: column;
  }

  .modal-content {

    padding: 20px;
  }

}


.site-footer {
  padding: 0 0 2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(28, 31, 29, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-copy {
    padding: 2.3rem;
  }

  .hero-panel {
    padding: 1rem;
  }

  .services-grid,
  .feature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-card {
    padding: 1.6rem;
    gap: 1rem;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 1.4rem;
  }

  .nav {
    align-items: stretch;
    justify-content: space-between;
  }

  .brand {
    width: 100%;
    justify-content: space-evenly;
  }

  .nav-toggle {
    position: relative;
    right: 2%;
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    justify-content: right;
    gap: 0.9rem 1.2rem;
    border-radius: 28px;
    padding: 1rem;
  }

  .hero-copy,
  .hero-panel,
  .section-card {
    padding: 1.4rem;
  }

  .section-heading {
    align-items: flex-start;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-card h2 {
    max-width: none;
  }

  .hero-highlights,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


@media (max-width: 480px) {
  .site-header {
    padding: 1rem 0;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-text {
    padding-top: 5px;
  }

  .brand-text strong {
    font-size: 1.2rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero {
    padding: 1.2rem 0 2.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 11vw, 2.7rem);
  }

  .hero-copy p,
  .section-heading p,
  .contact-card p,
  .feature-card p,
  .service-card p {
    font-size: 0.97rem;
  }


  .hero-highlights,
  .services-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .metric {
    padding: 0.9rem;
  }

  .metric strong {
    font-size: 1.2rem;
  }

  .eyebrow,
  .trust-pill {
    font-size: 0.82rem;
  }

  .cta-band {
    padding-bottom: 2rem;
  }

  .cta-card {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .cta-card h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 0.5rem;
  }

  .cta-card p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .cta-card .button {
    width: 100%;
    min-width: unset;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.2rem;
  }

  .contact-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .contact-item {
    padding: 0.8rem 0;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .feature-card {
    padding: 1rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 250, 241, 0.9));
  }

  .feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
  }

  .feature-card p {
    font-size: 0.93rem;
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 4vw, 2rem);
  }
}