/* =========================
   RESET & GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  padding-top: 80px;
  background: #6196be;
  color: white;
  cursor: none;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes floatGlow {
  from { transform: translateY(0px) scale(1); }
  to { transform: translateY(-40px) scale(1.2); }
}

@keyframes buttonGlow {
  from { box-shadow: 0 0 10px rgba(46,125,50,0.4); }
  to { box-shadow: 0 0 20px rgba(2,136,209,0.6); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TRUST THEME EFFECTS
========================= */
body.trust-theme::before,
body.trust-theme::after {
  content: "";
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  z-index: -1;
  animation: floatGlow 12s infinite alternate ease-in-out;
}

body.trust-theme::before {
  background: radial-gradient(circle, rgba(46,125,50,0.4), transparent);
}

body.trust-theme::after {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle, rgba(2,136,209,0.4), transparent);
}

/* Cards */
body.trust-theme .service-card,
body.trust-theme .team-card,
body.trust-theme .impact-box {
  background: rgba(17, 24, 39, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  transition: all 0.3s ease;
}

body.trust-theme .service-card:hover,
body.trust-theme .team-card:hover,
body.trust-theme .impact-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* CTA Button */
body.trust-theme .cta-btn {
  background: linear-gradient(135deg, #2e7d32, #0288d1);
  background-size: 200% 200%;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.3s ease;
  animation: buttonGlow 4s infinite alternate;
}

body.trust-theme .cta-btn:hover {
  transform: scale(1.08);
  background-position: right center;
}

/* =========================
   CURSOR
========================= */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: white;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, background-color 0.2s, box-shadow 0.2s;
  z-index: 9999;
  box-shadow: 0 0 5px white, 0 0 10px white;
}

.cursor.hover {
  background-color: #00c3ff;
  box-shadow: 0 0 8px #00c3ff, 0 0 20px #00c3ff, 0 0 30px #00c3ff;
  transform: translate(-50%, -50%) scale(1.7);
}

/* =========================
   HEADER
========================= */
header {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  z-index: 1000;
  top: 0;
  left: 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
}

.logo img {
  height: 110px;
  width: auto;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

nav a:hover {
  color: #00c3ff;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  background: url('home-cover.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 60px;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.8;
}

.hero button {
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  background: #00c3ff;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.4s;
}

.hero button:hover {
  transform: scale(1.1);
  background: #0090c4;
}

/* =========================
   SECTIONS (GENERAL)
========================= */
.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   COMPANIES
========================= */
.companies {
  padding: 120px 10%;
  text-align: center;
}

.companies h2 {
  font-size: 40px;
  margin-bottom: 60px;
}

.company-container {
  padding: 100px 10%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 40px;
}

.company-card {
  background: #060037;
  padding: 40px;
  border-radius: 15px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: white;
}

.company-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(15, 120, 152, 0.2);
}

.company-logo {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* =========================
   ABOUT / CONTACT / CONTENT
========================= */
.about,
.contact {
  padding: 120px 20%;
  text-align: center;
}

.about p {
  line-height: 1.8;
  opacity: 0.8;
}

.content-section {
  padding: 100px 20%;
  line-height: 1.8;
}

/* =========================
   PAGE HERO (GENERIC)
========================= */
.page-hero {
  background: #1f78c6;
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 120px;
  position: relative;
}

.page-hero h1 {
  font-size: 50px;
  margin-bottom: 10px;
}

/* Contact Hero Variant */
.contact-hero {
  height: 60vh;
  background: url('contactus-cover.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 1;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 100px 10%;
  text-align: center;
}

.service-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #060037;
  padding: 30px;
  border-radius: 15px;
  width: 250px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,195,255,0.2);
}

/* =========================
   TEAM
========================= */
.team {
  padding: 100px 10%;
  text-align: center;
}

.team-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.team-card {
  background: #393939;
  padding: 20px;
  border-radius: 15px;
  width: 220px;
  transition: 0.3s;
  text-align: center;
}

.team-card img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top; /* 👈 keeps the head visible */
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,195,255,0.2);
}

