
.containerh1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff3d00;
  padding: 20px;
  margin: 0 auto; /* Centers the box horizontally */
  box-sizing: border-box; /* Includes padding and border in the box's total width */
  resize: both;
  }

.h1-custom {
  color: white;
  text-align: center;
  margin: 0;
  font-size: 25px;
  }

.containerh2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff3d00;
  padding: 20px;
  margin: 0 auto; /* Centers the box horizontally */
  box-sizing: border-box; /* Includes padding and border in the box's total width */
  resize: both;
  }

.h2-custom {
  color: white;
  text-align: center;
  margin: 0;
  font-size: 25px;
  }
        /* Center the image horizontally and vertically */
        .center-image {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh; /* Adjust this to control vertical centering */
        }

        /* Make the image smaller */
        .small-image {
            max-width: 60%; /* Adjust the percentage to control image size */
            height: 90%;
        }
        /* Add media queries for smaller screens */
        @media (max-width: 768px) {
            .small-image {
                max-width: 80%; /* Adjust for smaller screens */
            }
        }        
        
.blog-image {
            max-width: 100%; /* Make sure the image doesn't exceed its container's width */
            display: block;   /* Remove extra spacing below the image */
            margin: 0 auto;   /* Center the image horizontally */
            border: 1px solid #ccc; /* Add a border around the image */
            border-radius: 5px; /* Add rounded corners to the border */
            box-shadow: 3px 3px 5px #888; /* Add a subtle shadow to the image */
        }
        
/*Review video page*/
.container {
        width: 100%;
        max-width: 1100px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


    .center-container {
        text-align: center;
    }

    @media (min-width: 768px) {
        .video-container {
            max-width: 1100px;
        }
    }

/* Add styling for the client information */
.client-info {
    margin-top: 10px;
    text-align: center;
}

/* Style for the client information text */
.client-info p {
    display: inline; /* Display text elements inline */
    margin: 10px; /* Add spacing between text elements */
}

/* Center the button */
.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

/* Button styles */
.animated-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff3d00;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}


        /* Keyframe animation for bouncing */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Button hover animation */
        .animated-button:hover {
            animation: bounce 1s infinite; /* Bouncing animation on hover */
        }    
 /*railway zone box */       
    .flexcontainer {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 20px;
    }

    .zone {
      background-color: #ff3d00;
      border-radius: 8px;
      padding: 20px;
      margin: 10px;
      width: 300px;
      text-align: center;
      color: #fff;
      cursor: pointer; /* Add cursor style for indicating clickable */
      transition: background-color 0.3s ease; /* Smooth transition on hover */
    }

    .zone:hover {
      background-color: #ffaa00;
    }

        /* Common styles for all screen sizes */
        .banner {
            background-color: #ff3d00;
            color: #fff;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: left; /* Align text to the left */
        }

        .containerbanner {
            max-width: 600px;
            margin: 20px auto;
        }

        /* Customize the button styles */
        .buttonbanner {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            text-decoration: none; /* Remove underline */
            background-color: #2ecc71;
            color: #fff;
            border-radius: 5px;
            transition: background-color 0.3s;
            margin-top: 10px; /* Add space between text and button */
            transition: background-color 0.3s, transform 0.3s; /* Add transform to the transition */
        }

        .buttonbanner:hover {
            background-color: #ffc107;
            text-decoration: none;
            transform: rotate(5deg); /* Apply a rotation on hover */
            animation: shake 0.5s ease-in-out; /* Apply the shake animation */
        }

        /* Media query for screens larger than 600px */
        @media (min-width: 600px) {
            .banner {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }
        }
        /*footer css*/ 
          footer  .nav-list li{
      display:block!important;
  }
  @media (max-width: 780px){
     footer  .nav-list li{
         padding:5px!important;
     }
  }
   .paybutton {
            max-width: 600px;
            margin: 20px auto;
    display: flex;
      align-items: center;
      justify-content: center;
        }
                /* Customize the button styles */
        .buttonbanner1 {
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      text-align: center;
      text-decoration: none;
      color: #fff;
      background-color: #ff7f00; /* Orange */
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .buttonbanner1:hover {
      background-color: #00cc00; /* Green on hover */
      text-decoration: none;
    }


/* Style for the captcha image */
#captcha-container {
    text-align: right;
    margin-top: 10px;
}

