/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}


body {
  background-color: #949494;
  color: #333;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}

.container {
  max-width: 2700px;
  margin: auto;
  padding: 40px;
}



.bottom-marquee {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      color: white;
      font-size: 18px;
      font-weight: bold;
      padding: 15px;
    }

marquee {
      width: 100%;
    }

.header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 60px;
      background-color: transparent;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
      transition: background-color 2.0s ease;
      z-index: 1000;
    }
	
.header.scrolled {
      background-color: white; /* Change this to any color you want */
    }

.content {
      padding-top: 20px;
      height: 450px; /* Just to enable scrolling */
    }


.qlwapp-box {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      font-size: 16px;
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 50px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 9999;
    }

.qlwapp-box:hover {
      background-color: #1ebe5d;
    }

.qlwapp-box img {
      width: 20px;
      height: 20px;
    }

.navbar {
      position: absolute;        /* Fixes navbar at the top */
      top: 0;
      left: 0;
      right: 0;
      height: 90px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 15px;
      z-index: 1000;
    }

.logo {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      padding: 8px 12px;
      transition: background-color 0.3s;
    }

.header.scrolled .nav-links a {
      color: #333;
    }

.header.scrolled .nav-links a:hover {
    color: #00c6ff;
}

.nav-links a:hover {
      color: #00c6ff;
    }
	
.hero {
  position: relative;
  color: #fff;
  padding: 260px 0px;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  
}

/*
.hero {
  background: url('bg.png') center/cover no-repeat;
  color: #fff;
  padding: 260px 0px;
  text-align: center;
}
*/

html {
  scroll-behavior: smooth;
}


.glow-line {
  width: 1300px;
  height: 4px;
  padding: 0px 0px;
  margin: 0 auto 60px auto;
  background: linear-gradient(90deg, #00ffff, #0077ff);
  box-shadow: 0 0 20px black;
  animation: pulseLine 2s infinite alternate;
}

.btn {
  display: inline-block;
  padding: 5px 20px;
  background-color: #00c6ff;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e0f7fa;
}

.about-us {
	  background-color: white;
      display: flex;
      justify-content: space-between;
      padding: 40px;
      align-items: center;
      flex-wrap: wrap;
    }

.about-text {
      flex: 1;
      padding-right: 30px;
    }
	
.about-text h2 {
      color: #00c6ff;
      margin-bottom: 10px;
    }

.about-text p {
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

.about-image {
      flex: 1;
      text-align: center;
    }

.btn1 {
      background-color: #00c6ff;
	  font-weight: bold;
      color: black;
      border: none;
      padding: 8px 18px;
      border-radius: 25px;
      cursor: pointer;
    }

.btn1:hover {
  background-color: #e0f7fa;
}

.services {
  background-color: white;
  padding: 20px 20px;
  text-align: center;
}


.services h2 {
  margin-bottom: 30px;
  font-size: 32px;
  color: #00c6ff;
}

.services p {
      font-size: 20px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
}

.service-image img {
  width: 500px;
  height: 300px;
  max-width: 100%;
  border-radius: 20px;
  animation: zoomIn 1.5s ease forwards;
  box-shadow: 0 0 20px rgba(59, 59, 59, 1);
}

.service-text {
  padding: 0 15px 15px;
  font-size: 20px;
  font-weight: bold;
  color: #00c6ff;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card-container2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
      gap: 20px;
      max-width: 700px;
      margin: auto;
	  justify-content: center;
    }

.card5 {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(59, 59, 59, 1);
  width: 550px;
  text-align: left;
}


.card h3 {
  color: #00c6ff
  margin-bottom: 10px;
}





.review-form {
      margin-bottom: 30px;
    }

.review-form input,
    .review-form select {
      padding: 10px;
      width: 200px;
      margin: 5px;
      border-radius: 20px;
      border: 1px solid #ccc;
    }

.review-form button {
      padding: 10px 15px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 20px
      cursor: pointer;
    }

.review-form button:hover {
      background-color: #e0f7fa;
    }

.reviewer-name {
  margin-top: 10px;
  font-weight: bold;
  color: #007bff;
  font-size: 14px;
}

input, select, button {
  margin: 5px;
  padding: 5px;
}

.slider-container {
  background: url('bg.png') center/cover no-repeat;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 20px;
  height: 300px;
  border: 2px solid #FFFFFF;
}

.slider-track {
  display: flex;
  gap: 10px;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

.card {
  background: rgba(255, 255, 255, 0.2); /* semi-transparent */
  backdrop-filter: blur(60px);
  margin-top: 12px;
  min-width: 400px;
  height: 270px;
  background: rgba(255, 255, 255, 0.1);
  padding: 50px;
  border: 3px solid #3B3B3B;
  border-radius: 10px;
  align-items: center;
}

.stars {
  color: gold;
  font-size: 20px;
}

.clients-section {
		text-align: center;
        padding: 40px 20px;
		background: white;
    }

    .clients-section .subtitle {
        color: #FF0004;
        font-size: 1.2em;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .clients-section h2 {
        font-size: 2.8em;
        color: #00c6ff;
        margin-bottom: 40px;
    }

.glow-line1 {
  width: 120px;
  height: 3px;
  margin: 0 auto 60px auto;
  background: linear-gradient(271deg, #FF0000, #000000);
  box-shadow: 0 0 20px white;
  animation: pulseLine 2s infinite alternate;
}


    .clients-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        max-width: 1300px;
		height: 1000px;
        margin: 0 auto;
        padding: 0 50px;
    }

    @media (max-width: 992px) {
        .clients-logos {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 768px) {
        .clients-logos {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .clients-logos {
            grid-template-columns: 1fr;
        }
    }

    .client-logo {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(6px);
        border-radius: 15px;
		border: 1px solid #3B3B3B;
        padding: 20px;
        box-shadow: 0 20px 20px rgba(59, 59, 59, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
        opacity: 0;
        transform: translateY(20px);
    }

    .client-logo.visible {
        animation: fadeIn 0.8s forwards;
    }

    .client-logo img {
        max-height: 80px;
        max-width: 140px;
        
        transition: filter 0.4s ease;
    }

    .client-logo:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    }

    .client-logo:hover img {
        filter: grayscale(0%);
    }

    @keyframes fadeIn {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

footer {
  background-color:#757575;
  color: #fff;
  padding: 50px 20px 30px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo {
  flex: 1 1 250px;
}

.footer-logo h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.footer-logo span {
  font-weight: 400;
  opacity: 0.8;
}

.footer-logo p {
  margin: 8px 0;
  color: #aaa;
  font-size: 14px;
}



.footer-links, .contact-info {
  flex: 1 1 200px;
  font-size: 14px;
}

.footer-links ul, .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.contact-info p {
  margin: 6px 0;
  font-size: 14px;
}

.scroll-up {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 100px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
}

.scroll-up:hover {
  background-color: rgba(255,255,255,0.1);
}

.scroll-up .arrow {
  font-size: 20px;
  margin-top: 10px;
  display: block;
}

.scroll-up .text {
  margin-top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: white;
}