/* Use same font as home */
body { font-family: 'Montserrat', sans-serif; }

/* Keep navbar identical to home: we ONLY adjust spacing so it never crowd content */
.header { position: sticky; top: 0; z-index: 999; }
.navbar { padding: 1rem 2rem; border-bottom: 1px solid rgba(0, 170, 255, .25); }
.menu-toggle { margin-left: auto; }  /* aligns like home on small screens */

/* Generic container + two-column helper for desktop */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* ===== ABOUT HERO SECTION (Match Gallery & Services Banner) ===== */
.about-hero {
  position: relative;
  height: 55vh; /* same height as gallery */
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.about-hero .banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.about-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #00eaff;
  font-weight: 700;
  text-shadow: 0 0 20px #00eaff, 0 0 40px #007bff;
  margin-bottom: 10px;
}

.about-hero .hero-content p {
  color: #b8c5d1;
  font-size: 1rem;
  margin: 0;
}

.about-hero .hero-content .breadcrumb {
  color: #00eaff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-hero .hero-content .breadcrumb:hover {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero {
    height: 45vh;
    min-height: 300px;
    padding: 60px 20px;
  }

  .about-hero .hero-content h1 {
    font-size: 2rem;
  }

  .about-hero .hero-content p {
    font-size: 0.9rem;
  }
}


/* Sections */
section{ padding-block: 80px; }
.text h2{ color:#00eaff; text-shadow:0 0 10px #00eaff; margin-bottom:12px; }
.text p{ color:#d7dbe0; line-height:1.75; }
.media img{
  width:100%; max-width:520px; border-radius:16px;
  box-shadow:0 0 25px rgba(0,238,255,.4);
}

/* WHY CHOOSE – center align everything */
.card-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  justify-items: center;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.25);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  max-width: 340px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card i {
  color: #00eaff;
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}

.card h3 {
  font-weight: 700;
  margin-bottom: 8px;
  color: #ffffff;
}

.card p {
  color: #c6cbd3;
  line-height: 1.6;
}

/* Hover effect */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(0, 238, 255, 0.35);
}


/* CEO – text left, photo right on desktop */
.ceo-layout .media-right{ justify-self:end; }

/* CTA section above footer */
.cta-section{
  background: linear-gradient(90deg,#0077ff,#00eaff);
  padding-block: 72px;
}
.cta-content{ text-align:center; }
.cta-content h2{ color:#fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom:18px; }
.glow-btn{
  display:inline-block;
  padding:14px 40px; border-radius:40px; font-weight:700; text-decoration:none;
  animation: glowPulse 3s infinite; transition:.35s;
  background:#00bfff; color:#001421;
  box-shadow: 0 0 14px rgba(0,238,255,.55);
}
.glow-btn:hover{ background:#fff; color:#0077ff; box-shadow:0 0 24px rgba(255,255,255,.65); }
@keyframes glowPulse{
  0%{ background:#00bfff; color:#001421; }
  50%{ background:#ffffff; color:#005eff; }
  100%{ background:#00bfff; color:#001421; }
}



/* ======= FOOTER (identical to homepage) ======= */
footer {
  background: linear-gradient(180deg, #030b10 0%, #000 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 25px;
  border-top: 1px solid rgba(0, 238, 255, 0.15);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Top section */
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #cfd9e3;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-top p {
  margin: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-top i {
  color: #00eaff;
  font-size: 1.1rem;
}

/* Social icons */
.footer-social {
  display: flex;
  justify-content: center;
  margin-top: 12px;
  gap: 22px;
}

.footer-social a {
  color: #00eaff;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* Bottom section */
.footer-bottom {
  border-top: 1px solid rgba(0, 238, 255, 0.1);
  padding-top: 15px;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #b8c5d1;
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-top {
    font-size: 0.9rem;
    text-align: center;
  }

  .footer-top p {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-social {
    margin-top: 16px;
  }
}


/* Keep text left on desktop, center on mobile */
.text {
  text-align: left;
}

@media (max-width: 768px) {
  .text {
    text-align: center;
  }

  .text p {
    margin-inline: auto;
    max-width: 90%;
  }
}

/* Fade-in section animation */
.fade-in{ opacity:0; transform: translateY(28px); transition: all .8s ease-out; }
.fade-in.visible{ opacity:1; transform:none; }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  .two-col{ grid-template-columns: 1fr; }
  .media{ order:2; }        /* image below text for Who We Are on tablet/mobile */
  .text{ order:1; }
  .ceo-layout .media-right{ order:2; justify-self:center; }
  .ceo-layout .text{ order:1; }
  .card-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  section{ padding-block: 60px; }
  .navbar{ padding: .9rem 1.2rem; }              /* breathing space on small screens */
  .btn-quote{ display:none; }                    /* hide desktop CTA in mobile navbar */
  
  .media img{ max-width: 92%; }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    max-width: 90%;
    margin-inline: auto;
  }
}



/* ====== CALL-TO-ACTION SECTION ====== */
.cta-section {
  background: linear-gradient(90deg, #007bff, #00eaff);
  padding: 80px 20px;
  text-align: center;
  color: #000;
  position: relative;
  z-index: 1;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent 60%);
  animation: pulseLight 4s infinite;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #001f3f;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  color: #007bff;
  background: #fff;
  border: 2px solid #fff;
  transition: all 0.4s ease;
  animation: colorPulse 2.5s infinite;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: 0 0 25px rgba(255,255,255,0.4), 0 0 50px rgba(0,238,255,0.3);
}

/* ====== ANIMATIONS ====== */
@keyframes colorPulse {
  0% {
    background: #fff;
    color: #007bff;
  }
  50% {
    background: #007bff;
    color: #fff;
  }
  100% {
    background: #fff;
    color: #007bff;
  }
}

@keyframes pulseLight {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

