html {
  box-sizing: border-box;
}

body{
    font-family: "Poppins";
    overflow-x: hidden;
    background: #f5f5f5;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .container{
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  } 
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  .flex-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
   }
  
   a{
      text-decoration: none;
   }
  
   li{
      list-style: none;
   }
  .col-2{
    width: calc(50% - 10px);
    margin-right: 10px;
  }
  
  .col-3{
    width: calc(33.33% - 20px);
    margin-right: 20px;
  }
  
  .col-4{
    width: calc(25% - 10px);
    margin-right: 10px;
  }
  
  .col-5{
    width: calc(20% - 10px);
    margin-right: 10px;
  }
  /*----------------top-header--------------*/
   .top-header{
      background-color: #00205d;
      padding-top: 10px;
      padding-bottom: 10px;
  }
  
  .top-header .top-left a{
      color: #fff;
      margin-right: 10px;
      font-size: 14px;
  }
  .top-left{
      width: 50%; 
     display: flex;
    justify-content: flex-start;
  }
   
  .top-right{
      width: 50%; 
      display: flex;
      justify-content: flex-end;
      align-items: center;
  }
  .top-header .top-right a{
      color: #fff;
      margin-right: 10px;
      font-size: 20px;
  }
  .top-header .top-right a:hover{
    color: rgb(11, 76, 225);
  }
  .top-header .top-right p{
      color: #ababab;
      margin-right: 10px;
      font-size: 14px;
  }
  .top-header .top-right button{
   background-color: #0093e6;
   border: transparent;
   padding: 5px;
  }
  .top-header .top-right button a{
    color: #fff;
    margin-right: 0px;
  }
  .main-nav .main-ul li button {
    background-color: orange;
    border: 2px solid #fff;
    padding: 2px;
    border-radius: 8px;
  }
