* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.logo {
  color: #00bcd4;
  font-size: 2rem; /* increased size for better visibility */
  font-weight: bold; /* fixed typo: was 'blogo', now 'bold' */
  letter-spacing: 1px;
  text-transform: uppercase;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* For spacing after fixed header */
.hero {
  padding-top: 80px;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background: #111;
}
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-content {
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-btn {
  padding: 1rem 2rem;
  background-color: #00bcd4;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}
.cta-btn:hover {
  background: #00bcd4;
}

section {
  padding: 80px 20px;
  text-align: center;
}
.services {
  background: #000000;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.card {
  background: #333;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
}
.about {
  background: #111;
}
footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
}
footer a {
  color: #00bcd4;
  text-decoration: underline;
}
.hero-section {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  padding: 60px 80px;
  background: rgba(0, 0, 0, 0.6); /* Optional for darker contrast */
  color: #fff;
  box-sizing: border-box;
}

.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ensure left alignment */
  gap: 15px; /* Adds spacing between h1, p, and buttons */
}

.left h1 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: left;
}


.left p {
  font-size: 1rem;
  max-width: 600px;   /* Keep it readable */
  margin: 0;
  padding: 0;
  line-height: 1.5;
  text-align: left;   /* This ensures all lines start at the same left point */
}


.buttons {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.btn {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.btn.light {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

.btn.dark {
  background-color: #000;
  color: #fff;
}


.right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.stats {
  display: flex;
  gap: 40px;
}

.stats h2 {
  font-size: 2.5rem;
  margin: 0;
}

.stats span {
  font-size: 1.5rem;
  color: #ff7845;
}

.testimonial {
  background-color: #000000cc;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
}

.testimonial p {
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.rating {
  margin-left: auto;
  color: #f5a623;
}

.more-testimonials {
  font-size: 0.85rem;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  border-bottom: 1px solid white;
}
.overlay {
  position: absolute;
  bottom: 0; /* ← anchor to bottom */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* ← aligns content at bottom */
  padding: 60px 80px;
  background: rgba(255, 255, 255, 0.05); /* More glass-like */
  backdrop-filter: blur(10px);           /* Glassmorphism */
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .overlay {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    gap: 20px; /* Controls the gap between left and right */
  }

  .left,
  .right {
    max-width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px; /* Reduce inner spacing */
  }

  .left h1 {
    font-size: 2rem;
  }

  .left p {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .testimonial {
    max-width: 100%;
    padding: 15px;
  }

  .buttons {
    flex-direction: column;
    align-items: center;
  }
 .testimonial {
  display: none !important;
}
.testimonial {
  width: 100% !important;
  text-align: center !important;
}



}



.left,
.right {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Stick content to bottom */
  gap: 20px;
}
.about-section {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
}

.about-container {
  width: 80%;
  max-width: 1200px;
  text-align: center;
}

.about-text {
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ffffffcc;
}

.about-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px;
}

.card.glass {
  width: 300px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: white;
  transition: transform 0.3s ease;
}

.card.glass:hover {
  transform: translateY(-10px);
}
.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  width: 300px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 255, 229, 0.2);
}

.card h3 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #ffffff;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}
.btn.light,
.btn.dark {
  text-decoration: none;
}

.icon-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card:hover .icon-img {
  transform: scale(1.1);
}


.icon-img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px white);
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 40px;
}

.about-info {
  flex: 1;
  min-width: 300px;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ffc107;
}

.about-info h2 span {
  color: #00ffe5;
}

.about-info p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.about-points li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
}

.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ffe5;
}

.about-btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.about-btn:hover {
  background-color: #e0a800;
}

.about-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
}

.about-img img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}


.about-info h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-info h2 span {
  color: #0077cc;
}

.about-info p {
  font-size: 16px;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
}

.about-points li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #0077cc;
}

.about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077cc;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background-color: #005fa3;
}
/* Dark Theme Background */
body {
  background: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}
/* Hover pull-up animation for About Info block */
.about-info {
  transition: transform 0.3s ease;
}

.about-info:hover {
  transform: translateY(-10px);
}

/* Hover effect for each list item */
.about-points li {
  transition: transform 0.3s ease;
}

.about-points li:hover {
  transform: translateY(-5px);
}
.about-info:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 255, 229, 0.2);
}

.about-points li:hover {
  transform: translateY(-5px) scale(1.01);
  color: #00ffe5;
}
.about-img img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 255, 229, 0.2);
}


/* Services Section */
.services-section {
  padding: 80px 20px;
  background: #121212;
}

.services-container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #fff;
}

.section-title span {
  color: #00bcd4;
}

/* Service Cards */
.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.service-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.3);
}

/* Glassmorphism Box */
.service-content {
  flex: 1;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 188, 212, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-content h3 {
  font-size: 1.8rem;
  color: #00bcd4;
  margin-bottom: 15px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .service-card,
  .service-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .service-content {
    margin-top: 20px;
  }
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 188, 212, 0.4);
}
.process-scroll-section {
  overflow: hidden;
  background: #121212;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.process-scroll-track {
  display: flex;
  width: max-content;
  animation: scrollProcess 25s linear infinite;
  gap: 30px;
  align-items: center;
  padding-left: 100%;
}

.process-card {
  min-width: 200px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.process-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 188, 212, 0.3);
}

@keyframes scrollProcess {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.project-section {
  background: #121212;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(18,18,18,0.7);
  color: #fff;
  padding: 20px;
  transition: background 0.3s ease;
}

.project-card:hover .project-overlay {
  background: rgba(0, 188, 212, 0.8);
}
.contact-section {
  padding: 80px 20px;
  background: #121212; /* Matches your theme */
  position: relative;
  z-index: 1;
}


.contact-container {
  max-width: 1200px;
  margin: auto;
}

.contact-section .section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-section .section-title span {
  color: #00bcd4;
}

.contact-section .section-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

.contact-content {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 10px;
  outline: none;
  font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ccc;
}

.btn-submit {
  padding: 12px;
  background-color: #00bcd4;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: #009db3;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 188, 212, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
}

.contact-info h3 {
  color: #00bcd4;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgb(0, 0, 0);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}



.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  min-height: 200px;
}
.site-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-size: 1.6rem;
  font-weight: bold;
  color: #0d6efd; /* Blue primary */
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-social a:hover {
  color: #0d6efd;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  color: #0d6efd;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-social a {
  display: block;
  margin-bottom: 6px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 20px;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #aaa;
}
@media (max-width: 768px) {
  .header {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-links {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

/* Default (Desktop) */
.overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem;
  gap: 2rem;
}

.left, .right {
  flex: 1;
}

/* Mobile Responsive Layout */
@media (max-width: 767px) {
  .overlay {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
  }

  .left, .right {
    width: 100%;
    max-width: 500px;
  }

  .left {
    order: 1;
  }

  .right {
    order: 2;
    margin-top: 2rem;
  }

  .stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .testimonial {
    margin-top: 1.5rem;
  }

  .testimonial .author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1.5rem;
  }

  .buttons .btn {
    width: 100%;
    max-width: 220px;
  }

  .more-testimonials {
    display: block;
    margin-top: 1.5rem;
    color: #0066cc;
    font-weight: bold;
  }
}


  section, .about-content {
    padding: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
  }

  .about-content h2 {
    font-size: 1.5rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .footer {
    padding: 20px;
    font-size: 0.9rem;
    text-align: center;
  }
}
.projects {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 12px;
}

/* Hover Effect */
.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 188, 212, 0.8);
}

.project-card:hover .project-img {
  transform: scale(1.05);
}
