* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  overflow-x: hidden;
  background-color: #1e1f1f;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Background Video Styling */
#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(60%);
  background: url("image/fallback.jpg") center center / cover no-repeat;
}

#welcome-area {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  perspective: 1000px;
}


/* ---------- Dark Overlay ---------- */
#welcome-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

#typed,
.welcome-text .typed-cursor {
  font-size: 38px;
  color: #fff;
}

/* ---------- Text Area ---------- */
.welcome-text {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 600px;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-40%);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* ---------- Neon Glow Heading ---------- */
.welcome-text h1 {
  font-size: 3.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #00eaff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
  from {
    text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff, 0 0 30px #0072ff,
      0 0 40px #0072ff;
  }

  to {
    text-shadow: 0 0 20px #00ffff, 0 0 40px #00eaff, 0 0 60px #0072ff,
      0 0 80px #0072ff;
  }
}

/* ---------- Typing Text ---------- */
#typed {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: linear-gradient(270deg, #ffcc00, #ff0066, #ff00ff, #00ffff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-top: 10px;
  animation: gradientFlow 5s ease infinite, glowPulse 2.5s ease-in-out infinite;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.4),
      0 0 20px rgba(255, 204, 0, 0.3);
  }

  50% {
    text-shadow: 0 0 25px rgba(255, 0, 255, 0.6),
      0 0 40px rgba(255, 204, 0, 0.5);
  }

  100% {
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.4),
      0 0 20px rgba(255, 204, 0, 0.3);
  }
}

@media (max-width: 768px) {
  #typed {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  #typed {
    font-size: 1.4rem;
  }
}

/* ---------- Description ---------- */
.welcome-text p {
  font-size: 1.5rem;
  margin-top: 25px;
  color: #ddd;
  line-height: 1.7;
  animation: fadeInText 2s ease-in-out;
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ---------- Social Icons ---------- */
.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 1.2rem;
  border: 1px solid #00eaff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  transition: all 0.4s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #00eaff, #0072ff);
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(0, 224, 255, 0.6);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .welcome-text {
    left: 5%;
    max-width: 90%;
  }

  .welcome-text h1 {
    font-size: 3rem;
  }

  #typed {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .welcome-text {
    left: 5%;
    top: 45%;
  }

  .welcome-text h1 {
    font-size: 2.3rem;
  }

  #typed {
    font-size: 1.6rem;
  }

  .welcome-text p {
    font-size: 0.95rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .welcome-text h1 {
    font-size: 1.8rem;
  }

  #typed {
    font-size: 1.3rem;
  }

  .welcome-text p {
    font-size: 0.9rem;
  }

  .social-icons a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 0.9rem;
  }
}

/* ---------- HEADER ---------- */

