
    html, body {
        overflow-x: hidden;
      }
  
      body {
        position: relative;
      }
  
      img {
        max-width: 100%;
      }
  
      #movetop {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: #064D50;
        color: white;
        border: none;
        border-radius: 50%;
        padding: 10px;
        font-size: 20px;
        z-index: 999;
      }
  
      #movetop:hover {
        cursor: pointer;
        background-color: #043a3d;
      }
      .pa {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .carousel-inner {
    padding-left: 30px;
    padding-right: 30px;
  }

  .carousel-item img {
    border-radius: 20px;
  }
    /* Video Section */
    .video-section {
    text-align: center;
    padding: 40px 0;
  }

  .video-wrapper {
    position: relative;
    width: 90%;
    /* Adjust as needed */
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  }

  .video-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .video-wrapper {
      padding-bottom: 70%;
      /* Adjust aspect ratio for smaller screens */
    }
  }
  .bottom-ab-grids {
    position: relative;
  }

  .bottom-ab-grids::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 1px solid #ddd;
    /* Vertical line style */
    height: 100%;
  }
  .carousel-control-prev,
  .carousel-control-next {
    background-color: transparent;
    border: none;
    box-shadow: none;
  }
  .tfb {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .embed-container {
    max-width: 800px;
    width: 100%;
    margin: 20px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 10px;
    position: relative;
  }

  .social-widget {
    width: 100%;
    height: 600px;
  }

  @media screen and (max-width: 767px) {
    .social-widget {
      height: 300px;
    }
  }

  @media screen and (min-width: 768px) {
    .embed-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .social-widget {
      width: calc(50% - 20px);
      height: 500px;
      border-radius: 20px;
      overflow: hidden;
    }
  }

  .collapse-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }

  .collapse-btn:hover {
    cursor: pointer;
  }

  .fa-angle-down {
    color: #000;
  }

  .widget-hidden .social-widget {
    display: none;
  }

  .widget-hidden .collapse-btn {
    bottom: -40px;
  }

  @media screen and (max-width: 767px) {
    .widget-hidden .collapse-btn {
      bottom: -30px;
    }
  }

  /* Rounded corners for the entire section */
  .premium-footer {
    border-radius: 15px;
    /* Adjust the radius value for desired roundness */
  }

  /* Additional design elements */
  .premium-footer h2 {
    color: #064D50;
    /* Set a header color that complements the background */
    font-family: 'Open Sans', sans-serif;
    /* Use a modern font for a clean look */
  }

  .premium-footer ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    /* Eliminate default list padding */
  }

  .premium-footer li {
    margin-bottom: 10px;
    /* Add spacing between list items */
  }

  .premium-footer a {
    color: #064D50;
    /* Set link color */
    text-decoration: none;
    /* Remove underline for a cleaner look */
  }

  .premium-footer a:hover {
    color: #043a3d;
    /* Darken link color on hover */
  }

  .rounded-section {
    border-radius: 15px;
    background-color: #064D50;
    margin: 40px;
  }

  .rounded-section .text-white {
    color: #fff;
    /* Ensure pure white text */
  }

    


.whatsapp-float {
    position: fixed;
    bottom: 200px; /* Adjust as needed */
    right: 20px; /* Change to left: 20px; if you prefer left side */
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    animation: pulse 1.5s infinite;
}

/* Pulsating Effect */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.whatsapp-icon:hover {
    transform: scale(1.3);
}