/* =========================
   MISSION & VISION
========================= */
.mission-vision {
  display: flex;
  gap: 40px;
  padding: 100px 10%;
  flex-wrap: wrap;
  justify-content: center;
}

.mv-box {
  background: #141414;
  padding: 40px;
  border-radius: 15px;
  width: 300px;
  text-align: center;
  transition: 0.3s;
}

.mv-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,195,255,0.2);
}

/* =========================
   CTA
========================= */
.cta {
  padding: 100px 20%;
  text-align: center;
  background: #111;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #00c3ff;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #0090c4;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: linear-gradient(135deg, #111, #1f1f1f);
  color: #ccc;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer h2 {
  color: #00c3ff;
  margin-bottom: 10px;
}

.footer h4 {
  color: #fff;
  margin-bottom: 10px;
  position: relative;
}

.footer h4::after {
  content: "";
  width: 30px;
  height: 2px;
  background: #00c3ff;
  position: absolute;
  left: 0;
  bottom: -5px;
}

.footer p {
  font-size: 14px;
  line-height: 1.6;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00c3ff;
  padding-left: 5px;
}

.footer-brand p {
  max-width: 250px;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}
/* STATS */

.stats{
display:flex;
justify-content:center;
gap:60px;
padding:80px;
text-align:center;
flex-wrap:wrap;
}

.stat h2{
font-size:40px;
color:#00c3ff;
}


/* WHY SECTION */

.why{
padding:100px 10%;
text-align:center;
}

.why-container{
display:flex;
gap:30px;
justify-content:center;
flex-wrap:wrap;
}

.why-card{
background:#060037;
padding:30px;
border-radius:15px;
width:250px;
transition:0.3s;
}

.why-card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,195,255,0.2);
}
/* COMPANIES PAGE */

.companies-page{
padding:120px 10%;
}

/* Enhance company cards */

.company-card{
position:relative;
overflow:hidden;
}

/* Glow border animation */
.company-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
border-radius:15px;
background:linear-gradient(120deg, transparent, #00c3ff, transparent);
opacity:0;
transition:0.4s;
}

.company-card:hover::before{
opacity:0.2;
}

/* View more text */

.view-more{
display:inline-block;
margin-top:15px;
color:#00c3ff;
font-size:14px;
transition:0.3s;
}

.company-card:hover .view-more{
transform:translateX(5px);
}
/* CONTACT PAGE */

.contact-page{
padding:120px 10%;
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:60px;
}

.contact-info, .contact-form{
background:#141414;
padding:40px;
border-radius:15px;
width:400px;
transition:0.3s;
}

.contact-info h2, .contact-form h2{
margin-bottom:25px;
}

.contact-info p a{
color:#00c3ff;
text-decoration:none;
}

.contact-info:hover, .contact-form:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,195,255,0.2);
}

.contact-form input, .contact-form textarea{
width:100%;
padding:12px 15px;
margin-bottom:15px;
border:none;
border-radius:10px;
background:#222;
color:white;
resize:none;
}

.contact-form button{
background:#00c3ff;
color:white;
border:none;
padding:12px 25px;
border-radius:30px;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#0090c4;
}

/* RESPONSIVE */
@media(max-width:900px){
.contact-page{
flex-direction:column;
align-items:center;
}
}
.company-cover{
position:relative;
width:100%;
/* padding:100px 5%; */
height:100%;
object-fit:contain;

margin-top:0;   /* ✅ ensure no gap */
padding-top:0;  /* ✅ prevent inherited padding */
overflow:hidden;
}
.company-cover img{
width:100%;
height:10%;
object-fit:cover;
filter:brightness(0.6);
}

.cover-overlay{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
text-align:center;
color:white;
}

.cover-overlay h1{
font-size:3rem;
}

.cover-overlay p{
color:#ccc;
}
.company-logo-hero{
display:flex;
justify-content:center;
margin-bottom:20px;
}