/*----------------------main-header------------------- */
  .main-header {
      width: 100%;
      position: absolute;
      top: 50px;
      z-index: 9999;
      background-color: #e2ecff;
      padding: 10px 0;
    }
    
    .fixed-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #e2ecff; 
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      z-index: 9999;
      transition: all 0.3s ease;
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }
    .logo-container{
      z-index: 999;
    }
    
    .main-nav {
        width: 92%;   /* update kiya hai 27/11/24 ko 77% tha phele*/
        border-radius: 8px;
    }
    
    .nav-bar .logo-container {
      display: flex;
      justify-content: center;
    }
    
    .logo {
      border-radius: 50%;
      width: 140px;
      height: 80px;
      z-index: 999;
      box-shadow: rgb(241 222 222 / 67%) 0px 3px 8px;
      background-color: #fff;
    }
    
    .main-nav .main-ul{
      list-style-type: none;
      display: flex;
      margin: 0;
      padding: 20px; 
    }
    
    .main-nav ul li {
      position: relative;
      margin: 0 12px;      /*updated 27/11/25 it was 15px  */
    }
    
    .main-nav ul li a {
      display: flex;
      align-items: center;
      color: #000;
      text-decoration: none;
      padding: 10px;
      font-size: 14px;
      text-transform: uppercase;
    }
    .main-nav ul li a i{
      color: #000;
      margin-left: 5px;
      font-size: 13px;
    }
    
    .main-nav ul li a:hover {
      border-radius: 5px;
      background-color: orange;
  }
  
  .main-nav ul li a::after {
      content: ''; 
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: orange; 
      transform: scaleX(0); 
      transform-origin: bottom right;
      transition: transform 0.3s ease; 
  }
  
  .main-nav ul li a:hover::after {
      transform: scaleX(1); 
      transform-origin: bottom left; /
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-menu {
    visibility: hidden;
    width: max-content;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0473AA;
    padding: 10px 0;
    min-width: 160px;
    z-index: 10;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
 
  .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    display: block;
  }
  
  .dropdown-menu li {
    list-style: none;
    text-align: left;
  }
  
  .dropdown-menu li a {
    padding: 10px 10px;
    color: #fff;
    text-decoration: none;
  }
  
  .main-nav .dropdown .dropdown-menu li a{
    margin-bottom: 5px;
  }
  /* ---------dropdown- submenu----Hide submenus initially------ */
.dropdown-submenu .submenu {
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #333;
  min-width: 180px;
  padding: 10px 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* Show submenu on hover */
.dropdown-submenu:hover .submenu {
  visibility: visible !important;
  opacity: 1 !important;
  display: block;
  background: #0473AA;
}

/* Submenu links style */
.dropdown-submenu .submenu li a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-submenu .submenu li a:hover {
  background-color: #000;
}
 
.content-nav p{
    margin-bottom: 50px;
    margin-left: 50px;
}
  /*------menu-toggle-----*/
  .menu-toggle{
    display: none;
  }

  /* -------------- */
  .comman-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .banner-image {
    width: 100%;
    height: 50%;
    object-fit: cover;
    display: block;
  }
  
  .content-comm {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
  }
  
  .content-comm h1 {
    font-size: 35px;
    color: #000;
    margin-top: 50px;
  }
  
  .content-comm p {
    font-size: 20px;
    color: #000;
  }

  .welcome-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    gap: 50px;
    flex-wrap: wrap;
  }

  .welcome-left {
    max-width: 600px;
    position: relative;
  }

  .welcome-left img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .machine-img {
    position: absolute;
    bottom: -30px;
    right: -60px;
    width: 220px;
    z-index: 2;
  }

  .welcome-right {
    max-width: 600px;
  }

  .welcome-right .tagline {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .welcome-right h2 {
    font-size: 34px;
    margin: 0;
  }

  .welcome-right h2 span {
    font-weight: 800;
  }

  .welcome-right p {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 20px;
  }

  .read-more-btn {
    margin-top: 30px;
    display: inline-block;
    padding: 12px 20px;
    border: 1.5px solid orange;
    border-radius: 8px;
    font-weight: bold;
    color: orange;
    text-decoration: none;
    transition: 0.3s;
  }

  .read-more-btn:hover {
    background-color: orange;
    color: white;
  }
/* --------------------slider-------------- */
  .certificate-slider img {
    width: 100%;
    height: 50vh;
    max-width: 400px;
    border-radius: 10px;
    margin: 0 auto;
  }

  .certificate-slider {
    width: 100%;
    max-width: 450px;
    margin: auto;
  }
  .slick-prev, .slick-next {
    z-index: 10;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
  }
  .slick-prev:before,
  .slick-next:before {
    color: #000;
    font-size: 30px;
  }

/* -----------video-banner-------------- */
  .stats-section {
    text-align: center;
    position: relative;
    background-color: #fff;
    padding-bottom: 50px;
    padding-top: 50px;
  }
  
  .video-background {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .video-background .bg-image {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background-color: red;
    border-radius: 20%;
    padding: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }
  
  .play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  .stats-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: -40px;
    z-index: 2;
    position: relative;
  }
  
  .stat-card {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 180px;
  }
  
  .stat-card h2 {
    color: #e77300;
    font-size: 32px;
    margin-bottom: 5px;
  }
  
  .stat-card p {
    color: #333;
    font-size: 14px;
    margin: 0;
  }
  /*----------footer------ */
  .site-footer {
    background: #e2ecff;
    padding: 40px 20px 20px;
    color: #333;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  
  .footer-left,
  .footer-middle,
  .footer-right {
    flex: 1;
    margin: 15px;
    min-width: 200px;
  }
  
  .makeinindia-logo {
    width: 120px;
    margin-bottom: 10px;
  }
  
  .payment-icons img {
    height: 35px;
    margin: 5px;
  }
  
  .footer-middle h3,
  .footer-right h3 {
    color: #2c3e70;
    margin-bottom: 10px;
  }
  
  .footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-middle ul li {
    margin-bottom: 5px;
    color: #333;
    font-size: 14px;
  }
  
  .footer-right p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-right i {
    color: #2c3e70;
    margin-right: 6px;
  }
  
  .footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 13px;
  }
  
  .footer-bottom a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  /*------------*/
  .experience-section {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 10%;
    background-color: #fff;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
  }
  
  .main-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
  }
  
  .overlay-image {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 70%;
  }
  
  .overlay-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
  }
  
  .experience-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: #d00000;
    color: #fff;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
  }
  
  .experience-badge span {
    font-weight: normal;
    font-size: 14px;
    margin-left: 5px;
  }
  
  .text-container {
    flex: 1;
    min-width: 200px;
  }
  
  .text-container h2 {
    color: #f7931e;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .text-container p {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    line-height: 1.6;
  }
  /* contact page */
  .enquiry-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
  }
  .enquiry-box {
    background-color: #e2ecff;
    color: #000;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    padding: 30px 20px;
    text-align: center;
  }
  .enquiry-box h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .enquiry-phone {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
  }
  .enquiry-box p {
    margin-bottom: 20px;
    text-align: center;
  }
  .enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 94%;
  }
  .enquiry-form input,
  .enquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 25px;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
  }
  .enquiry-form textarea {
    min-height: 120px;
    resize: vertical;
    border-radius: 20px;
  }
  .enquiry-btn {
    background-color: orange;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 25px;
  }
  .enquiry-btn:hover {
    background-color: #243e73;
  }
  /* --------form-contact--------- */
  .form-reg .col-2 img{
    width: 100%;
    padding-top: 40px;
  }
  
  .form-reg iframe{
    width: 100%;
    height: 50vh;
  }

  /* ------------------- */
  
  .product-image {
    flex: 1;
    text-align: center;
  }
  .product-image img {
    width: 400px;
    max-width: 400px;
    border-radius: 8px;
  }
  
  .product-details {
    flex: 1;
    padding: 20px;
  }
  
  .product-details h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .rating {
    font-size: 16px;
    color: orange;
  }
  
  .price {
    font-size: 26px;
    color: green;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .specs {
    list-style: none;
    padding: 0;
  }
  
  .specs li {
    margin: 8px 0;
  }
  
  .action-buttons {
    margin-top: 20px;
  }
  
  .action-buttons input {
    width: 60px;
    padding: 6px;
    margin-right: 10px;
  }
  
  .action-buttons button {
    padding: 10px 15px;
    margin: 5px 5px 5px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  .add-cart {
    background: #28a745;
    color: white;
  }
  .add-cart a{
    color: #000;
  }
  .meta p {
    font-size: 14px;
    margin: 8px 0;
  }
  .thumbnail-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
  }
  
  .thumbnail {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover;
    border: 2px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.3s ease;
  }
  
  .thumbnail:hover {
    border-color: #28a745;
  }
  
  /* --------- */
  .product-details-box {
    background: #f9f9fb;
    border: 1px solid #ddd;
    padding: 25px;
  }
  
  .product-details-box h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .details-grid > div {
    flex: 1 1 250px;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .table-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
  }
  
  .table-box td {
    border: 1px solid #333;
    padding: 10px;
  }
  
  /* ---------------whatsapp--------- */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 20px;
  /* background-color: #25d366; */
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px #999;
  z-index: 1000;
  animation: shake 3s infinite;
}