.logo-area {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-area img {
  height: 50px; /* 👈 keeps header slim */
  max-height: 100%;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo-area img:hover {
  transform: scale(1.12) rotate(-1deg);
  filter: drop-shadow(0 6px 14px rgba(255, 255, 255, 0.25));
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: border-bottom 0.3s ease;
}

/* Border appears only when info bar is open */
header.header-active {
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  transition: border-bottom 0.3s ease;
}

/* Scroll UP background */
header.scroll-up {
  background: linear-gradient(135deg, #969696, #020617);

  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* Scroll DOWN background */
header.scroll-down {
  background: linear-gradient(135deg, #969696, #020617);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

/* ---------- Hamburger Button ---------- */
.info-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.info-btn span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}

.info-btn:hover span {
  background: #ffd700;
}

/* Morph into X (same place) */
.info-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.info-btn.active span:nth-child(2) {
  opacity: 0;
}

.info-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Menu Overlay ---------- */

#header-info-bar {
  position: fixed;
  top: 85px;
  right: -100%;
  width: 380px;
  height: 100vh;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease;
  padding: 0 25px;
  background: transparent;
}

#header-info-bar.active {
  right: 0;
}

.close-header-info-bar {
  text-align: right;
  margin-bottom: 30px;
}

.close-header-info-bar i {
  font-size: 24px;
  color: #006666;
  cursor: pointer;
  transition: 0.3s;
}

.close-header-info-bar i:hover {
  color: #00bcd4;
  transform: rotate(90deg);
}

/* ---------- Menu Items ---------- */
.menu ul {
  list-style: none;
  text-align: left;
}

.menu ul li {
  margin: 18px 0;
}

.menu ul li a {
  display: inline-block;
  color: #f3e9e9;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 700;
}

/* Hover effect */
.menu ul li a:hover {
  color: #00bcd4;
  background: rgba(0, 188, 212, 0.1);
  padding-left: 25px;
  box-shadow: 0 4px 10px rgba(0, 188, 212, 0.4);
  transform: translateX(5px);
  width: 300px;
}

.menu ul li a:hover::after {
  width: 100%;
}

/* ---------- Newsletter ---------- */
.newsletter {
  margin-top: 40px;
  background: Transparent !important;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.newsletter h5 {
  color: hsl(180, 23%, 95%);
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-email {
  padding: 10px;
  border-radius: 25px 0 0 25px;
  border: 1px solid #00bcd4;
  outline: none;
  width: 180px;
}

.submit-btn {
  background: #00bcd4;
  border: none;
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #006666;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  header {
    padding: 15px 25px;
  }
}

@media (max-width: 458px) {
  header {
    background-color: transparent;
  }

  #header-info-bar {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #header-info-bar {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* about Section */

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 80px 5%;
  gap: 40px;
  background: linear-gradient(135deg, #00bcd4, #e3e9e9);
  perspective: 1000px;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.about-img img {
  width: 100%;

  border-radius: 20px;
  transition: transform 0.5s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.img-hover {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(89, 188, 8, 0.7);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.4s ease, bottom 0.4s ease;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
}

.about-img:hover .img-hover {
  opacity: 1;
  bottom: 25px;
}

.about-content {
  flex: 1 1 500px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #00695c;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00bcd4;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 5px;
}

.about-text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
  font-weight: 600;
}

.skills {
  background: #f0f9ff;
  border-left: 5px solid #00bcd4;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.15);
}

.skills h6 {
  font-size: 18px;
  font-weight: 600;
  color: #00695c;
  margin: 10px 0;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.skills h6::before {
  content: "✔";
  margin-right: 10px;
  color: #00bcd4;
  font-size: 18px;
}

.skills h6:hover {
  transform: translateX(5px);
  color: #004d40;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    order: 2;
  }

  .about-img {
    width: 90%;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* services section -->     */

#service {
  background: radial-gradient(circle at top left, #00bcd4, #004d4d);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  perspective: 1000px;
}

#service::before,
#service::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}

#service::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: #00ffff;
}

#service::after {
  width: 350px;
  height: 350px;
  bottom: -100px;
  right: -100px;
  background: #009999;
}

/* ======= Header ======= */
.service-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.title-small p {
  color: #ffeb3b;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff, #e0f7fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======= Grid Layout ======= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ======= Service Card ======= */
.service-item {
  /* background: rgba(255, 255, 255, 0.1); */
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  color: #fff;
  transition: all 0.6s ease;
  position: relative;
  backdrop-filter: blur(10px);
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
  transform-style: preserve-3d;
  cursor: pointer;
}

.service-item:hover {
  transform: rotateY(10deg) rotateX(5deg) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 255, 255, 0.3);
}

/* ======= Icon Style ======= */
.service-item span i {
  display: inline-block;
  font-size: 40px;
  color: #ff2f00;
  border: 2px solid #51ff00;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 76px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  animation: floatIcon 3s ease-in-out infinite;
}

.service-item:hover span i {
  color: #fff;
  background: #00bcd4;
  border-color: #fff;
  box-shadow: 0 0 25px #00e6e6;
  transform: rotateY(180deg);
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-8px);
  }
}

.content-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.content-text {
  font-size: 1rem;
  color: #e0f7fa;
  line-height: 1.7;
}

/* ======= Hover Glow Animation ======= */
.service-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-item:hover::after {
  opacity: 1;
}

/* ======= Responsive ======= */
@media (max-width: 576px) {
  #service {
    padding: 70px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-item {
    padding: 35px 20px;
  }

  .service-item span i {
    width: 65px;
    height: 65px;
    font-size: 30px;
    line-height: 63px;
  }
}

/* //vision section */

.vision-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 100px 10%;
  background: linear-gradient(135deg, #e0f7fa, #f0f9ff);
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: #00bcd4;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

.vision-image {
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.vision-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.vision-image img:hover {
  transform: scale(1.05);
}

.vision-content {
  flex: 1;
  min-width: 320px;
  position: relative;
  z-index: 1;
}

.vision-content h3 {
  font-size: 2.2rem;
  color: #003c58;
  margin-bottom: 10px;
}

.vision-content h5 {
  font-size: 1.1rem;
  color: #006666;
  margin-bottom: 30px;
  font-weight: 500;
}

.vision-content h4 {
  font-size: 1.5rem;
  color: #00bcd4;
  margin-bottom: 15px;
}

.vision-content p {
  color: #444;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.vision-content a {
  display: inline-block;
  background: #006666;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vision-content a:hover {
  background: #00bcd4;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .vision-section {
    flex-direction: column;
    text-align: center;
    padding: 70px 20px;
  }
}

/* technology section */

.technology-section {
  padding: 25px 20px;
  color: #fff;
  background: linear-gradient(135deg, #e0f7fa, #f0f9ff);
  position: relative;
  overflow: hidden;
}

.technology-section::after {
  content: "";
  position: absolute;
  bottom: -70px;
  right: -70px;
  width: 250px;
  height: 250px;
  background: #00bcd4;
  border-radius: 50%;
  opacity: 0.2;
  animation: float 7s infinite ease-in-out reverse;
}

.containerss h3 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #006666;
}

.containerss h5 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #006666;
  line-height: 1.6;
}

.containerss {
  max-width: 1200px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.content-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-text {
  flex: 1;
  min-width: 300px;
}

.content-text h4 {
  font-size: 1.6rem;
  color: #00bcd4;
  margin-bottom: 15px;
}

.content-text p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.btn-custom {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  background: linear-gradient(135deg, #006666, #00bcd4);
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-custom:hover {
  background: linear-gradient(135deg, #00bcd4, #006666);
  transform: translateY(-2px);
}

.technology-section h3 {
  color: #003c58;
}

.technology-section h5 {
  color: #006666;
}

.technology-section .content-text h4 {
  color: #003c58;
}

.technology-section .content-text p {
  color: #444;
}

.technology-section .btn-custom {
  background: #fff;
  color: #006666;
}

.technology-section .btn-custom:hover {
  background: #00bcd4;
  color: #fff;
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .content-text p {
    text-align: center;
  }
}

/* -------- Revolution Section -------- */
.revolution {
  position: relative;
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #053443, #ee5ad5);
  overflow: hidden;
}

/* -------- Container -------- */
.revolution-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  z-index: 1;
  position: relative;
}

/* -------- Video (Left for large screens) -------- */
.revolution-video {
  /* flex: 1 1 450px; */
  text-align: center;
  margin-bottom: 0px;
}

.revolution-video video {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.revolution-video video:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 188, 212, 0.6);
}

/* -------- Text (Right for large screens) -------- */
.revolution-text {
  flex: 1 1 250px;
  color: #fff;
}

.revolution-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #00e5ff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.revolution-text h5 {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #ddd;
}

.revolution-text .highlight {
  color: #00e5ff;
  font-weight: 700;
  background: linear-gradient(90deg, #00bcd4, #8e2de2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s infinite alternate;
}

@keyframes shine {
  0% {
    filter: brightness(0.9);
  }

  100% {
    filter: brightness(1.4);
  }
}

.revolution-text em {
  color: #00bcd4;
  font-style: italic;
}

.revolution-text strong {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 188, 212, 0.6);
}

/* -------- Responsive Design -------- */
@media (max-width: 1024px) {
  .revolution-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-image img {
    width: 90%;
    max-width: 500px;
  }

  .revolution-video video {
    width: 90%;
    max-width: 400px;
  }

  .revolution-text {
    padding: 0 10px;
  }

  .revolution-text h2 {
    font-size: 2.2rem;
  }

  .revolution-text h5 {
    font-size: 1rem;
  }
}

/* -------- Extra Small Screens (Phones) -------- */
@media (max-width: 600px) {
  .revolution {
    padding: 40px 15px;
  }

  .revolution-video video {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    flex: 1 1 0px;
  }

  .revolution-text h2 {
    font-size: 1.8rem;
  }

  .revolution-text h5 {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* <!-- Testimonial Section --> */

.testimonial-section {
  text-align: center;
  padding: 50px 100px;
  background: linear-gradient(135deg, #00bcd4, #e3e9e9);
  color: #fff;
  overflow: hidden;
  perspective: 1000px;
}

.testimonial-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  text-transform: capitalize;
  position: relative;
}

/* Swiper Slides */
.testimonial-content {
  /* background: #ffffff; */
  color: #333;
  border-radius: 20px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
  padding: 30px 25px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.testimonial-content:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #00bcd4;
  object-fit: cover;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.testimonial-content:hover .testimonial-img img {
  transform: rotate(5deg) scale(1.05);
}

.testimonial-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #1d08db;
}

.testimonial-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #0b0101;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #ea1010;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #3bff58;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .testimonial-section h2 {
    font-size: 2.2rem;
  }

  .testimonial-content {
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-section h2 {
    font-size: 2rem;
  }

  .testimonial-content {
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
  }

  .testimonial-img img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 50px 10px;
  }

  .testimonial-section h2 {
    font-size: 1.8rem;
  }

  .testimonial-content {
    width: 95%;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
  }

  .testimonial-text p {
    font-size: 0.9rem;
  }
}

/* industrial Section */

.industrial-section {
  text-align: center;
  padding: 50px 0px;
  background: linear-gradient(135deg, #006666, #00bcd4);
  color: #fff;
}

.industrial-section h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.industrial-section h5 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 50px;
  color: #e0f7fa;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-grid:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-grid:hover img {
  transform: scale(1.05);
}

.project-grid-text1 {
  padding: 20px;
  text-align: center;
}

.project-grid-text1 h4 {
  font-size: 1.3rem;
  color: #006666;
  margin-bottom: 10px;
  font-weight: 600;
}

.project-grid-text1 p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .industrial-section h3 {
    font-size: 2rem;
  }

  .industrial-section h5 {
    font-size: 1rem;
  }

  .product-grid img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .project-grid-text1 h4 {
    font-size: 1.1rem;
  }

  .project-grid-text1 p {
    font-size: 0.9rem;
  }
}

/* <!-- blog-section --> */

.blog-section {
  background: linear-gradient(135deg, #f9f9f9, #eef3f8);
  padding: 50px 20px;
  font-family: "Poppins", sans-serif;
  perspective: 1000px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-titled {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 50px;
}

/* ====== Blog Card Layout ====== */
.blog-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-img {
  flex: 1;
}

.blog-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px;
}

.blog-content {
  flex: 1;
  text-align: left;
}

.blog-content h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 15px;
}

.blog-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content.expanded p {
  -webkit-line-clamp: unset;
}

.read-more {
  display: inline-block;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

/* ====== Pagination Buttons ====== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  gap: 20px;
}

.pagination button {
  background: linear-gradient(135deg, #007bff, #00c6ff);
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.pagination button:hover:not(:disabled) {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0056b3, #0096ff);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .blog-img img {
    height: 320px;
  }

  .blog-content h3 {
    font-size: 1.4rem;
  }
}

/* clients-section */

section.clients-section {
  padding: 40px 0px;
  text-align: center;
  background: linear-gradient(135deg, #00bcd4, #006666);
  color: #fff;
  perspective: 1000px;
}

section.clients-section h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.team-grids {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-grid {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
}

.team-grid:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.team-grid img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
  filter: grayscale(100%);
}

.team-grid:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  section.clients-section h3 {
    font-size: 2rem;
  }

  .team-grid {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    height: 130px;
    padding: 15px;
  }

  section.clients-section h3 {
    font-size: 1.8rem;
  }
}

/* ---------- Contact Section ---------- */
.contact-section {
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #1e1f1f;
  min-height: 100vh;
  perspective: 1000px;
}

.get {
  margin-bottom: 60px;
}

.contact-container {
  max-width: 1100px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border: 1px solid rgba(0, 255, 255, 0.15);
  transition: 0.3s ease;
}

.contact-container:hover {
  box-shadow: 0 10px 40px rgba(0, 255, 255, 0.25);
  border-color: rgba(0, 255, 255, 0.4);
}

/* ---------- Left Info Section ---------- */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #00e6e6;
}

.contact-info p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.info-item i {
  font-size: 22px;
  margin-right: 15px;
  color: #00e6e6;
}

.info-item span {
  font-size: 15px;
}

/* ---------- Social Media Icons ---------- */
.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.15);
  color: #00e6e6;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #00e6e6;
  color: #111;
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

/* ---------- Right Form Section ---------- */
.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #00e6e6;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  outline: none;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  resize: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

.contact-form button {
  background: linear-gradient(135deg, #00e6e6, #0072ff);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
}

.getintouch {
  margin-bottom: 40px;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .social-icons {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-info h2 {
    font-size: 1.6rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }

  .contact-form button {
    font-size: 15px;
    padding: 10px;
  }
}

/* <!-- right dot navigation --> */

/* Position the vertical dot menu on the right center */
.dot-navigation {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

/* Each dot */
.dot-navigation li {
  margin: 12px 0;
}

/* Dots appearance */
.dot-navigation li a {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #9c9c9c;
  /* gray inactive */
  transition: all 0.3s ease;
}

/* Hover effect */
.dot-navigation li a:hover {
  background-color: #fff;
  transform: scale(1.2);
}

/* Active dot */
.dot-navigation li.active a {
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

@media (max-width: 480px) {
  .dot-navigation {
    display: none;
  }
}

/* for left side page name */

.section-label {
  position: fixed;
  top: 50%;
  left: 15px;
  /* change to right: 15px; if you want it on right side */
  transform: translateY(-50%) rotate(90deg);
  /* vertical text */
  transform-origin: left center;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  cursor: pointer;
}

/* Red line above */
.section-label::before,
.section-label::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: #e63946;
  border-radius: 2px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 0 rgba(230, 57, 70, 0);
  /* for glow on hover */
}

/* Hover effect — expand & glow */
.section-label:hover::before,
.section-label:hover::after {
  height: 60px;
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.8);
}

/* Optional: subtle text effect on hover */
.section-label:hover span {
  color: #e63946;
  transition: color 0.4s ease;
}

@media (max-width: 480px) {
  .section-label {
    display: none;
  }
}

/* Preloader container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Preloader video */
.preloader video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Optional skip button */
#skip-btn {
  position: absolute;
  bottom: 30px;
  right: 40px;
  padding: 10px 20px;
  background: rgba(224, 12, 12, 0.2);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: 0.3s;
}

#skip-btn:hover {
  background: #e63946;
  border-color: #e63946;
}

/* ========= Home Buttons ========= */
.welcome-buttons {
  position: absolute;
  bottom: 35px; /* stays at bottom on all screens */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  animation: fadeIn 1.2s ease;
}

/* Heading */
.welcome-buttons h2 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeDown 1s ease;
}

/* Partner Box */
.btn-icon-box {
  padding: 12px 25px;
  border-radius: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 14px;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: 0.35s ease;
  animation: floatLogo 4s ease-in-out infinite;
}

/* Glow Hover */
.btn-icon-box:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-8px) scale(1.07);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Logo Image */
.btn-icon {
  width: 115px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.45));
  transition: 0.3s ease;
}