.company-logo-hero img{
height:100px;       /* adjust as needed */
object-fit:contain;
 width: 120px;
  margin-bottom: 20px;
}
/* HERO EXTRA TEXT */
.hero-desc {
  margin-top: 15px;
  font-size: 16px;
  color: #ccc;
}

/* TAGLINE */
.tagline {
  font-weight: 600;
  color: #aaa;
}

/* MISSION SECTION */
.mission {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}

.mission h2 {
  margin-bottom: 15px;
}

.mission p {
  max-width: 700px;
  margin: auto;
  color: #ccc;
}

/* GOOGLE MAP */
.map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* CONTACT IMPROVEMENT */
.contact p {
  margin: 8px 0;
  color: #ccc;
}
/* ACTIVE NAV LINK */
nav a.active {
  color: #fff;
  border-bottom: 2px solid #fff;
}
/* HERO CONTAINER */
.associates-page .page-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* BACKGROUND COVER IMAGE */
.associates-page .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/associates-cover.jpg') center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.2); /* dark overlay for readability */
}

/* CONTENT ON TOP */
.associates-page .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 60px;
}

/* LOGO */
.associates-page .associates-logo-hero {
  width: 160px;
  height: 160px;
}

.associates-page .associates-logo-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT */
.associates-page .hero-content h1 {
  font-size: 35px;
  color: #fff;
}

.associates-page .hero-content p {
  font-size: 18px;
  color: #ddd;
}

.associates-page .page-hero h1 {
  font-size: 50px;
  margin-bottom: -40px;
}
.associates-page .page-hero p {
  margin-top: 30px;
  font-size: 18px;
  color: #f7f5f5;
}
/* PAGE HERO */
/* HERO SECTION WITH COVER IMAGE */
.enterprises-page .page-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items:safe-center;
  justify-content: center;
  text-align: center;
  padding: 0 00px;
  overflow: hidden;
}
.enterprises-page .page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: url('construction-cover.jpeg') center/cover no-repeat;

  filter: blur(2px);
  transform: scale(1.1); /* prevents edge blur clipping */

  z-index: 0;
}
.enterprises-page .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.6);

  z-index: 1;
}
.enterprises-page .hero-content {
  position: relative;
  z-index: 2; /* THIS keeps text above overlay */
}
.enterprises-page .hero-content {
  display: flex;
  align-items: center;      /* vertical center of logo + text */
  justify-content: flex-start; /* push content to left */
  gap: 1px;               /* spacing between logo & text */
  max-width: 1100px;       /* optional for wide screens */
  margin: 0 auto;          /* center container horizontally */
  padding: 0 20px;
  flex-wrap: wrap;          /* keeps responsive on mobile */
}

/* Logo adjustment */
.company-logo-hero {
  width: 180px;
  height: 180px;
  background: url('../images/enterprises-logo.png') center no-repeat;
  background-size: contain;
  margin-top:50px;         /* move logo slightly down to avoid face */
}
.associates-page .associates-logo-hero {
  width: 180px;
  height: 180px;
  margin-top: 50px; /* move logo slightly down */
  display: flex;
  justify-content: center;
  align-items: center;
}

.associates-page .associates-logo-hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-right {
  color: #fff;
  text-align: left;
  max-width: 500px;
}

.hero-right h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero-right p {
  font-size: 18px;
  opacity: 0.9;
}
/* DARK OVERLAY FOR READABILITY */


.page-hero p {
  color: #aaa;
  margin-top: 10px;
}

/* COMPANIES PAGE SPACING */
.companies-page {
  padding: 40px 20px;
}

