.whatsapp_pop:hover {
      animation: none;
      -webkit-animation: none;
      -moz-animation: none;
      -o-animation: none;
    }
	.whatsapp_pop {
      display: inline-block;
      width: 50px;
      height: 50px;
      position: fixed;
      bottom: 20%;
      right: 20px;
      -webkit-filter: drop-shadow(0px 5px 2px rgba(0, 0, 0, 0.2));
      filter: drop-shadow(0px 5px 2px rgba(0, 0, 0, 0.2));
      animation: bounce 3s infinite;
      -webkit-animation: bounce 3s infinite;
      -moz-animation: bounce 3s infinite;
      -o-animation: bounce 3s infinite;
      z-index: 9;
    }
	.faq-container {
            max-width: 800px;
            margin: 40px auto;
        }

	.video-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 10px;
        }
        .video {
            width: 90%;
            max-width: 350px;
            height: 460px;
        }
        .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

		  /* Button Styling */
	 .know-more-btn {
            display: inline-block;
            padding: 9px 18px;
            font-size: 18px;
			color: #ffffff;
            font-weight: bold;
            background: #24568a;
            border: none;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            cursor: pointer;
            box-shadow: 10px 10px 20px #babecc, -10px -10px 20px #fff;
        }

        /* Hover Effect */
    .know-more-btn:hover {
            background: #3a80cb;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 86, 179, 0.4);
        }

		.aligned-text {
            text-align: justify;
            margin: auto;
        }

		   /* Popup Overlay */
		   .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1050;
        }

        /* Popup Box */
        .popup-box {
            background: white;
            padding: 20px;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
            animation: fadeIn 0.5s ease-in-out;
        }

        /* Fade-in animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: red;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }

        /* Hide Popup by Default */
        .hidden {
            display: none;
        }

		.form {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .form-group input, .form-group textarea {
            width: 100%;
            padding: 10px;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .btn {
            background: #007bff;
            color: black;
            padding: 10px 15px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .btn:hover {
            background: #0056b3;
        }
        .form p {
            font-size: 14px;
            margin-top: 10px;
        }

  .section-link:hover .more {
    opacity: 1;
    transform: translateX(5px);
  }
  .more {
    margin-left: 10px;
    transition: all 0.3s ease;
    opacity: 1;
    font-size: 0.9em;
    color: #007bff;
  }