/* Slight zoom on hover */
.btn-icon-box:hover .btn-icon {
  transform: scale(1.05);
}

/* Floating Animation */
@keyframes floatLogo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Heading fade down */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Section fade-in */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Responsive — Tablets */
@media (max-width: 900px) {
  .btn-icon {
    width: 95px;
  }
  .btn-icon-box {
    margin: 10px;
  }
}

/* Responsive — Mobile */
@media (max-width: 600px) {
  .welcome-buttons {
    bottom: 20px;
  }

  .welcome-buttons h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .btn-icon {
    width: 70px;
  }

  .btn-icon-box {
    padding: 10px 18px;
    margin: 8px;
    border-radius: 14px;
  }
}

/* <!-- btn to top  --> */
#toTop {
  display: none;
  position: fixed;
  bottom: 14px;
  right: 3%;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  text-decoration: none;
  overflow: hidden;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  background: url(../images/oie_98158tdH06WTq.png) 0px 0px no-repeat;
}

/* visitor */
.header-info-area {
  display: flex;
  align-items: center;
  gap: 25px;
}

.visitor-icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

/* Visitor Icon */
.visitor-icon img {
  border-radius: 10%;
  border: 2px solid #007bff33;
  background: white;
  width: 30px;
  height: 25px;
  margin-top: 4px;
  transition: transform 0.3s, background 0.3s;
}

.visitor-icon img:hover {
  background: #007bff33;
  transform: scale(1.1);
}

.visitor-text {
  position: absolute;
  bottom: -30px;
  /* distance below the image */
  left: 50%;
  transform: translateX(-50%);
  background: #1f99f6;
  color: #f9f4f4;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Show text on hover */
.visitor-icon:hover .visitor-text {
  opacity: 1;
}

/* Responsive adjustment */
@media (max-width: 600px) {
  .visitor-icon img {
    width: 24px;
    height: 24px;
    padding: 4px;
  }

  .header-info-area {
    gap: 15px;
  }
}