/* VALUES SECTION */
.values {
  padding: 60px 20px;
  background: #111;
  text-align: center;
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.value-box {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}

.value-box h3 {
  margin-bottom: 10px;
}
/* ABOUT PAGE HERO BACKGROUND */
.about-page .page-hero {
  position: relative;
  background: url('../images/about-cover.jpg') center/cover no-repeat;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* DARK OVERLAY TO DULL IMAGE */
.about-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* adjust darkness */
  z-index: 1;
}

/* KEEP TEXT ABOVE OVERLAY */
.about-page .page-hero h1,
.about-page .page-hero p {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* OPTIONAL TEXT STYLING */
.about-page .page-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-page .page-hero p {
  font-size: 18px;
  color: #ddd;
}
/* CTA */
.cta {
  text-align: center;
  padding: 60px 20px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 5px;
}
/* CONTENT SECTION */
.content-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.content-section p {
  margin-top: 15px;
  color: #ccc;
  line-height: 1.6;
}
/* ASSOCIATES PAGE CONTENT SECTION */
.associates-page .content-section {
  padding: 150px 20px;          /* more breathing space */
  max-width: 900px;
  margin: 0 auto;
 
}

.associates-page .content-section h2 {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.associates-page .content-section p {
  margin-top: 20px;
  color: #d0d0d0;              /* lighter text for readability */
  line-height: 1.8;
  font-size: 18px;
  text-align: justify;          /* nice block alignment */
}

.associates-page .content-section p:first-of-type {
  margin-top: 0;
}

/* MISSION & VISION */
.mission-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 60px 20px;
  justify-content: center;
}

.mv-box {
  background: #111;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  text-align: center;
}

.stat h2 {
  font-size: 32px;
}

.stat p {
  color: #aaa;
}

/* WHY SECTION */
.why {
  padding: 60px 20px;
  text-align: center;
}

.why-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.why-card {
  
  padding: 20px;
  border-radius: 10px;
  width: 250px;
}
/* CONTACT PAGE */
.contact-page {
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* INFO */
.contact-info {
  max-width: 400px;
}

.contact-info p {
  margin: 10px 0;
  color: #ccc;
}

.contact-note {
  margin-top: 15px;
  font-size: 14px;
  color: #888;
}

/* FORM */
.contact-form {
  max-width: 400px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
  background: #1a1a1a;
  color: white;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px;
  width: 100%;
  background: white;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* FORM STATUS */
.form-status {
  margin-top: 10px;
  font-size: 14px;
  color: #4CAF50;
}
/* COMPANY HERO LOGO */


/* =========================
   SERVICES (UPDATED)
========================= */
.service-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
}

.service-card {
  padding: 20px;
  border-radius: 10px;
  width: 260px;
}

/* =========================
   TEAM
========================= */
.team {
  padding: 60px 20px;
  text-align: center;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-card {
  padding: 15px;
  border-radius: 10px;
  width: 200px;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
}

/* =========================
   MINI CONTACT
========================= */
.contact-mini {
  text-align: center;
  padding: 40px 20px;
}

.contact-mini p {
  color: #ccc;
  margin: 5px 0;
}

/* =========================
   PROJECTS (FINAL VERSION)
========================= */
.projects {
  padding: 60px 20px;
  text-align: center;
}

.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.project-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.4s ease;
}

.project-card:hover {
  transform: scale(1.03);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0)
  );
}

.project-text {
  position: relative;
  z-index: 2;
  padding: 20px;
  color: #fff;
}

.project-text h3 {
  margin-bottom: 6px;
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 0 15px rgba(0,0,0,0.6);
}

.project-text p {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.5;
  text-shadow: 0 2px 6px rgba(0,0,0,0.8), 0 0 12px rgba(0,0,0,0.5);
}

/* =========================
   IMPACT
========================= */
.impact {
  padding: 60px 20px;
  text-align: center;
  background:  #0288d1;
}

.impact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.impact-box h3 {
  font-size: 30px;
}

.impact-box p {
  color: #f4f2f2;
}

/* =========================
   MODAL (TEAM)
========================= */
.team-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.team-modal.active {
  display: flex;
}

.modal-content {
  background: #111827;
  padding: 25px;
  border-radius: 14px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  color: white;
}

.modal-content img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  object-position: center top;
  border: 3px solid #fff;
}

.modal-bio {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   MOBILE NAV SYSTEM
========================= */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(10px);
}

.nav-link {
  position: relative;
  color: white;
  text-decoration: none;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #00c6ff;
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: right 0.4s ease;
}

.mobile-nav.active {
  right: 0;
}

