 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    
    }
    html {
  scroll-behavior: smooth; /* smooth transition */
}
    /* Scrollbar overall width/height */
/* Chrome, Edge, Safari ke liye */
::-webkit-scrollbar {
  width: 6px;   /* vertical */
  height: 6px;  /* horizontal */
}

::-webkit-scrollbar-track {
  background: transparent; /* Track gayab ho jayega */
}

::-webkit-scrollbar-thumb {
  background-color: #FF6201; /* Sirf thumb visible hoga */
  border-radius: 10px;
}

/* Firefox ke liye */
* {
  scrollbar-width: thin;
  scrollbar-color: #FF6201 #0080BA;  /* Thumb | Track */
}


    body {
      font-family: Arial, sans-serif;
      background: linear-gradient(125deg, #021c29, #021c29);
      color: #fff;
      min-height: 200vh;
    }

    /* HEADER */
    header {
      position: sticky;
      top: 20px;
      z-index: 1000;
      margin: 0 auto;
      height: 90px;
      max-width: 86%;
      background: rgba(255, 255, 255, 0.1); /* transparent background */
      backdrop-filter: blur(10px); /* blur effect */
      -webkit-backdrop-filter: blur(10px); /* Safari support */
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      border-right: 1px solid rgba(255, 255, 255, 0.2);
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 18px;
      padding: 12px 25px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Logo */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo img {
      height: 85px;
      width: auto;
      margin-left: 10px;
      margin-right: 60px;
      transition: 0.5s ease-in-out;
    }
    .logo img:hover{
         filter: drop-shadow(0 0 20px rgb(253, 129, 5));
    }
    

    /* Nav Menu */
    nav {
      display: flex;
      gap: 32px;
      
    }
    nav a {
      text-decoration: none;
      color: #00cfff;
      font-weight: bolder;
          font-family: Arial, Helvetica, sans-serif;
      font-size: 23px;
      transition: color 0.3s;
      justify-self: right;
    }
    nav a:hover {
      color: rgb(252, 112, 20);
    }
    

    /* Right Icons */
    .right-icons {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .hamburger {
      font-size: 24px;
      cursor: pointer;
      display: none;
    }
@media (max-width: 768px) {
  nav {
  display: flex;
  position: absolute;
  top: 70px;
  right: 20px;
  background: #ff6201a8; /* semi-transparent dark background */
  backdrop-filter: blur(15px);        /* blur effect */
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  flex-direction: column;
  width: 135px;
  padding: 15px;
  border-radius: 30px 0px 30px 0px;

  /* animation ke liye hidden state */
  opacity: 0;
  transform: translateY(-20px); 
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

  .logo img {
      height: 65px;
      
    }

  nav.active {
    opacity: 1;
    transform: translateY(0); /* neeche slide hoke aaye */
    pointer-events: auto;
    
  }

  .hamburger {
    display: block;
  }
}
/* Hero Section */
.herom {
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 60px 20px;
  margin-top: 0px;
  color: #fff;
}
.banner_images {
            width: 50%;
            height: 800px;
            
            position: relative;
        }

        .image_01 {

            position: absolute;
            top: 0;
            right: 0;
        }

        .img_1 {
            width: 60%;
            transform: perspective(800px) rotateY(-20deg);
        }

        .image_2 {
            position: absolute;
            top: 20%;
            right: 20%;
        }

        .img_2 {
            width: 45%;
        }

        .image_3 {
            position: absolute;
            top: 18%;
            right: -3%;
        }

        .img_3 {
            width: 60%;
        }
        .image_4{
            position: absolute;
            top: 35%;
            right: 0%;
        }
        .img_4{
            width: 80%;
        }
        .image_5{
            position: absolute;
            top: 39%;
            right: 32%;
        }
        .img_5{
            width: 55%;
            
        }
        img{
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            filter: drop-shadow(0px 0px 15px rgba(2, 175, 255, 0.6));
      
      transform-style: preserve-3d;
        }
        @media (max-width: 1024px) {
          .banner_images {
            width: 50%;
            height: 800px;
            
            position: relative;
        }

        .image_01 {

            position: absolute;
            top: 0;
            right: -20%;
        }

        .img_1 {
            width: 60%;
            transform: perspective(800px) rotateY(-10deg);
        }

        .image_2 {
            position: absolute;
            top: 22%;
            right: 8%;
        }

        .img_2 {
            width: 45%;
        }

        .image_3 {
            position: absolute;
            top: 18%;
            right: -23%;
        }

        .img_3 {
            width: 60%;
        }
        .image_4{
            position: absolute;
            top: 36%;
            right: -20%;
        }
        .img_4{
            width: 80%;
        }
        .image_5{
            position: absolute;
            top: 42%;
            right: 31%;
        }
        .img_5{
            width: 55%;
            
        }
        img{
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            filter: drop-shadow(0px 0px 15px rgba(2, 175, 255, 0.6));
      
      transform-style: preserve-3d;
        }
        }
.hero-contentm {
  max-width: 50%;
  padding-left: 50px;
}

/* Headline */
.herom h1 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: -240px;
}

/* Paragraph */
.herom p {
  font-size: 1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* Highlight styles */
.highlight {
  color: #FF6201; /* neon green */
  font-weight: bold;
}

.highlight-alt {
  color: #00cfff; /* cyan/blue */
  font-weight: bold;
}
/* Tablets */
@media (max-width: 992px) {
  .herom {

   
    margin-top: 260px;
    text-align: center; /* center text for tablets */
  }
  .hero-contentm {
  max-width: 90%;
  padding-left: 0px;
}
 .banner_images {
            width: 70%;
            height: 800px;
            
            position: relative;
        }

        .image_01 {

            position: absolute;
            top: 0;
            right: -5%;
        }

        .img_1 {
            width: 60%;
            transform: perspective(800px) rotateY(-10deg);
        }

        .image_2 {
            position: absolute;
            top: 22%;
            right: 28%;
        }

        .img_2 {
            width: 45%;
        }

        .image_3 {
            position: absolute;
            top: 18%;
            right: -10%;
        }

        .img_3 {
            width: 60%;
        }
        .image_4{
            position: absolute;
            top: 36%;
            right: -15%;
        }
        .img_4{
            width: 80%;
        }
        .image_5{
            position: absolute;
            top: 41%;
            right: 48%;
        }
        .img_5{
            width: 75%;
            
        }
        img{
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            filter: drop-shadow(0px 0px 15px rgba(2, 175, 255, 0.6));
      
      transform-style: preserve-3d;
        }
  .herom h1 {
    font-size: 2.5rem;
  }

  .herom p {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .herom {
    padding: 30px 45px;
    margin-top: 260px;
  }

  .herom h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .herom p {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 414px){
   .banner_images {
            width: 65%;
            height: 370px;
            
            position: relative;
        }

        .image_01 {

            position: absolute;
            top: 0;
            left: 40%;
        }

        .img_1 {
            width: 90%;
            transform: perspective(800px) rotateY(-10deg);
        }

        .image_2 {
            position: absolute;
            top: 22%;
            right: 25%;
            width: 85%;
        }
        


        .image_3 {
            position: absolute;
            top: 22%;
            left:30%;
             width: 90%;
        }

        
        .image_4{
            position: absolute;
            top: 44%;
            right: -13;
            width: 85%;
        }
       
        .image_5{
            position: absolute;
            top: 42%;
            right: 54%;
             width: 70%;
        }
        
        img{
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            filter: drop-shadow(0px 0px 15px rgba(2, 175, 255, 0.6));
      
      transform-style: preserve-3d;
        }
}
.services {
    margin-top: -90px;
  padding: 80px 5%;
  text-align: center;
  
}

.section-title {
  font-size: 2.9rem;
  margin-bottom: 50px;
  color: #ffffff;
}

.section-title span {
  color: #FF6201;
  font-weight: bolder;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: bolder;
  color: #ffffff;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 29px;
  height: auto;
  justify-self: center;
  border-left: #FF6201 3px solid;
  border-right: #FF6201 3px solid;
  margin-bottom: 40px;
}

.section-desc {
  font-size: 19px;
  font-weight: bold;
  color: #ffffff;
   text-decoration: underline;
  text-decoration-color: #0080BA; /* Change underline color */
  text-underline-offset: 6px; 
  margin-bottom: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
     animation: floatBox 6s ease-in-out infinite;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 30px 0px 30px 30px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s ease-in-out;
}
/* From Uiverse.io by MikeAndrewDesigner */ 
.e-card {
  margin: 10px auto;
  background: transparent;
  box-shadow: 0px 8px 28px -9px rgba(0,0,0,0.45);
  position: relative;
  width: 280px;
  height: 330px;
  border-radius: 16px;
  overflow: hidden;
   animation: floatBox 6s ease-in-out infinite;
}

.wave {
  position: absolute;
  width: 540px;
  height: 700px;
  opacity: 0.6;
  left: 0;
  top: 0;
  margin-left: -50%;
  margin-top: -70%;
  background: linear-gradient(744deg,#0080BA,#095567 60%,#00ddeb);
}

.icon {
  width: 3em;
  margin-top: -1em;
  padding-bottom: 1em;
}

.infotop {
  text-align: center;
  font-size: 24px;
  position: absolute;
  top: 3em;
  left: 0;
  right: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.name {
  font-size: 16px;
  font-weight: 100;
  position: relative;
  top: 1em;
  text-transform: lowercase;
}

.wave:nth-child(2),
.wave:nth-child(3) {
  top: 210px;
}

.playing .wave {
  border-radius: 40%;
  animation: wave 3000ms infinite linear;
}

.wave {
  border-radius: 40%;
  animation: wave 55s infinite linear;
}

.playing .wave:nth-child(2) {
  animation-duration: 4000ms;
}

.wave:nth-child(2) {
  animation-duration: 50s;
}

.playing .wave:nth-child(3) {
  animation-duration: 5000ms;
}

.wave:nth-child(3) {
  animation-duration: 45s;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.service-card:hover {
  transform: translateY(-8px);
  color: #fff;
  
  box-shadow: 0 12px 20px rgba(255, 255, 255, 0.418);
}

.service-card h3 {
  font-size: 1.3rem;
  color: #FF6201;
  font-weight: bold;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.6;
}
.hero-text3 {
    width: auto;
    height: auto;
    justify-self: center;
    justify-content: left;
    padding: 50px;

}

.hero-text3 h1 {
  font-size: 55px;
  justify-self: center;
  color: #fff; /* default white */
  line-height: 1.4;
  margin-top: 80px;
}

.hero-text3 p {
  font-size: 20px;
  margin-top: 10px;
  justify-self: center;
  color: #ccc; /* halka gray */
  max-width: 700px;
}

.hero-text3 .highlight2 {
  color: #00cfff; /* Bespoke Solutions highlight */
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-text3 h1 {
    font-size: 34px;
  }
  .hero-text3 p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero-text3 {
    padding: 15px 20px;margin-top: 30px;
  }
  .hero-text3 h1 {
    font-size: 28px;
  }
  .hero-text3 p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-text3 {
    text-align: center; /* mobile pe center align */
    padding: 10px 15px;
    margin-top: 30px;
  }
  .hero-text3 h1 {
    font-size: 22px;
  }
  .hero-text3 p {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr;
  }
  .section-subtitle {
  font-size: 1.5rem;
  font-weight: bolder;
  color: #00cfff;
  width: auto;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 22px;
  height: auto;
  justify-self: center;
  border-left: #FF6201 3px solid;
  border-right: #FF6201 3px solid;
  margin-bottom: 60px;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ffffff;
}

.section-title span {
  color: #FF6201;
  font-size: 2rem;
  font-weight: bolder;
}
}
/* HERO */
.hero1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  gap: 70px;
  justify-content: space-between;
  margin-top: -10px;
  padding: 50px;
}

/* Hero Text */
.hero-text2 h1 {
  font-size: 70px;
  margin-bottom: 20px;
  margin-left: 39px;
  line-height: 1.7; /* space between lines */
  color: #fff; /* default white */
}

/* FORM BOX */
.form-box {
  background: #ffffff;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  height: auto;
  justify-self: right;
  position: relative;
  margin-top: -80px;
  margin-right: 50px;
  border-radius: 60px 0px 60px 0px;
  border: 1px solid rgba(90, 90, 90, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateY(100px);
animation: slideUp 1.2s ease-out forwards, floaty 4s ease-in-out infinite;
}
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
.form-box h2{
    justify-self: center;
    font-size: 50px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 20px;
}
.form-box p{
    font-size: 20px;
    color: #000000;
    justify-self: center;
    font-weight: bold;
    margin-bottom: 20px;
}
.form-box input {
  width: 100%;
  height: 70px;
  font-size: 15px;
  padding: 12px;
  font-family: Century Gothic;
  margin-bottom: 18px;
  border: 1px solid #00cfff;
  border-radius: 15px;
  background: #0080BA;
  color:  rgb(255, 255, 255);
  outline: none;
}
input::placeholder{
    color: white;
}
.form-box textarea{
    width: 100%;
  height: 100px;
  padding: 12px;
  font-family: Century Gothic;
  margin-bottom: 18px;
  border: 1px solid #00cfff;
  border-radius: 15px;
  background: #0080BA;
  font-size: 15px;
  color: rgb(255, 255, 255);
  outline: none;
}
textarea::placeholder{
    color: white;
}
.form-box textarea:focus,
.form-box input:focus {  border: 0.2px solid white; box-shadow: 0 0 0 2px rgb(255, 255, 255); }

.btn-submit {
  width: 100%;
  background: #ffffff;
  color: #111;
  border: none;
  padding: 25px 18px;
  height: auto;
  border-radius: 15px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform .08s ease, opacity .2s ease;
  margin-top: 4px;
  margin-bottom: 10px;
  transition: 0.5s ease-in-out;
}
.btn-submit:hover { 
    opacity:.95; 
    background-color: #0080BA;
    color: #fff;
}
@keyframes floatBox {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
/* RESPONSIVE MEDIA QUERIES */

/* Tablet (900px and below) */
@media (max-width: 900px) {
  .hero1 {
    grid-template-columns: 1fr; /* 1 column layout */
    padding: 30px 20px;
    gap: 20px;margin-top: -30px;
  }

  .hero-text2 h1 {
    font-size: 45px;
    margin: 0 auto 20px;
    text-align: center;
  }

  .form-box {
    margin: 0 auto;
    width: 90%;
    margin-top: 20px;
  }

  .badge {
    top: -40px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
  }
}

/* Mobile (600px and below) */
@media (max-width: 600px) {
  .hero-text2 h1 {
    font-size: 32px;
    margin: 0 0 15px;
    text-align: center;
    line-height: 1.3;
  }

  .form-box {
    width: 100%;
    padding: 20px;
    margin-top: 10px;
  }

  .badge {
    width: 70px;
    height: 70px;
    top: -30px;
  }

  .form-box h2 {
    font-size: 24px;
  }

  .form-box p {
    font-size: 13px;
  }

  .btn-submit {
    font-size: 16px;
    height: 50px;
  }
}
  .container {
    max-width: 400px;
    margin: auto;
    background: #0080BA;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
  }
  .container h1 {
    margin-bottom: 15px;
    color: rgb(255, 255, 255);
    font-size: 50px;
    justify-self: center;
    font-weight: bold;
  }
  p.subtitle {
    margin-top: 0;
    color: #ffffff;
    font-size: 1rem;
  }
  .input-step {
    margin-top: 20px;
  }
  label {
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
  }
  input, textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    margin-bottom: 12px;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    background: white;
    box-sizing: border-box;
  }
  textarea {
    resize: vertical;
    min-height: 80px;
  }
  .buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  button {
    flex: 1;
    background: #ffffff;
    border: none;
    justify-self: center;
    color:#0080BA;
    padding: 11px 0;
    width: 90%;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
    transition: background 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.abt {
  padding: 60px 20px;
}

.abt-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px;
  flex-wrap: wrap; /* wrapping enabled */
}

.image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image img {
  width: 100%;
  max-width: 500px;
  
}

.hero-content {
  flex: 1;
  padding: 30px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  font-weight: bold;
}

.hero-content p {

  line-height: 1.7;
  color: #ffffff;
  margin: 10px;
}

.highlight {
  color: #0077ff;
  font-weight: bold;
}

.highlight-alt {
  color: #ff6600;
  font-weight: bold;
}

@media (max-width: 992px) {
  .abt-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    margin-top: 20px;
    max-width: 80%;   /* ✅ content width control */
    margin-left: auto;
    margin-right: auto;
  }

 
  .image img {
    max-width: 80%;
  }
  .abt-card {
    padding: 300px;
  }
}

/* ✅ Mobile Screens */
@media (max-width: 600px) {
  .abt {
   padding: 20px;
  }

  .abt-container {
    gap: 20px;
  }

  
  .image img {
    max-width: 100%; /* full width mobile */
  }
  .abt-card {
    padding: 130px;
  }
}

/* Background lottie (optional) */
.lottie-bg {
  position: static;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -51;
}

/* Content on top */
.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* About Card */
.abt-card {
  margin: 10px auto;
  background: #021c29;
  border: #0080BA 2px solid;
  color: #ffffff;
  box-shadow: 0px 8px 28px -9px rgba(3, 162, 255, 0.747);
  position: relative;
  width: 100%;
  max-width: 660px;
  font-size: 20px;
 
  height:540px; /* responsive height */
 
  overflow: hidden;
  animation: floatBox 6s ease-in-out infinite;
  
}

.infotop1 {
  text-align: center;
  position: absolute;
  top: 0.6em;
  left: 0;
  right: 0;
  color: rgb(0, 0, 0);
  font-weight: 600;
}
 /* Vision Mission */
    .vision-mission {
      display: flex;
      gap: 20px;
      margin: 60px auto;
      flex-wrap: wrap;
      max-width: 1000px;
    }
    .vision-mission .card {
      flex: 1;
      min-width: 250px;
      background: #08aac7b6;
      padding: 30px;
      color: #ffffff;
      border-radius: 0px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .vision-mission .card:hover {
      transform: translateY(-10px);
    }
.infotop1 p {
       
        font-size: 13px;
}
    /* Stats */
    .stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin: 60px 0;
      text-align: center;
    }
    .stat-box {
      flex: 1;
      min-width: 150px;
      margin: 10px;
    }
    .stat-box h3 {
      font-size: 2.9rem;
      color: #ff6600;
      font-weight: bolder;
      transition: transform 0.3s;
    }
     .stat-box p{
        color: white;
        font-weight: bold;
     }
    .stat-box:hover h3 {
      transform: scale(1.1);
    }

    /* Clients */
    .clients {
      margin: 60px auto;
      text-align: center;
      color: white;
      
    }
    .client-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 20px;
    }
    .client-logos img {
      max-height: 60px;
      filter: grayscale(100%);
      transition: all 0.3s ease;
    }
    .client-logos img:hover {
      filter: grayscale(0%) scale(1.1);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .abt-container {
        flex-direction: column;
        text-align: center;
      }
      .hero-content {
        max-width: 80%;
        margin: auto;
      }


      .image img {
        max-width: 80%;
      }
      
    }
    @media (max-width: 600px) {
     
      .vision-mission { flex-direction: column; }
      .stats { flex-direction: column; }
    }
    
    .abt-card {
      
     margin-left: -50px;
    }
    footer {
    background: #021c2973;
    color: #ffffff ;
  }
  .footerb{
    background-color: #021c2970;
    border-radius: 0px;
    border: 2px solid #009de6;
    box-shadow: 0 8px 20px rgba(0, 91, 151, 0.589);
    transition: ease-in-out 0.5s;
  }
  .footerb:hover{
    transform: scale(1.01)

  }
  footer h6 {
    font-weight: 700;
    margin-bottom: 1rem;
  }

  footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  footer a:hover {
    color: #fff;
    transform: translateY(-3px);
  }
 
  .Quick-Links{
    border-left: #838383 solid 1px;
    border-right: #838383 solid 1px;
  }
  .social-icons a {
    font-size: 18px;
    margin: 0 8px;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
  }

  .social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
  }

  .footer-bottom {
    background: #ff6600;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    margin-top: 20px;
  }
  .background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1; /* Peeche chala jaye */
      overflow: hidden;
    }

    .blob {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, #0293d6 0%, rgba(0, 47, 255, 0.1) 70%, transparent 100%);
      border-radius: 50%;
      filter: blur(120px);
      animation: moveBlob 50s infinite alternate ease-in-out;
    }

    /* Animation Keyframes */
    @keyframes moveBlob {
  0%   { transform: translate(-20%, -20%) scale(1); }
  10%  { transform: translate(30%, -10%) scale(1.2); }
  20%  { transform: translate(50%, 10%) scale(0.9); }
  30%  { transform: translate(-40%, 20%) scale(1.3); }
  40%  { transform: translate(20%, 40%) scale(1.1); }
  50%  { transform: translate(40%, -30%) scale(1.4); }
  60%  { transform: translate(-30%, -10%) scale(1); }
  70%  { transform: translate(10%, 30%) scale(1.2); }
  80%  { transform: translate(-50%, 10%) scale(0.8); }
  90%  { transform: translate(30%, -40%) scale(1.3); }
  100% { transform: translate(-10%, 30%) scale(1); }
}

    .cards0 {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .card0 {
      background: #021c29;
      border: 1px solid #009de6;
      border-radius: 12px;
      padding: 20px;
      width: 300px;
      
      box-shadow: 0 8px 20px rgba(0, 91, 151, 0.589);
      transform: rotate(-3deg);
      transition: 0.3s;
    }

    .card0:nth-child(2) {
      transform: rotate(3deg);
    }

    .card0:hover {
      transform: scale(1.05) rotate(0deg);
      box-shadow: 0 12px 30px rgba(0, 124, 173, 0.3);
    }

    .card0 h2 {
      font-size: 2rem;
      color: #009de6;
      margin-bottom: 10px;
    }

    .card0 h3 {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .card0 p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #ccc;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .cards0 {
        flex-direction: column;
        align-items: center;
      }

      .card0 {
        transform: rotate(0deg);
      }
    }
    
    .gears-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  width: 50%;
  flex-wrap: wrap;
}

.gear3 svg {
  filter: drop-shadow(0px 0px 9px #00bcd4); /* glowing shadow */
}
.gear2 svg {
  filter: drop-shadow(0px 0px 9px #00bcd4); /* glowing shadow */
}
.gear1 svg {
  filter: drop-shadow(0px 0px 9px #00bcd4); /* glowing shadow */
}

/* Gear sizes */
.gear1 { width: 100px; height: 100px; animation: spin 8s linear infinite; }
.gear2 { width: 150px; height: 150px; animation: spinReverse 10s linear infinite; }
.gear3 { width: 70px; height: 70px; animation: spin 6s linear infinite; }

/* Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
.con{
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .con {
    flex-direction: column;
    text-align: center;
    display: block;
  }
  .infotop1 h1{
    font-size: 23px;
  }
      .infotop1 p {
       
        font-size: 10.6px;
}
  .hero-text3{
    width: 100%;
    padding: 0px;
  }
  .gears-section{
    width: 100%;
  }
}
.package_sec{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.project_card{


  margin-bottom: px;
  border-radius: 30px;
  padding-bottom: 30px;
  padding-top: 30px;
}
.pkg-title{
  justify-self: center;
  color: #00bcd4;
  font-weight: bold;
  font-size: 40px;
}
.pkg-title0{
  justify-self: center;
  color: #00bcd4;
  font-weight: bold;
  font-size: 22px;
}
.pkg-price{
  justify-self: center;
  color: white;
  font-weight: bold;
  font-size: 50px;
}
.pkgs{
  font-size: 30px;
   color: #00bcd4;
}
.pkg-body{
  justify-self: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
}
.pkg-body p{
  justify-self: center;
}
.pkg-btn{
  border-radius: 15px;
}

    .step { display:none; margin-top:15px; }
    .step.active { display:block; }
    .form_button{
      display: flex;
      flex-wrap: wrap;
    }
.project_card {
  width: 70%;
  perspective: 1000px;
  margin-bottom: 400px;
  height: 20px;
}
.project_card.expanded  {
  height: 600px; /* expanded */
}
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.project_card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  backface-visibility: hidden;
  background-color: #021c29;
  border: #009de6 3px solid;
  margin-bottom: 30px;
  border-radius: 30px;
  padding-bottom: 20px;
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;

}

.card-front { z-index: 2; }

/* back is the flipped side */
.card-back {
  transform: rotateY(180deg);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  margin-top: 280px;
  color: white;
}

/* cart svg header */
.cart-header {
  width: 100%;
  display:flex;
  justify-content:center;
  align-items:center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 12px;
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ff3b30;
  color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:700;
  font-size:12px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* action buttons */
.action-row {
  display:flex;
  gap:10px;
  margin-top:14px;
}
.pkg-btn {
  background: #0069ff;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight:700;
  margin-top: 20px;
}
.undo-btn {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
}



/* make svg icon a bit bigger */
.cart-svg { width:56px; height:56px; }
@media (max-width:900px) {
  .package_sec{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
}
@media (max-width:600px) {
  .package_sec{
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom:100px;
}
}
@media (max-width: 540px) {
  .project_card {
  width: 80%;
  perspective: 1000px;
  margin: 20px;
margin-bottom:250px;
}
  .pkg-title{
  justify-self: center;
  color: #00bcd4;
  font-weight: bold;
  font-size: 18px;
}
.pkg-title0{
  justify-self: center;
  color: #00bcd4;
  font-weight: bold;
  font-size: 10px;
}
.pkg-price{
  justify-self: center;
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.pkgs{
  font-size: 18px;
   color: #00bcd4;
}
.pkg-body{
  justify-self: center;
  color: white;
  font-size: 10px;
  
}
}
/* Scroll To Top Button Style */
.scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  display: block; /* Hamesha visible */
  transition: 0.3s;
  z-index: 9999; /* sabse upar dikhne ke liye */
}

 .about-card {
      position: relative;
      width: 100%;
      border-radius: 0; /* full screen, no rounding */
      overflow: hidden;
      isolation: isolate;
      margin-bottom: 80px;
    }

    .about-card img {
      width: 100%;
      height: 100vh; /* full viewport height */
      display: block;
      object-fit: cover;
      
    }

    .about-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(2,8,23,.65) 0%, rgba(2,8,23,.25) 45%, rgba(2,8,23,0) 75%);
      z-index: 0;
      pointer-events: none;
    }

    .about-card::after {
      content: "";
      position: absolute;
      inset: 0;
      width: 0%;
      backdrop-filter: blur(7px);
      -webkit-backdrop-filter: blur(7px);
      transition: width .8s ease;
      z-index: 0;
      pointer-events: none;
    }
    .about-card:hover::after { width: 100%; }

    .about-content {
      position: absolute;
      top: 50%;
      left: 40%;
      transform: translate(-50%, -40%);
      text-align: left;
      display: grid;
      gap: clamp(6px, 1.2vw, 14px);
      z-index: 1;
      max-width: 80%;
    }

    .about-content h2 {
      margin: 0;
      color: white;
      font-weight: 800;
                 /* optional: halka fade */
      font-size: clamp(1.25rem, 2.2vw + .6rem, 2.75rem);
      letter-spacing: .3px;
transition: filter 0.6s ease, opacity 0.6s ease; 
      line-height: 1.15;
      
      text-shadow: 2px 2px 4px rgba(49, 49, 49, 0.8);
    }

    .about-content p {
      margin: 0;
      color: white;
      font-size: 14px;
  filter: blur(3px);           /* 🔹 Blur by default */
transition: filter 0.6s ease, opacity 0.6s ease; 
  opacity: 0.6;                /* optional: halka fade */
      line-height: 1.55;
      
      text-shadow: 2px 2px 4px rgba(34, 34, 34, 0.8);
    }
.about-card:hover .about-content h2,
.about-card:hover .about-content p {
  filter: blur(0);
  opacity: 1;
}

    .chip {
      display:inline-block; padding:.35rem .6rem; border-radius:999px; font-size:.8rem; font-weight:600; background:rgba(56,160,255,.18); border:1px solid rgba(56,160,255,.35); backdrop-filter:saturate(1.2);
    }
   .hidden-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.show-content .hidden-content {
  max-height: 620px; /* jitna expand karna ho */
}
.toggle-btn {
  margin-top: 10px;
  background: #ffffff;
  color: #007bff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}
