:root {
  --bg-dark: #060d14;
  --accent: #00bcd4;
  --text-light: #e6f3ff;
  --text-muted: #a7b8c8;
  --card-bg: #0a1621;
  --border: rgba(255, 255, 255, 0.1);
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  margin: 0 0 12px;
}

.container {
  width: min(1100px, 90%);
  margin: auto;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: #0a1420;
}

.navbar {
  background: rgba(0, 0, 0, 0.7);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.logo img {
  width: 40px;
}
.menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
}
.menu a:hover {
  color: var(--accent);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("../images/electronics.png") center/cover no-repeat;
  position: relative;
  color: white;
  text-align: left;
  padding: 160px 20px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: auto;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
}
.hero p {
  color: #dce8f1;
  margin-top: 10px;
  max-width: 700px;
}
.hero-btns {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.btn {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn.primary {
  background: var(--accent);
  color: #001219;
}
.btn.outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn:hover {
  transform: translateY(-2px);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: 0.3s;
}
.card p span {
  color: var(--accent);
  display: block;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.3);
}
.icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 12px;
}
.privacy-section {
  background: #0a1420;
  color: var(--text-light);
  padding: 100px 20px;
  line-height: 1.8;
}
.privacy-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.privacy-section h1,
.privacy-section h2,
.privacy-section h5 {
  color: var(--accent);
  margin-bottom: 20px;
}
.privacy-section p {
  color: var(--text-light);
  margin-bottom: 18px;
}
.privacy-section strong {
  color: var(--accent);
}
.privacy-section .updated {
  color: var(--text-muted);
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .privacy-section {
    padding: 60px 16px;
  }
}

.service {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.service.reverse {
  flex-direction: row-reverse;
}
.service img {
  width: 45%;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.industry {
  background: var(--card-bg);
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border);
}
.industry i {
  color: var(--accent);
  margin: 8px;
  display: block;
  font-size: 24px;
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}
.expertise-list li {
  margin: 8px 0;
  border-left: 3px solid var(--accent);
  padding-left: 10px;
}

/* TECHNICAL EXPERTISE */
.expertise-section {
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 188, 212, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(0, 188, 212, 0.08) 0%,
      transparent 60%
    ),
    url("https://www.transparenttextures.com/patterns/circuits.png");
  background-color: #08121c;
  position: relative;
  overflow: hidden;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.expertise-item {
  text-align: center;
  background: rgba(10, 22, 33, 0.9);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 188, 212, 0);
}

.expertise-item i {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 15px;
  transition: 0.3s;
}

.expertise-item h3 {
  color: #e6f3ff;
  font-weight: 600;
  font-size: 1rem;
}

.expertise-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.25);
}

.expertise-item:hover i {
  color: #5ee6f1;
  text-shadow: 0 0 10px rgba(94, 230, 241, 0.6);
}

/* Mobile Drawer Fix */
.menu.open {
  display: block !important;
  position: absolute;
  top: 60px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 10px;
  padding: 16px 24px;
  z-index: 1000;
}

.menu.open ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
  }
  .expertise-item {
    padding: 24px 16px;
  }
  .expertise-item i {
    font-size: 32px;
  }
}

.footer {
  background: #000;
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}
.footer h3,
.footer h4 {
  color: var(--accent);
  padding: 0 0 20px 0;
  margin: 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Footer Updates */
.footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--accent);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  color: var(--text-light);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 188, 212, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent);
  color: #001219;
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.4);
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-inner {
    gap: 30px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 800px) {
  .service {
    flex-direction: column;
  }
  .service img {
    width: 100%;
  }
  .menu {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
}
/* About Page Adjustments */
.about-hero {
  padding: 50px 20px; /* reduce top/bottom spacing */
}

.about-values {
  text-align: center;
}

.about-values img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin: 0; /* tighten space */
  display: block;
}

.values-list {
  max-width: 850px;
  margin: 50px auto 0;
  text-align: left;
}

.values-list p {
  margin: 10px 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-light);
}

.menu a.active {
  color: var(--accent);
  font-weight: 600;
}
.core-values {
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 188, 212, 0.1),
      transparent 70%
    ),
    #060d14;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.core-values h2 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.core-values .subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-muted);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

.value-box {
  background: rgba(10, 22, 33, 0.9);
  border: 1px solid rgba(0, 188, 212, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: all 0.3s ease;
}

.value-box:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(0, 188, 212, 0.2);
}

.value-box h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.value-box p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