/* =========================
   ENTERPRISES BACKGROUND
========================= */
.enterprises-page {
  position: relative;
  background: url('../images/construction-bg.jpeg') center/cover no-repeat fixed;
}

.enterprises-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(48, 47, 47, 0.9);
  z-index: -1;
} 
@media (max-width: 768px) {

  /* GLOBAL */
  body {
    padding-top: 70px;
    cursor: auto; /* disable custom cursor on mobile */
  }

  .cursor {
    display: none;
  }

  /* HEADER */
  header {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 70px;
  }

  nav {
    display: none; /* hide desktop nav */
  }

  .hamburger {
    display: flex;
  }

  /* HERO */
  .hero {
    height: 80vh;
    padding: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  /* SECTIONS */
  .about,
  .contact,
  .content-section {
    padding: 60px 20px;
  }

  /* COMPANIES */
  .company-container {
    padding: 40px 20px;
    gap: 20px;
  }

  /* SERVICES */
  .service-container {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    width: 90%;
  }

  /* TEAM */
  .team-container {
    gap: 15px;
  }

  .team-card {
    width: 45%;
  }

  .team-card img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top; /* 👈 keeps the head visible */
  border-radius: 10px;
  margin-bottom: 15px;
}

  /* MISSION / VISION */
  .mission-vision {
    flex-direction: column;
    align-items: center;
  }

  .mv-box {
    width: 90%;
  }

  /* STATS */
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  /* WHY */
  .why-container {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    width: 90%;
  }

  /* CONTACT PAGE */
  .contact-page {
    padding: 40px 20px;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  /* PROJECTS */
  .projects-container {
    grid-template-columns: 1fr;
  }

  /* HERO (INNER PAGES) */
  .page-hero h1 {
    font-size: 30px;
  }

  .hero-right h1 {
    font-size: 28px;
  }

  .hero-right p {
    font-size: 15px;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

}
@media (max-width: 768px) {

  

  .cover-overlay h1 {
    font-size: 24px; /* smaller heading */
   
  }

  .cover-overlay p {
    font-size: 14px;

  }

}
.form-row {
  display: flex;
  gap: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group textarea {
  margin-top: 5px;
  padding: 10px;
  border-radius: 8px;
  border: none;
  background: #222;
  color: white;
}

.contact-form button {
  margin-top: 15px;
  width: 100%;
}
button:active {
  opacity: 0.7;
}
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: #111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: white;
  max-width: 300px;
}

.popup-content button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #00c3ff;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}
.popup-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
#submitBtn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  background: #00c3ff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.large-img img {
  height: 220px;
}
/* Spinner hidden by default */
.spinner {
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  display: none;
  animation: spin 1s linear infinite;
}

/* Loading state */
#submitBtn.loading .spinner {
  display: inline-block;
}

#submitBtn.loading .btn-text {
  opacity: 0.7;
}

/* Disable button look */
#submitBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
.recent-activity {
  padding: 60px 20px;
  text-align: center;
}

.activity-gallery {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.activity-gallery img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
}
/* =============================================================
   PREMIUM UPGRADE LAYER — added for polished experience
   ============================================================= */

/* ------ SMOOTH SCROLL GLOBAL ------ */
html {
  scroll-behavior: smooth;
}

/* ------ SELECTION COLOR ------ */
::selection {
  background: #00c3ff33;
  color: #fff;
}