.whatsapp-float img {
  margin-top: 5px;
  width: 50px;
  height: 50px;
}

/* Shake Animation */
@keyframes shake {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0, 0); }
}

/* -----------------------------circle------------------------ */

    .section-circle {
      display: flex;
      align-items: center;
      gap: 150px;
      margin-bottom: 50px;
      margin-top: 50px;
    }

    .rotating-circle {
      position: relative;
      width: 400px;
      height: 400px;
    }

    .icon-wrapper {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      animation: rotate 30s linear infinite;
    }

    .circle-ring {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 5px solid orange; /* Blue ring */
      box-sizing: border-box;
      animation: rotate 30s linear infinite;
      z-index: 0;
    }

    .center-machine {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 200px;
      z-index: 2;
    }

    .icon {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      padding: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 3;
    }

    .icon img {
      width: 95%;
      animation: counter-rotate 30s linear infinite;
      border-radius: 50%;
    }

    /* Keyframes */
    @keyframes rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes counter-rotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(-360deg); }
    }

    /* Positioning icons */
    .icon1 { top: -8%; left: 50%; transform: translateX(-50%); }
    .icon2 { top: 20%; right: 0; transform: translateY(-50%); }
    .icon3 { bottom: 20%; right: 0; transform: translateY(50%); }
    .icon4 { bottom: -8%; left: 50%; transform: translateX(-50%); }
    .icon5 { bottom: 20%; left: 0; transform: translateY(50%); }
    .icon6 { top: 20%; left: 0; transform: translateY(-50%); }

    .text-section {
      max-width: 600px;
    }

    .text-section h2 {
      color: orange;
    }

    .text-section p {
      margin-bottom: 10px;
    }

    .text-section ul {
      list-style: none;
      padding-left: 0;
    }

    .text-section li {
      margin-bottom: 10px;
    }
    
    
    
    
    
    
    /*-----------------------*/
    
    .home-products .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
}

.product-card {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: center;
    background: #fff;
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.product-card h3 { margin: 10px 0; }
.btn {
    padding: 10px 20px;
    background: #e91e63;
    color: #fff;
    display: inline-block;
}
/*---------------*/


.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
}
.blog-card {
    border:1px solid #ddd;
    background:#fff;
    padding: 15px;
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