.logo-center {
  margin-top: 60px;
}

.logo-center img {
  width: 120px;
  filter: drop-shadow(0 0 10px rgba(0, 188, 212, 0.4));
  animation: pulseLogo 3s infinite ease-in-out;
}

@keyframes pulseLogo {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.85;
  }
}

/* Leadership Profile Section */
.leader-profile {
  background: linear-gradient(180deg, #060d14 0%, #0a1420 100%);
  padding: 80px 20px;
}

.profile-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.profile-photo img {
  width: 340px;
  height: auto;
  border-radius: 16px;
  border: 2px solid rgba(0, 188, 212, 0.2);
  box-shadow: 0 0 25px rgba(0, 188, 212, 0.25);
  transition: all 0.3s ease;
}

.profile-photo img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(0, 188, 212, 0.4);
}

.profile-content {
  max-width: 600px;
  color: var(--text-light);
}

.section-label {
  display: inline-block;
  background: rgba(0, 188, 212, 0.15);
  color: var(--accent);
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.profile-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}

.profile-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.profile-content strong {
  color: var(--accent);
}

/* Responsive */
@media (max-width: 900px) {
  .profile-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .profile-content {
    max-width: 90%;
  }
  .profile-photo img {
    width: 280px;
  }
}

.contact-hero {
  padding: 50px 20px;
  color: white;
}

.contact-form-section {
  background: #0a1420;
  padding: 80px 20px;
  text-align: center;
}

.contact-form-section h3 {
  color: var(--accent);
  margin-bottom: 40px;
}

.contact-form {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 1rem;
  width: 100%;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.contact-form .btn.primary {
  align-self: center;
  padding: 12px 30px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  border: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: start;
}

.contact-info {
  text-align: left;
  color: var(--text-light);
}

.contact-info h3 {
  color: var(--accent);
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info li {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info i {
  color: var(--accent);
  margin-right: 10px;
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 5px;
  background: var(--accent);
  color: #001219;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s;
}

.whatsapp-btn:hover {
  background: #00e2ff;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .contact-grid {
    gap: 40px;
    text-align: center;
  }
  .contact-info {
    text-align: center;
  }
}

.services-hero {
  color: #fff;
  padding: 50px 0;
}

.services-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.services-hero p {
  color: #d0e6ef;
  line-height: 1.7;
}

/* Service Blocks */
.services-list {
  background: #0a1420;
  padding: 90px 0;
}

.service-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.service-block.reverse {
  flex-direction: row-reverse;
}

.service-image img {
  width: 300px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.service-text p {
  color: var(--text-light);
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
  .service-block {
    flex-direction: column;
    text-align: center;
  }
  .service-image img {
    width: 100%;
  }
}

/* Home Services Section */
.home-services {
  background: #0a1420;
  padding: 80px 20px;
  text-align: center;
}

.home-services h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
}

.home-services .subtitle {
  color: var(--text-muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.3);
  transform: translateY(-5px);
}

.service-card img {
  width: 50%;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 6px rgba(0, 188, 212, 0.3));
}

.service-card h3 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-wrap {
  margin-top: 50px;
}

.btn-wrap .btn {
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
}

/* Technical Expertise - Range Style */
.expertise-scale {
  background: #060d14;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.expertise-scale h2 {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 10px;
}

.expertise-scale .subtitle {
  color: var(--text-muted);
  margin-bottom: 60px;
  font-size: 1rem;
}

.expertise-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
}

.expertise-line::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(0, 188, 212, 0.1),
    rgba(0, 188, 212, 0.4)
  );
  border-radius: 2px;
  z-index: 0;
}

.expertise-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 2;
  transition: transform 0.3s ease;
}

.expertise-step:hover {
  transform: scale(1.1);
}

.icon-wrap {
  background: #060d14;
  border: 2px solid var(--accent);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 28px;
  box-shadow: 0 0 20px rgba(0, 188, 212, 0.25);
  transition: all 0.3s ease;
}

.expertise-step:hover .icon-wrap {
  background: var(--accent);
  color: #001219;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.5);
}

.expertise-step span {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  max-width: 180px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .expertise-line {
    flex-direction: column;
    align-items: center;
  }
  .expertise-line::before {
    width: 4px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(
      180deg,
      rgba(0, 188, 212, 0.1),
      rgba(0, 188, 212, 0.4)
    );
  }
  .expertise-step {
    margin: 40px 0;
    background: #060d14;
  }
}