#captcha {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-container img {
    max-width: 30%; /* Adjust the max-width to make the image smaller */
    height: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    right: 15px; /* Adjust this value to move horizontally */
    bottom: 20px; /* Adjust this value to move vertically */
    z-index: 1000; /* Ensure it stays on top of other elements */
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-float img {
    width: 40px;
    height: 40px;
}

.whatsapp-float:hover {
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease;
}

/* Mobile Responsiveness */
@media only screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .whatsapp-float {
        left: 5px; /* Adjust for smaller screens */
        bottom: 15px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}


    .whatsapp-text {
        position: fixed;
        bottom: 110px;
        right: 40px;
        background-color: #fff;
        padding: 10px;
        border-radius: 10px;
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
        font-size: 14px;
        color: #000;
        z-index: 99;
    }

    /* Vibration keyframes */
    @keyframes vibrate {
        0% { transform: translate(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); }
    }

    /* Adding the vibrate class for the vibration effect */
    .vibrate {
        animation: vibrate 0.3s linear infinite;
    }
    
            #timer-container {
            background-color: #ff3d00;
            color: white;
            font-size: 20px;
            text-align: center;
            padding: 20px;
            width: auto;
            font-weight: bold;
            margin: 2px auto;
            border-radius: 10px;
        }
        
        
        
/* Centering the video container */
.video-container-pay {
    display: flex;
    flex-direction: column; /* Stack videos vertically */
    align-items: center;   /* Center horizontally */
    justify-content: center; /* Center vertically */
    gap: 40px; /* Space between video cards */
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px; /* Limit max width on large screens */
    margin: 0 auto; /* Center the container */
}

/* Styling each video card */
.video-card {
    width: 90%;
    max-width: 1000px; /* Larger size on desktops */
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
}

.video-card:hover {
    transform: scale(1.03); /* Slight hover effect */
}

video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Consistent video size */
    border-bottom: 3px solid #0056b3;
}

h3 {
    font-size: 18px;
    color: #0056b3;
    margin: 15px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-card {
        width: 95%;
    }

    h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-card {
        width: 100%;
    }

    h3 {
        font-size: 18px;
    }
}


/* payment page Design */

.payment-confirmation {
    max-width: 900px;
    margin: 5px auto;
    padding: 10px;
    text-align: center;
}

.payment-box {
    border: 1px solid #ddd;
    padding: 25px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 0px 5px #ccc;
    margin-top: 20px;
}

.payment-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.features {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    flex-wrap: wrap;
}

.features div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 14px;
}

.features img {
    width: 40px;
    height: 30px;
}

.pay-button {
    display: inline-block;
    background-color: orange;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    margin: 20px 0;
}

.card-logos img {
    height: 50px;
    margin: 0 10px;
}

.plant-tree {
    display: flex;
    align-items: center;
    margin-top: 30px;
    background-color: #e7f9ec;
    padding: 15px;
    border-radius: 8px;
    text-align: left;
    gap: 15px;
}

.plant-tree img {
    width: 80px;
    height: 100px;
}


/* payment page Design */

.payment-options {
    display: flex;
    gap: 20px;
    margin: 30px auto;
    justify-content: center;
    flex-wrap: wrap;
}
.pay-card {
    width: 280px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}
.pay-card .price {
    font-size: 24px;
    font-weight: 700;
    margin: 10px 0;
}
.pay-btn {
    display: block;
    background: #0066ff;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.pay-btn:hover { background: #004ecc; }

.features-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    flex-wrap: wrap;
}
.cards-img { width: 260px; margin: 20px auto; }

.qr-section {
    text-align: center;
    margin-top: 40px;
}
.qr-img img { width: 220px; margin: 20px auto; }