/* ------ GLOBAL TRANSITIONS ------ */
*, *::before, *::after {
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* ------ HEADER ENHANCEMENTS ------ */
.main-header {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.main-header.scrolled {
  background: rgba(6, 6, 20, 0.97) !important;
  box-shadow: 0 4px 30px rgba(0, 195, 255, 0.08);
  padding: 10px 40px;
}

/* NAV LINK HOVER — smoother underline */
.nav-link {
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.desktop-nav {
  display: flex;
  gap: 35px;
  align-items: center;
}

/* ------ HERO ENHANCEMENTS ------ */
.hero-content h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-content .tagline {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: #a8d8f0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content .hero-desc {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  line-height: 1.8;
}

.hero button {
  padding: 16px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  background: linear-gradient(135deg, #00c3ff, #0073b7);
  color: white;
  border-radius: 50px;
  cursor: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 195, 255, 0.35);
}

.hero button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0, 195, 255, 0.55);
  background: linear-gradient(135deg, #00d4ff, #005fa3);
}

/* Scroll indicator */
.hero::after {
  content: '';
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, #00c3ff, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  z-index: 2;
  border-radius: 2px;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: translateX(-50%) scaleY(0.5); }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* ------ SECTION TITLES ------ */
section h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00c3ff, #0073b7);
  border-radius: 2px;
}

.content-section h2::after,
.why h2::after,
.team h2::after,
.contact-mini h2::after,
.services h2::after {
  left: 0;
  transform: none;
}

/* ------ COMPANY CARDS ------ */
.company-card {
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(145deg, #06003a, #0a0050);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s ease,
              border-color 0.3s ease;
}

.company-card:hover {
  transform: translateY(-14px) scale(1.02);
  box-shadow: 0 24px 60px rgba(0, 195, 255, 0.18);
  border-color: rgba(0, 195, 255, 0.2);
}

.company-card h3 {
  font-size: 20px;
  margin: 15px 0 10px;
  font-weight: 600;
}

.company-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
}

/* ------ SERVICE CARDS ------ */
.service-card {
  background: linear-gradient(145deg, #060037, #0a0050);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 195, 255, 0.18);
  border-color: rgba(0, 195, 255, 0.18);
}

.service-card h3 {
  color: #00c3ff;
  font-size: 17px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
}

/* ------ WHY CARDS ------ */
.why-card {
  background: linear-gradient(145deg, #060037, #0a0050);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.35s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 195, 255, 0.18);
}

.why-card h3 {
  color: #00c3ff;
  font-size: 17px;
  margin-bottom: 10px;
}

/* ------ TEAM CARDS ------ */
.team-card {
  background: linear-gradient(145deg, #1a1a2e, #262640);
  border: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.35s ease,
              border-color 0.3s ease;
}

.team-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 60px rgba(0, 195, 255, 0.2);
  border-color: rgba(0, 195, 255, 0.2);
}

.team-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team-card p {
  color: #00c3ff;
  font-size: 13px;
  font-weight: 400;
}

/* ------ CTA SECTION ------ */
.cta {
  background: linear-gradient(135deg, #070020, #0d0030, #07001a);
  padding: 90px 20%;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,195,255,0.08), transparent);
  top: -100px;
  right: -100px;
}

.cta h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
  font-size: 16px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 40px;
  background: linear-gradient(135deg, #00c3ff, #0073b7);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 195, 255, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 45px rgba(0, 195, 255, 0.5);
}

/* ------ CONTACT FORM PREMIUM ------ */
.contact-info,
.contact-form {
  background: linear-gradient(145deg, #0d0d22, #111130);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.contact-info:hover,
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 195, 255, 0.12);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  font-size: 14px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00c3ff;
  background: rgba(0, 195, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(0, 195, 255, 0.1);
}

.contact-form label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

#submitBtn {
  background: linear-gradient(135deg, #00c3ff, #0073b7);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 195, 255, 0.3);
}

#submitBtn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 195, 255, 0.5);
}

/* ------ MODAL PREMIUM ------ */
.modal-content {
  background: linear-gradient(145deg, #0d0d22, #16163a);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalIn 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(30px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-content img {
  border: 3px solid rgba(0, 195, 255, 0.4);
  box-shadow: 0 8px 30px rgba(0, 195, 255, 0.2);
}

.close-btn {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s ease, transform 0.2s ease;
  z-index: 10;
  cursor: pointer;
}

.close-btn:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* ------ PAGE HERO PREMIUM ------ */
.page-hero {
  background: linear-gradient(135deg, #0a0030, #1a1050, #0a0030);
}

/* ------ FOOTER PREMIUM ------ */
.footer {
  background: linear-gradient(135deg, #070014, #0d0020, #070014);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer a:hover {
  color: #00c3ff;
  padding-left: 8px;
}

/* ------ SECTION REVEAL ANIMATION ------ */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1),
              transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ------ MISSION SECTION ------ */
.mission {
  background: linear-gradient(135deg, #08001e, #111);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ------ IMPACT BOXES (TRUST) ------ */
.impact {
  background: linear-gradient(135deg, #0073b7, #005fa0, #00c3ff);
  position: relative;
  overflow: hidden;
}

.impact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.impact-box h3 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* ------ ABOUT SECTION ------ */
.about {
  background: linear-gradient(135deg, #06001a, #0d0028);
}

.about h2 {
  color: #fff;
}

.about p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  max-width: 700px;
  margin: 20px auto 0;
}

/* ------ PROJECT CARDS ------ */
.project-card {
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.4s ease;
}

.project-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

/* ------ ACTIVITY GALLERY ------ */
.activity-gallery img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  object-fit: cover;
}

.activity-gallery img:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

/* ------ HAMBURGER ANIMATION ------ */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  transition: transform 0.3s ease;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  transition: transform 0.3s ease;
}

.hamburger span {
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* ------ MOBILE NAV LINKS ------ */
.mobile-nav a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00c3ff;
  transition: width 0.3s ease;
}

.mobile-nav a:hover {
  color: #00c3ff;
}

.mobile-nav a:hover::after {
  width: 100%;
}

/* ------ SUCCESS POPUP ------ */
.popup-content {
  background: linear-gradient(145deg, #0d0d22, #16163a);
  border: 1px solid rgba(0, 195, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.popup-content h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.popup-content p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ------ CONTACT INFO LINKS ------ */
.contact-info p a {
  color: #00c3ff;
  transition: color 0.3s ease, letter-spacing 0.2s ease;
}

.contact-info p a:hover {
  letter-spacing: 0.3px;
}

/* ------ TRUST THEME ENHANCEMENTS ------ */
body.trust-theme .service-card,
body.trust-theme .why-card {
  background: linear-gradient(145deg, rgba(6,0,55,0.9), rgba(10,0,80,0.9));
  border: 1px solid rgba(46,125,50,0.15);
}

/* ------ ENTERPRISES THEME ------ */
.enterprises-page section h2 {
  color: #fff;
}

/* ------ COMPANIES PAGE ------ */
.companies-page .company-container {
  padding-top: 50px;
}

/* ------ SMOOTH CURSOR UPGRADE ------ */
.cursor {
  width: 18px;
  height: 18px;
  background: white;
  transition: transform 0.15s cubic-bezier(0.165, 0.84, 0.44, 1),
              background-color 0.2s ease,
              box-shadow 0.2s ease,
              width 0.2s ease,
              height 0.2s ease;
  mix-blend-mode: difference;
}

@media (pointer: coarse) {
  .cursor { display: none; }
  body { cursor: auto; }
}

/* ------ CONTACT MINI ------ */
.contact-mini {
  background: linear-gradient(135deg, #06001a, #0d0028);
  padding: 60px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-mini h2 {
  margin-bottom: 25px;
}

.contact-mini p {
  font-size: 15px;
  line-height: 2;
}


/* =============================================================
   FEATURE UPGRADE LAYER — all new UI features
   ============================================================= */

/* ------ SCROLL PROGRESS BAR ------ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #00c3ff, #0073b7, #00c3ff);
  background-size: 200% 100%;
  z-index: 9999;
  pointer-events: none;
  animation: progressShimmer 2s linear infinite;
}
@keyframes progressShimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ------ BACK TO TOP ------ */
#back-to-top {
  position: fixed;
  bottom: 110px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00c3ff, #0073b7);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,195,255,0.4);
  z-index: 9000;
}
#back-to-top:hover {
  box-shadow: 0 10px 35px rgba(0,195,255,0.65);
}

/* ------ WHATSAPP BUTTON ------ */
#whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  z-index: 9000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}
#whatsapp-btn:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.7);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ------ LIGHTBOX ------ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99000;
  backdrop-filter: blur(8px);
}
#lightbox.active {
  display: flex;
  animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  object-fit: contain;
  animation: lbImgIn 0.35s cubic-bezier(0.165,0.84,0.44,1);
}
@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.88); }
  to { opacity: 1; transform: scale(1); }
}
#lb-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: rgba(255,255,255,0.8);
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
}
#lb-close:hover { color: #00c3ff; transform: rotate(90deg); }
#lb-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
}

/* ------ COMPANY SELECTOR IN CONTACT FORM ------ */
.company-selector {
  width: 100%;
  padding: 10px 40px 10px 14px;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300c3ff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  -webkit-appearance: none;
}
.company-selector:focus {
  border-color: #00c3ff;
  box-shadow: 0 0 0 3px rgba(0,195,255,0.1);
  background-color: rgba(0,195,255,0.05);
}
.company-selector option {
  background: #111;
  color: white;
}

/* ------ MOBILE FIXES ------ */
@media (max-width: 768px) {
  /* Floating buttons adjust for mobile */
  #whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  #back-to-top {
    bottom: 90px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  /* Header fully responsive */
  .main-header {
    padding: 12px 20px;
    height: auto;
  }
  .logo img {
    height: 60px;
  }
  .desktop-nav {
    display: none !important;
  }
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
  }
  .hamburger span {
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    display: block;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  /* Mobile nav panel */
  .mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: rgba(6,6,20,0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s cubic-bezier(0.165,0.84,0.44,1);
    z-index: 1050;
    border-left: 1px solid rgba(0,195,255,0.1);
  }
  .mobile-nav.active { right: 0; }
  .mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
  }
  .mobile-nav a:hover, .mobile-nav a.active { color: #00c3ff; }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1040;
  }
  .menu-overlay.active { opacity: 1; visibility: visible; }

  /* Hero mobile */
  body { padding-top: 70px; cursor: auto; }
  .hero { height: 100svh; min-height: 500px; }
  .hero-content h1 { font-size: clamp(28px, 8vw, 44px); }
  .hero-content p, .hero-content .hero-desc { font-size: 15px; }
  .hero button { padding: 14px 28px; font-size: 14px; }

  /* Sections */
  .about, .contact, .content-section { padding: 60px 20px; }
  .company-container { padding: 40px 20px; gap: 20px; }
  .service-container { flex-direction: column; align-items: center; }
  .service-card { width: 92%; }
  .team-container { gap: 15px; }
  .team-card { width: calc(50% - 8px); min-width: 140px; }
  .mission-vision { flex-direction: column; align-items: center; }
  .mv-box { width: 92%; }
  .stats { flex-direction: column; gap: 20px; padding: 40px 20px; }
  .why-container { flex-direction: column; align-items: center; }
  .why-card { width: 92%; }
  .contact-page { padding: 40px 20px; }
  .contact-info, .contact-form { width: 100%; }
  .projects-container { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 28px; }
  .hero-right h1 { font-size: 26px; }
  .hero-right p { font-size: 15px; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer h4::after { left: 50%; transform: translateX(-50%); }
  .impact-container { flex-direction: column; align-items: center; gap: 20px; }
  .form-row { flex-direction: column; gap: 0; }
  .activity-gallery img { width: 100%; height: 200px; }
  .cta { padding: 60px 20px; }
  .cover-overlay h1 { font-size: 22px; }
  .cover-overlay p { font-size: 14px; }
  .cursor { display: none; }

  /* Enterprises hero mobile */
  .enterprises-page .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
  }
  .hero-right { text-align: center; max-width: 100%; }
  .company-logo-hero { margin-top: 20px; }
}

/* Tablet tweaks */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-header { padding: 15px 30px; }
  .desktop-nav { gap: 22px; }
  .company-container { padding: 60px 5%; }
  .about, .contact, .content-section { padding: 80px 10%; }
  .cta { padding: 80px 10%; }
}

.hero .hero-content { position: relative; z-index: 3; }
